HomeSort by: relevance | last modified time | path
    Searched refs:personality (Results 1 - 25 of 89) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gdb.old/dist/gdb/nat/
linux-personality.c 1 /* Disable address space randomization based on inferior personality.
20 #include "nat/linux-personality.h"
22 #include <sys/personality.h>
28 /* See comment on nat/linux-personality.h. */
38 m_personality_orig = personality (0xffffffff);
42 personality (m_personality_orig | ADDR_NO_RANDOMIZE);
45 && !(personality (0xffffffff) & ADDR_NO_RANDOMIZE)))
57 personality (m_personality_orig);
  /src/external/gpl3/gdb/dist/gdb/nat/
linux-personality.c 1 /* Disable address space randomization based on inferior personality.
20 #include "nat/linux-personality.h"
22 #include <sys/personality.h>
28 /* See comment on nat/linux-personality.h. */
38 m_personality_orig = personality (0xffffffff);
42 personality (m_personality_orig | ADDR_NO_RANDOMIZE);
45 && !(personality (0xffffffff) & ADDR_NO_RANDOMIZE)))
57 personality (m_personality_orig);
  /src/external/gpl3/gcc/dist/libgcc/config/xtensa/
unwind-dw2-xtensa.h 31 _Unwind_Personality_Fn personality; member in struct:__anon14311
unwind-dw2-xtensa.c 281 /* "P" indicates a personality routine in the CIE augmentation. */
284 _Unwind_Ptr personality;
286 p = read_encoded_value (context, *p, p + 1, &personality);
287 fs->personality = (_Unwind_Personality_Fn) personality;
333 not provide a personality routine or LSDA. */
280 _Unwind_Ptr personality; local
  /src/external/gpl3/gcc.old/dist/libgcc/config/xtensa/
unwind-dw2-xtensa.h 31 _Unwind_Personality_Fn personality; member in struct:__anon16723
unwind-dw2-xtensa.c 281 /* "P" indicates a personality routine in the CIE augmentation. */
284 _Unwind_Ptr personality;
286 p = read_encoded_value (context, *p, p + 1, &personality);
287 fs->personality = (_Unwind_Personality_Fn) personality;
333 not provide a personality routine or LSDA. */
280 _Unwind_Ptr personality; local
  /src/external/gpl3/gcc/dist/libgcc/
