OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exceptionObject
(Results
1 - 6
of
6
) sorted by null
/ndk/sources/cxx-stl/gabi++/src/
cxxabi.cc
261
extern "C" void* __cxa_get_exception_ptr(void*
exceptionObject
) {
264
reinterpret_cast<_Unwind_Exception *>(
exceptionObject
)+1)-1;
275
extern "C" void __cxa_decrement_exception_refcount(void*
exceptionObject
)
277
if (
exceptionObject
!= NULL)
280
reinterpret_cast<__cxa_exception*>(
exceptionObject
)-1;
282
__cxa_free_exception(
exceptionObject
);
286
extern "C" void __cxa_increment_exception_refcount(void*
exceptionObject
)
288
if (
exceptionObject
!= NULL)
291
reinterpret_cast<__cxa_exception*>(
exceptionObject
)-1;
/ndk/sources/cxx-stl/gabi++/include/
cxxabi.h
96
void* __cxa_begin_catch(void*
exceptionObject
);
105
void* __cxa_get_exception_ptr(void*
exceptionObject
);
111
void __cxa_decrement_exception_refcount(void*
exceptionObject
) _GABIXX_NOEXCEPT;
112
void __cxa_increment_exception_refcount(void*
exceptionObject
) _GABIXX_NOEXCEPT;
113
void __cxa_rethrow_primary_exception(void*
exceptionObject
);
/prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cxxabi.h
335
void* __cxa_begin_catch(void*
exceptionObject
);
344
void* __cxa_get_exception_ptr(void*
exceptionObject
);
350
void __cxa_decrement_exception_refcount(void*
exceptionObject
) throw();
351
void __cxa_increment_exception_refcount(void*
exceptionObject
) throw();
352
void __cxa_rethrow_primary_exception(void*
exceptionObject
);
/external/compiler-rt/lib/
gcc_personality_v0.c
186
uint64_t exceptionClass, struct _Unwind_Exception*
exceptionObject
,
190
uint64_t exceptionClass, struct _Unwind_Exception*
exceptionObject
,
237
(uintptr_t)
exceptionObject
);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ScopeChainSidebarPane.js
89
var
exceptionObject
= /** @type {!RuntimeAgent.RemoteObject} */ (exception);
90
extraProperties.push(new WebInspector.RemoteObjectProperty("<exception>", WebInspector.RemoteObject.fromPayload(
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 199 milliseconds