OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exceptionObject
(Results
1 - 10
of
10
) sorted by null
/ndk/sources/cxx-stl/gabi++/include/
cxxabi.h
105
void* __cxa_begin_catch(void*
exceptionObject
) _GABIXX_NOEXCEPT;
116
void* __cxa_get_exception_ptr(void*
exceptionObject
) _GABIXX_NOEXCEPT;
124
void __cxa_decrement_exception_refcount(void*
exceptionObject
)
127
void __cxa_increment_exception_refcount(void*
exceptionObject
)
130
void __cxa_rethrow_primary_exception(void*
exceptionObject
);
/prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cxxabi.h
105
void* __cxa_begin_catch(void*
exceptionObject
) _GABIXX_NOEXCEPT;
116
void* __cxa_get_exception_ptr(void*
exceptionObject
) _GABIXX_NOEXCEPT;
124
void __cxa_decrement_exception_refcount(void*
exceptionObject
)
127
void __cxa_increment_exception_refcount(void*
exceptionObject
)
130
void __cxa_rethrow_primary_exception(void*
exceptionObject
);
/prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cxxabi.h
105
void* __cxa_begin_catch(void*
exceptionObject
) _GABIXX_NOEXCEPT;
116
void* __cxa_get_exception_ptr(void*
exceptionObject
) _GABIXX_NOEXCEPT;
124
void __cxa_decrement_exception_refcount(void*
exceptionObject
)
127
void __cxa_increment_exception_refcount(void*
exceptionObject
)
130
void __cxa_rethrow_primary_exception(void*
exceptionObject
);
/ndk/sources/cxx-stl/gabi++/src/
cxxabi.cc
411
extern "C" void* __cxa_get_exception_ptr(void*
exceptionObject
) _GABIXX_NOEXCEPT {
414
reinterpret_cast<_Unwind_Exception *>(
exceptionObject
)+1)-1;
425
extern "C" void __cxa_decrement_exception_refcount(void*
exceptionObject
)
427
if (
exceptionObject
!= NULL)
430
reinterpret_cast<__cxa_exception*>(
exceptionObject
)-1;
432
__cxa_free_exception(
exceptionObject
);
436
extern "C" void __cxa_increment_exception_refcount(void*
exceptionObject
)
438
if (
exceptionObject
!= NULL)
441
reinterpret_cast<__cxa_exception*>(
exceptionObject
)-1;
/external/libcxxabi/include/
cxxabi.h
52
extern void * __cxa_get_exception_ptr(void *
exceptionObject
) throw();
53
extern void * __cxa_begin_catch(void *
exceptionObject
) throw();
56
extern bool __cxa_begin_cleanup(void *
exceptionObject
) throw();
unwind.h
110
_Unwind_Exception*
exceptionObject
,
115
_Unwind_Exception*
exceptionObject
,
141
_Unwind_Exception*
exceptionObject
,
149
_Unwind_Exception*
exceptionObject
,
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
cxxabi.h
52
extern void * __cxa_get_exception_ptr(void *
exceptionObject
) throw();
53
extern void * __cxa_begin_catch(void *
exceptionObject
) throw();
56
extern bool __cxa_begin_cleanup(void *
exceptionObject
) throw();
unwind.h
106
_Unwind_Exception*
exceptionObject
,
111
_Unwind_Exception*
exceptionObject
,
137
_Unwind_Exception*
exceptionObject
,
144
struct _Unwind_Exception *
exceptionObject
,
/external/compiler-rt/lib/builtins/
gcc_personality_v0.c
187
uint64_t exceptionClass, struct _Unwind_Exception*
exceptionObject
,
192
uint64_t exceptionClass, struct _Unwind_Exception*
exceptionObject
,
239
(uintptr_t)
exceptionObject
);
/external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp
546
/// @param
exceptionObject
thrown _Unwind_Exception instance.
554
struct _Unwind_Exception *
exceptionObject
) {
558
!
exceptionObject
||
563
(((char*)
exceptionObject
) + ourBaseFromUnwindOffset);
569
"handleActionValue(...):
exceptionObject
= <%p>, "
571
exceptionObject
,
640
/// @param
exceptionObject
thrown _Unwind_Exception instance.
647
struct _Unwind_Exception *
exceptionObject
,
752
exceptionObject
);
768
(uintptr_t)
exceptionObject
);
[
all
...]
Completed in 521 milliseconds