Searched defs:personality (Results 1 - 13 of 13) sorted by relevance

/external/libunwind/src/unwind/
H A DRaiseException.c33 _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 Dunwind-internal.h67 _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 DUnwind-sjlj.c32 // 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 DDwarfParser.hpp47 pint_t personality; member in struct:libunwind::CFI_Parser::CIE_Info
262 cieInfo->personality = 0;
316 cieInfo->personality = addressSpace
H A DUnwindCursor.hpp792 // 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 Dmd_u.h150 int personality; /* 1,2,3,4 */ member in struct:mdu_param_s
/external/llvm/test/Bindings/OCaml/
H A Dcore.ml964 (* 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 Dsyscall.c287 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 DMCDwarf.cpp520 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 Dvmcore.ml872 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 DExceptionDemo.cpp818 /// 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 DMCDwarf.cpp1018 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 DExceptionDemo.cpp794 /// 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,

Completed in 592 milliseconds