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

/external/kernel-headers/original/linux/
H A Dpersonality.h95 unsigned char pers_low; /* lowest personality */
96 unsigned char pers_high; /* highest personality */
108 * Return the base personality without flags.
110 #define personality(pers) (pers & PER_MASK) macro
114 * Change personality of the currently running process.
117 ((current->personality == (pers)) ? 0 : __set_personality(pers))
H A Dsched.h818 unsigned long personality; member in struct:task_struct
/external/kernel-headers/original/linux/raid/
H A Dmd_u.h118 int personality; /* 1,2,3,4 */ member in struct:mdu_param_s
/external/llvm/test/Bindings/Ocaml/
H A Dvmcore.ml1059 let personality = declare_function "__gxx_personality_v0" ft m in var
1067 let lp = build_landingpad rt personality 0 "lpad"
1076 (* CHECK: landingpad{{.*}}personality{{.*}}__gxx_personality_v0
/external/strace/
H A Dsyscall.c189 set_personality(int personality) argument
191 switch (personality) {
236 current_personality = personality;
919 "detecting personality of process "
951 "detecting personality of process "
1167 /* Disassemble the trap to see what personality to use. */
/external/clang/lib/CodeGen/
H A DCGException.cpp146 /// The exceptions personality for a function.
150 // If this is non-null, this personality requires a non-standard
211 /// Determines the personality function to use when both C++
215 // The ObjC personality defers to the C++ personality for non-ObjC
216 // handlers. Unlike the C++ case, we use the same personality
227 // The GCC runtime's personality function inherently doesn't support
228 // mixed EH. Use the C++ personality just to avoid returning null.
263 /// Check whether a personality function could reasonably be swapped
264 /// for a C++ personality functio
775 const EHPersonality &personality = EHPersonality::get(getLangOpts()); local
[all...]
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp816 /// This is the personality function which is embedded (dwarf emitted), in the
853 // The real work of the personality function is captured here
1268 llvm::Function *personality = module.getFunction("ourPersonality"); local
1272 personality,
/external/llvm/lib/MC/
H A DMCDwarf.cpp883 const MCSymbol *personality,
1125 // range-start range-length compact-unwind-enc personality-func lsda
1179 Streamer.EmitIntValue(0, Size); // No personality fn
1191 const MCSymbol *personality,
1232 if (personality)
1259 if (personality) {
1274 if (personality) {
1280 EmitPersonality(streamer, *personality, personalityEncoding);
1190 EmitCIE(MCStreamer &streamer, const MCSymbol *personality, unsigned personalityEncoding, const MCSymbol *lsda, bool IsSignalFrame, unsigned lsdaEncoding) argument

Completed in 1002 milliseconds