/third_party/libunwind/libunwind/src/unwind/ |
H A D | RaiseException.c | 32 _Unwind_Personality_Fn personality; in _Unwind_RaiseException() local 63 personality = (_Unwind_Personality_Fn) (uintptr_t) pi.handler; in _Unwind_RaiseException() 64 if (personality) in _Unwind_RaiseException() 66 reason = (*personality) (_U_VERSION, _UA_SEARCH_PHASE, in _Unwind_RaiseException() 75 Debug (1, "personality returned %d\n", reason); in _Unwind_RaiseException()
|
H A D | unwind-internal.h | 64 _Unwind_Personality_Fn personality; in _Unwind_Phase2() local 106 personality = (_Unwind_Personality_Fn) (uintptr_t) pi.handler; in _Unwind_Phase2() 107 if (personality) in _Unwind_Phase2() 118 reason = (*personality) (_U_VERSION, actions, exception_class, in _Unwind_Phase2() 132 /* The personality routine for the handler-frame changed in _Unwind_Phase2()
|
/third_party/ltp/lib/ |
H A D | tst_kernel.c | 19 #include <sys/personality.h> 60 /* Android's bionic libc sets the PER_LINUX32 personality for all 32-bit in tst_kernel_bits() 65 (personality(0xffffffff) & PER_MASK) == PER_LINUX32) { in tst_kernel_bits() 66 /* Set the personality back to the default. */ in tst_kernel_bits() 67 if (personality(PER_LINUX) == -1) { in tst_kernel_bits() 68 tst_brkm(TBROK | TERRNO, NULL, "personality()"); in tst_kernel_bits() 72 /* Redo the uname check without the PER_LINUX32 personality to in tst_kernel_bits() 79 /* Set the personality back to PER_LINUX32. */ in tst_kernel_bits() 80 if (personality(PER_LINUX32) == -1) { in tst_kernel_bits() 81 tst_brkm(TBROK | TERRNO, NULL, "personality()"); in tst_kernel_bits() [all...] |
H A D | tst_safe_macros.c | 20 #include "lapi/personality.h" 116 int prev_persona = personality(persona); in safe_personality()
|
/third_party/musl/src/linux/ |
H A D | personality.c | 1 #include <sys/personality.h> 4 int personality(unsigned long persona) in personality() function
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | personality.c | 16 #include <sys/personality.h> 21 * @tc.desc : Get System personality 26 int ret = personality(-1); in personality_0100()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | personality.rs | 53 /// Retrieve the current process personality. 60 /// # use nix::sys::personality::{self, Persona}; 61 /// let pers = personality::get().unwrap(); 65 let res = unsafe { libc::personality(0xFFFFFFFF) }; in get() 70 /// Set the current process personality. 72 /// Returns a Result containing the *previous* personality for the 75 /// For more information, see [personality(2)](https://man7.org/linux/man-pages/man2/personality.2.html) 77 /// **NOTE**: This call **replaces** the current personality entirely. 78 /// To **update** the personality, firs [all...] |
H A D | mod.rs | 67 #![feature = "personality"] 68 pub mod personality; modules
|
/third_party/ltp/include/lapi/ |
H A D | personality.h | 13 #include <sys/personality.h>
|
H A D | io_uring.h | 63 /* personality to use, if used */ 64 uint16_t personality; member
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | personality.h | 41 int personality(unsigned long);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | personality.h | 41 int personality(unsigned long);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | personality.h | 41 int personality(unsigned long);
|
/third_party/musl/include/sys/ |
H A D | personality.h | 44 int personality(unsigned long);
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_get_proc_info.tex | 39 handler routine. This is sometimes called the \emph{personality} 41 a personality routine, the \Var{handler} member is cleared to 0. \\
|
H A D | unw_resume.tex | 54 handlers (aka, ``personality routines''). If a program needs this, it
|
H A D | libunwind-dynamic.tex | 141 personality-routine for this procedure. Personality-routines are 144 description of the personality routine. If the procedure has no 145 personality routine, \Var{handler} must be set to 0.
|
/third_party/ltp/testcases/kernel/fs/scsi/ltpfs/ |
H A D | LtpfsCmds.c | 24 #include <linux/personality.h>
|
/third_party/rust/crates/rustix/src/ |
H A D | io_uring.rs | 690 pub personality: u16, 1085 check_struct_field!(io_uring_sqe, personality); in io_uring_layouts()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | core-util.c | 114 #include <sys/personality.h> 3561 if (personality(PER_LINUX) < 0) in pa_reset_personality() 3562 pa_log_warn("Uh, personality() failed: %s", pa_cstrerror(errno)); in pa_reset_personality()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 728 KEYWORD(personality); in LexIdentifier()
|
/third_party/rust/crates/libc/src/unix/linux_like/android/ |
H A D | mod.rs | 3271 pub fn personality(persona: ::c_uint) -> ::c_int; in personality() functions
|
/third_party/rust/crates/linux-raw-sys/src/aarch64/ |
H A D | general.rs | 4360 pub personality: __u16,
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 4133 pub fn personality(persona: ::c_ulong) -> ::c_int; in personality() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 4169 pub fn personality(persona: ::c_ulong) -> ::c_int; in personality() functions
|