Home
last modified time | relevance | path

Searched refs:PR_GET_NAME (Results 1 – 14 of 14) sorted by relevance

/external/strace/tests/
Dprctl-name.c37 #if defined HAVE_PRCTL && defined PR_GET_NAME && defined PR_SET_NAME
78 rc = prctl(PR_GET_NAME, NULL); in main()
82 rc = prctl(PR_GET_NAME, name + len - i); in main()
87 rc = prctl(PR_GET_NAME, name); in main()
/external/strace/tests-m32/
Dprctl-name.c37 #if defined HAVE_PRCTL && defined PR_GET_NAME && defined PR_SET_NAME
78 rc = prctl(PR_GET_NAME, NULL); in main()
82 rc = prctl(PR_GET_NAME, name + len - i); in main()
87 rc = prctl(PR_GET_NAME, name); in main()
/external/strace/tests-mx32/
Dprctl-name.c37 #if defined HAVE_PRCTL && defined PR_GET_NAME && defined PR_SET_NAME
78 rc = prctl(PR_GET_NAME, NULL); in main()
82 rc = prctl(PR_GET_NAME, name + len - i); in main()
87 rc = prctl(PR_GET_NAME, name); in main()
/external/strace/xlat/
Dprctl_options.h47 #if !(defined(PR_GET_NAME) || (defined(HAVE_DECL_PR_GET_NAME) && HAVE_DECL_PR_GET_NAME))
48 # define PR_GET_NAME 16 macro
167 XLAT(PR_GET_NAME),
Dprctl_options.in16 PR_GET_NAME 16
/external/libcap/libcap/include/uapi/linux/
Dprctl.h54 #define PR_GET_NAME 16 /* Get process name */ macro
/external/kernel-headers/original/uapi/linux/
Dprctl.h56 #define PR_GET_NAME 16 /* Get process name */ macro
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_linux_libcdep.cc147 #ifdef PR_GET_NAME in SanitizerGetThreadName()
149 if (prctl(PR_GET_NAME, (unsigned long)buff, 0, 0, 0)) // NOLINT in SanitizerGetThreadName()
/external/libchrome/base/trace_event/
Dheap_profiler_allocation_context_tracker.cc53 int err = prctl(PR_GET_NAME, name); in GetAndLeakThreadName()
/external/minijail/linux-x86/
Dlibconstants.gen.c833 #ifdef PR_GET_NAME
834 { "PR_GET_NAME", (unsigned long) PR_GET_NAME },
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
Dsyscall_parameters_restrictions.cc154 .CASES((PR_GET_NAME, PR_SET_NAME, PR_GET_DUMPABLE, PR_SET_DUMPABLE in RestrictPrctl()
/external/strace/
Dprctl.c120 case PR_GET_NAME: in SYS_FUNC()
DChangeLog8682 tests: check decoding of prctl PR_GET_NAME/PR_SET_NAME operations.
8691 instead of printstr to print the argument of PR_SET_NAME and PR_GET_NAME
/external/webrtc/talk/app/webrtc/java/jni/
Djni_helpers.cc111 if (prctl(PR_GET_NAME, name) != 0) in GetThreadName()