HomeSort by relevance Sort by last modified time
    Searched defs:landingPad (Results 1 - 6 of 6) sorted by null

  /ndk/sources/cxx-stl/gabi++/src/
dwarf_helper.h 74 uintptr_t landingPad; // null -> nothing found, else something found
helper_func_internal.cc 67 results.landingPad = 0;
121 uintptr_t landingPad = readEncodedPointer(&callSitePtr, callSiteEncoding);
124 if (landingPad == 0) {
130 landingPad = (uintptr_t)lpStart + landingPad;
135 results.landingPad = landingPad;
161 results.landingPad = landingPad;
193 results.landingPad = landingPad
    [all...]
  /external/compiler-rt/lib/builtins/
gcc_personality_v0.c 188 uintptr_t landingPad = readEncodedPointer(&p, callSiteEncoding);
190 if ( landingPad == 0 )
201 _Unwind_SetIP(context, funcStart+landingPad);
  /external/libcxxabi/src/
cxa_personality.cpp 66 | | landingPad | (encoded with callSiteEncoding) | offset relative to lpStart | |
79 | | landingPad | (ULEB128) | offset relative to lpStart | |
132 * landingPad can be 0, this implies there is nothing to be done.
134 * landingPad != 0 and actionEntry == 0 implies a cleanup needs to be done
135 @landingPad.
137 * A cleanup can also be found under landingPad != 0 and actionEntry != 0 in
499 uintptr_t landingPad; // null -> nothing found, else something found
518 _Unwind_SetIP(context, results.landingPad);
550 results.landingPad = 0;
647 uintptr_t landingPad = readEncodedPointer(&callSitePtr, callSiteEncoding)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_personality.cpp 61 | | landingPad | (encoded with callSiteEncoding) | offset relative to lpStart | |
74 | | landingPad | (ULEB128) | offset relative to lpStart | |
127 * landingPad can be 0, this implies there is nothing to be done.
129 * landingPad != 0 and actionEntry == 0 implies a cleanup needs to be done
130 @landingPad.
132 * A cleanup can also be found under landingPad != 0 and actionEntry != 0 in
491 uintptr_t landingPad; // null -> nothing found, else something found
510 _Unwind_SetIP(context, results.landingPad);
544 results.landingPad = 0;
640 uintptr_t landingPad = readEncodedPointer(&callSitePtr, callSiteEncoding)
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 707 uintptr_t landingPad = readEncodedPointer(&callSitePtr,
719 if (landingPad == 0) {
788 _Unwind_SetIP(context, funcStart + landingPad);
    [all...]

Completed in 163 milliseconds