/external/libunwind/src/unwind/ |
H A D | RaiseException.c | 33 _Unwind_Personality_Fn personality; local 69 personality = (_Unwind_Personality_Fn) (uintptr_t) pi.handler; 70 if (personality) 72 reason = (*personality) (_U_VERSION, _UA_SEARCH_PHASE, 81 Debug (1, "personality returned %d\n", reason);
|
H A D | unwind-internal.h | 67 _Unwind_Personality_Fn personality; local 121 personality = (_Unwind_Personality_Fn) (uintptr_t) pi.handler; 122 if (personality) 133 reason = (*personality) (_U_VERSION, actions, exception_class, 147 /* The personality routine for the handler-frame changed
|
/external/libunwind_llvm/src/ |
H A D | Unwind-sjlj.c | 32 // function also sets the personality and lsda fields of the block. 44 // set by personality handler to be parameters passed to landing pad function 48 __personality_routine personality; // arm offset=24 member in struct:_Unwind_FunctionContext 89 // if there is a personality routine, ask it if it will want to stop at this 91 if (c->personality != NULL) { 93 "personality function %p", 94 exception_object, c->personality); 95 _Unwind_Reason_Code personalityResult = (*c->personality)( 145 // if there is a personality routine, tell it we are unwinding 146 if (c->personality ! [all...] |
H A D | DwarfParser.hpp | 47 pint_t personality; member in struct:libunwind::CFI_Parser::CIE_Info 262 cieInfo->personality = 0; 316 cieInfo->personality = addressSpace
|
H A D | UnwindCursor.hpp | 792 // Grab the index of the personality routine from the compact form. 815 _LIBUNWIND_ABORT("unknown personality routine"); 919 _info.handler = cieInfo.personality; 1001 pint_t personality = 0; local 1159 // extact personality routine, if encoding says function has one 1165 _LIBUNWIND_DEBUG_LOG("found encoding 0x%08X with personality index %d, " 1166 "but personality table has only %d entires", 1176 personality = _addressSpace.getP(personalityPointer); 1179 "personalityDelta=0x%08X, personality=0x%08llX\n", 1180 (uint64_t) pc, personalityDelta, (uint64_t) personality); [all...] |
/external/kernel-headers/original/uapi/linux/raid/ |
H A D | md_u.h | 150 int personality; /* 1,2,3,4 */ member in struct:mdu_param_s
|
/external/llvm/test/Bindings/OCaml/ |
H A D | core.ml | 964 (* CHECK: X7{{.*}}#0{{.*}}personality{{.*}}@__gxx_personality_v0 1157 let personality = declare_function "__gxx_personality_v0" ft m in var 1165 let lp = build_landingpad rt personality 0 "lpad"
|
/external/strace/ |
H A D | syscall.c | 287 set_personality(int personality) argument 289 nsyscalls = nsyscall_vec[personality]; 290 sysent = sysent_vec[personality]; 292 switch (personality) { 326 current_personality = personality; 328 current_wordsize = personality_wordsize[personality]; 331 current_klongsize = personality_klongsize[personality]; 336 update_personality(struct tcb *tcp, unsigned int personality) argument 338 if (personality == current_personality) 340 set_personality(personality); [all...] |
/external/swiftshader/third_party/LLVM/lib/MC/ |
H A D | MCDwarf.cpp | 520 const MCSymbol *personality, 696 // range-start range-length compact-unwind-enc personality-func lsda 752 Streamer.EmitIntValue(0, Size); // No personality fn 766 const MCSymbol *personality, 806 if (personality) 831 if (personality) { 846 if (personality) { 852 EmitPersonality(streamer, *personality, personalityEncoding); 765 EmitCIE(MCStreamer &streamer, const MCSymbol *personality, unsigned personalityEncoding, const MCSymbol *lsda, unsigned lsdaEncoding) argument
|
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/ |
H A D | vmcore.ml | 872 let personality = declare_function "__gxx_personality_v0" ft m in var 880 let lp = build_landingpad rt personality 0 "lpad" 889 (* RUN: grep "landingpad.*personality.*__gxx_personality_v0" < %t.ll
|
/external/llvm/examples/ExceptionDemo/ |
H A D | ExceptionDemo.cpp | 818 /// This is the personality function which is embedded (dwarf emitted), in the 855 // The real work of the personality function is captured here 1267 llvm::Function *personality = module.getFunction("ourPersonality"); local 1268 ret->setPersonalityFn(personality);
|
/external/llvm/lib/MC/ |
H A D | MCDwarf.cpp | 1018 const MCSymbol &EmitCIE(const MCSymbol *personality, 1185 // range-start range-length compact-unwind-enc personality-func lsda 1234 Streamer.EmitIntValue(0, Size); // No personality fn 1259 const MCSymbol &FrameEmitterImpl::EmitCIE(const MCSymbol *personality, argument 1291 if (personality) 1330 if (personality) { 1344 if (personality) { 1348 EmitPersonality(Streamer, *personality, personalityEncoding);
|
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/ |
H A D | ExceptionDemo.cpp | 794 /// This is the personality function which is embedded (dwarf emitted), in the 831 // The real work of the personality function is captured here 1267 llvm::Function *personality = module.getFunction("ourPersonality"); local 1272 personality, 1302 llvm::Value *functPtr = builder.CreatePointerCast(personality,
|