Home
last modified time | relevance | path

Searched refs:exception_ptr (Results 1 – 16 of 16) sorted by relevance

/external/libcxx/src/support/runtime/
Dexception_pointer_glibcxx.ipp12 // it uses to implement std::exception_ptr (which it declares as an alias of
13 // std::__exception_ptr::exception_ptr) is not directly exported to clients. So
14 // we have little choice but to hijack std::__exception_ptr::exception_ptr's
15 // (which fortunately has the same layout as our std::exception_ptr) copy
17 // stable ABI), and its rethrow_exception(std::__exception_ptr::exception_ptr)
25 struct exception_ptr
29 exception_ptr(const exception_ptr&) _NOEXCEPT;
30 exception_ptr& operator=(const exception_ptr&) _NOEXCEPT;
31 ~exception_ptr() _NOEXCEPT;
36 _LIBCPP_NORETURN void rethrow_exception(__exception_ptr::exception_ptr);
[all …]
Dexception_pointer_unimplemented.ipp16 exception_ptr::~exception_ptr() _NOEXCEPT
18 # warning exception_ptr not yet implemented
19 fprintf(stderr, "exception_ptr not yet implemented\n");
23 exception_ptr::exception_ptr(const exception_ptr& other) _NOEXCEPT
26 # warning exception_ptr not yet implemented
27 fprintf(stderr, "exception_ptr not yet implemented\n");
31 exception_ptr& exception_ptr::operator=(const exception_ptr& other) _NOEXCEPT
33 # warning exception_ptr not yet implemented
34 fprintf(stderr, "exception_ptr not yet implemented\n");
55 # warning exception_ptr not yet implemented
[all …]
Dexception_pointer_cxxabi.ipp17 exception_ptr::~exception_ptr() _NOEXCEPT {
21 exception_ptr::exception_ptr(const exception_ptr& other) _NOEXCEPT
27 exception_ptr& exception_ptr::operator=(const exception_ptr& other) _NOEXCEPT
56 exception_ptr current_exception() _NOEXCEPT
60 // return exception_ptr(__cxa_current_primary_exception());
61 exception_ptr ptr;
67 void rethrow_exception(exception_ptr p)
/external/libcxx/include/
Dexception54 typedef unspecified exception_ptr;
56 exception_ptr current_exception() noexcept;
57 void rethrow_exception [[noreturn]] (exception_ptr p);
58 template<class E> exception_ptr make_exception_ptr(E e) noexcept;
70 exception_ptr nested_ptr() const noexcept;
132 class _LIBCPP_TYPE_VIS exception_ptr;
134 _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
135 _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
137 class _LIBCPP_TYPE_VIS exception_ptr
141 _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {}
[all …]
Dfuture80 void set_exception(exception_ptr p);
85 void set_exception_at_thread_exit(exception_ptr p);
109 void set_exception(exception_ptr p);
113 void set_exception_at_thread_exit(exception_ptr p);
137 void set_exception(exception_ptr p);
141 void set_exception_at_thread_exit(exception_ptr p);
532 exception_ptr __exception_;
574 void set_exception(exception_ptr __p);
575 void set_exception_at_thread_exit(exception_ptr __p);
1412 void set_exception(exception_ptr __p);
[all …]
/external/libcxx/test/std/language.support/support.exception/propagation/
Dcurrent_exception.pass.cpp32 std::exception_ptr p = std::current_exception(); in main()
50 std::exception_ptr p2; in main()
59 std::exception_ptr p = std::current_exception(); in main()
70 std::exception_ptr p2; in main()
79 std::exception_ptr p = std::current_exception(); in main()
90 std::exception_ptr p2; in main()
99 std::exception_ptr p = std::current_exception(); in main()
146 std::exception_ptr p = std::current_exception(); in main()
179 std::exception_ptr p = std::current_exception(); in main()
208 std::exception_ptr p = std::current_exception(); in main()
[all …]
Dexception_ptr.pass.cpp21 std::exception_ptr p; in main()
23 std::exception_ptr p2 = p; in main()
30 std::exception_ptr p3 = nullptr; in main()
Drethrow_exception.pass.cpp33 std::exception_ptr p; in main()
Dmake_exception_ptr.pass.cpp33 std::exception_ptr p = std::make_exception_ptr(A(5)); in main()
/external/llvm/test/CodeGen/PowerPC/
Dglob-comp-aa-crash.ll5 …pe { %"class.std::__1::__shared_count", %"class.std::__exception_ptr::exception_ptr", %"class.std:…
7 %"class.std::__exception_ptr::exception_ptr" = type { i8* }
23 %ref.tmp = alloca %"class.std::__exception_ptr::exception_ptr", align 8
25 %agg.tmp = alloca %"class.std::__exception_ptr::exception_ptr", align 8
39 …exception_ptr13exception_ptrC1EMS0_FvvE(%"class.std::__exception_ptr::exception_ptr"* %ref.tmp, { …
40 …_ptrES2_(%"class.std::__exception_ptr::exception_ptr"* %__exception_, %"class.std::__exception_ptr…
41 …call void @_ZNSt15__exception_ptr13exception_ptrD1Ev(%"class.std::__exception_ptr::exception_ptr"*…
45 …ptrC1ERKS0_(%"class.std::__exception_ptr::exception_ptr"* %agg.tmp, %"class.std::__exception_ptr::
46 …tionNSt15__exception_ptr13exception_ptrE(%"class.std::__exception_ptr::exception_ptr"* %agg.tmp) #6
64 …call void @_ZNSt15__exception_ptr13exception_ptrD1Ev(%"class.std::__exception_ptr::exception_ptr"*…
[all …]
/external/libcxx/test/libcxx/thread/futures/futures.promise/
Dset_exception.pass.cpp37 p.set_exception(std::exception_ptr()); in main()
47 p.set_exception(std::exception_ptr()); in main()
Dset_exception_at_thread_exit.pass.cpp37 p.set_exception_at_thread_exit(std::exception_ptr()); in main()
47 p.set_exception_at_thread_exit(std::exception_ptr()); in main()
/external/libcxx/src/
Dfuture.cpp116 __assoc_sub_state::set_exception(exception_ptr __p) in set_exception()
129 __assoc_sub_state::set_exception_at_thread_exit(exception_ptr __p) in set_exception_at_thread_exit()
255 promise<void>::set_exception(exception_ptr __p) in set_exception()
275 promise<void>::set_exception_at_thread_exit(exception_ptr __p) in set_exception_at_thread_exit()
/external/google-breakpad/src/client/ios/handler/
Dios_exception_minidump_generator.mm144 MDRawExceptionStream *exception_ptr = exception.get();
145 exception_ptr->thread_id = pthread_mach_thread_np(pthread_self());
149 exception_ptr->exception_record.exception_code = kExceptionType;
150 exception_ptr->exception_record.exception_flags = kExceptionCode;
152 if (!WriteCrashingContext(&exception_ptr->thread_context))
155 exception_ptr->exception_record.exception_address = GetPCFromException();
/external/clang/www/
Dlibstdc++4.4-clang0x.patch459 diff -ur a/exception_ptr.h b/exception_ptr.h
460 --- a/exception_ptr.h 2011-03-15 14:49:08.000000000 -0700
461 +++ b/exception_ptr.h 2011-03-29 10:33:39.000000000 -0700
464 operator==(const exception_ptr&, const exception_ptr&) throw();
/external/google-breakpad/src/client/mac/handler/
Dminidump_generator.cc1124 MDRawExceptionStream *exception_ptr = exception.get(); in WriteExceptionStream() local
1125 exception_ptr->thread_id = exception_thread_; in WriteExceptionStream()
1129 exception_ptr->exception_record.exception_code = exception_type_; in WriteExceptionStream()
1130 exception_ptr->exception_record.exception_flags = exception_code_; in WriteExceptionStream()
1139 if (!WriteContext(state, &exception_ptr->thread_context)) in WriteExceptionStream()
1143 exception_ptr->exception_record.exception_address = exception_subcode_; in WriteExceptionStream()
1145 exception_ptr->exception_record.exception_address = CurrentPCForStack(state); in WriteExceptionStream()