unwind-dw2.h 74 _Unwind_Personality_Fn personality; member in struct:__anon14357
unwind.inc 32 Unwind the stack calling the personality routine to find both the
61 /* Unwind successful. Run the personality routine, if any. */
62 if (fs.personality)
64 code = (*fs.personality) (1, _UA_CLEANUP_PHASE | match_handler,
96 /* Phase 1: Search. Unwind the stack, calling the personality routine
115 /* Unwind successful. Run the personality routine, if any. */
116 if (fs.personality)
118 code = (*fs.personality) (1, _UA_SEARCH_PHASE, exc->exception_class,
176 /* Stop didn't want to do anything. Invoke the personality
181 if (fs.personality)
    [all...]
unwind-sjlj.c 61 the personality routine to the landing pad index. */
64 /* This is how data is returned from the personality routine to
70 _Unwind_Personality_Fn personality; member in struct:SjLj_Function_Context
91 _Unwind_Personality_Fn personality; member in struct:__anon14362
274 fs->personality = NULL;
279 fs->personality = context->fc->personality;
  /src/external/gpl3/gcc.old/dist/libgcc/config/cr16/
unwind-dw2.h 70 _Unwind_Personality_Fn personality; member in struct:__anon16650
  /src/external/gpl3/gcc.old/dist/libgcc/
unwind-dw2.h 70 _Unwind_Personality_Fn personality; member in struct:__anon16759
unwind.inc 32 Unwind the stack calling the personality routine to find both the
61 /* Unwind successful. Run the personality routine, if any. */
62 if (fs.personality)
64 code = (*fs.personality) (1, _UA_CLEANUP_PHASE | match_handler,
96 /* Phase 1: Search. Unwind the stack, calling the personality routine
115 /* Unwind successful. Run the personality routine, if any. */
116 if (fs.personality)
118 code = (*fs.personality) (1, _UA_SEARCH_PHASE, exc->exception_class,
176 /* Stop didn't want to do anything. Invoke the personality
181 if (fs.personality)
    [all...]
unwind-sjlj.c 61 the personality routine to the landing pad index. */
64 /* This is how data is returned from the personality routine to
70 _Unwind_Personality_Fn personality; member in struct:SjLj_Function_Context
91 _Unwind_Personality_Fn personality; member in struct:__anon16765
274 fs->personality = NULL;
279 fs->personality = context->fc->personality;
  /src/external/gpl3/binutils/dist/include/mach-o/
unwind.h 142 unsigned char personality[4]; member in struct:mach_o_compact_unwind_32
151 unsigned char personality[8]; member in struct:mach_o_compact_unwind_64
170 - personality array
  /src/external/gpl3/binutils.old/dist/include/mach-o/
unwind.h 142 unsigned char personality[4]; member in struct:mach_o_compact_unwind_32
151 unsigned char personality[8]; member in struct:mach_o_compact_unwind_64
170 - personality array
  /src/external/gpl3/gdb.old/dist/include/mach-o/
unwind.h 142 unsigned char personality[4]; member in struct:mach_o_compact_unwind_32
151 unsigned char personality[8]; member in struct:mach_o_compact_unwind_64
170 - personality array
  /src/external/gpl3/gdb/dist/include/mach-o/
unwind.h 142 unsigned char personality[4]; member in struct:mach_o_compact_unwind_32
151 unsigned char personality[8]; member in struct:mach_o_compact_unwind_64
170 - personality array
  /src/usr.bin/passwd/
passwd.c 85 static const struct pw_module_s *personality; variable in typeref:struct:pw_module_s
103 if (personality != NULL && personality->pw_usage != NULL)
104 (*personality->pw_usage)("usage:");
128 /* First, look for personality based on argv[0]. */
140 * We have reached the default personality case.
142 * personality name.
157 * chosen personality.
165 * is our chosen personality.
176 personality = pwm
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_platform_linux.cc 41 #include <sys/personality.h>
279 int old_personality = personality(0xffffffff);
284 CHECK_NE(personality(old_personality | ADDR_NO_RANDOMIZE), -1);
  /src/sys/lib/libunwind/
UnwindCursor.hpp 132 fInfo.handler = cieInfo.personality;
  /src/external/gpl3/binutils/dist/gas/
dw2gencfi.c 380 expressionS personality;
1080 expression_and_evaluate (&fde->personality);
1081 switch (fde->personality.X_op)
1553 emit_expr_encoded (&fde->personality, fde->per_encoding, false);
1991 emit_expr_encoded (&cie->personality, cie->per_encoding, true);
2233 if (cie->personality.X_op != fde->personality.X_op
2234 || (cie->personality.X_add_number
2235 != fde->personality.X_add_number))
2237 switch (cie->personality.X_op
378 expressionS personality; member in struct:cie_entry
    [all...]
dw2gencfi.h 218 expressionS personality; member in struct:fde_entry
  /src/external/gpl3/binutils.old/dist/gas/
dw2gencfi.c 380 expressionS personality;
1080 expression_and_evaluate (&fde->personality);
1081 switch (fde->personality.X_op)
1553 emit_expr_encoded (&fde->personality, fde->per_encoding, false);
1992 emit_expr_encoded (&cie->personality, cie->per_encoding, true);
2234 if (cie->personality.X_op != fde->personality.X_op
2235 || (cie->personality.X_add_number
2236 != fde->personality.X_add_number))
2238 switch (cie->personality.X_op
378 expressionS personality; member in struct:cie_entry
    [all...]
dw2gencfi.h 218 expressionS personality; member in struct:fde_entry
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_platform_linux.cpp 39 #include <sys/personality.h>
317 // ASLR personality check.
318 int old_personality = personality(0xffffffff);
323 CHECK_NE(personality(old_personality | ADDR_NO_RANDOMIZE), -1);

Completed in 29 milliseconds

1 2 3 4