HomeSort by relevance Sort by last modified time
    Searched refs:PR_SET_NAME (Results 1 - 25 of 38) sorted by null

1 2

  /external/strace/tests/
prctl-name.c 2 * Check decoding of prctl PR_GET_NAME/PR_SET_NAME operations.
37 #if defined HAVE_PRCTL && defined PR_GET_NAME && defined PR_SET_NAME
52 rc = prctl(PR_SET_NAME, NULL);
53 printf("prctl(PR_SET_NAME, NULL) = %s\n", sprintrc(rc));
56 rc = prctl(PR_SET_NAME, name + len - i);
57 printf("prctl(PR_SET_NAME, \"%.*s\"%s) = %s\n",
69 rc = prctl(PR_SET_NAME, name + len - i);
71 printf("prctl(PR_SET_NAME, %p) = %s\n",
74 printf("prctl(PR_SET_NAME, \"%.*s\"...) = %s\n",
101 SKIP_MAIN_UNDEFINED("HAVE_PRCTL && PR_GET_NAME && PR_SET_NAME")
    [all...]
  /external/strace/tests-m32/
prctl-name.c 2 * Check decoding of prctl PR_GET_NAME/PR_SET_NAME operations.
37 #if defined HAVE_PRCTL && defined PR_GET_NAME && defined PR_SET_NAME
52 rc = prctl(PR_SET_NAME, NULL);
53 printf("prctl(PR_SET_NAME, NULL) = %s\n", sprintrc(rc));
56 rc = prctl(PR_SET_NAME, name + len - i);
57 printf("prctl(PR_SET_NAME, \"%.*s\"%s) = %s\n",
69 rc = prctl(PR_SET_NAME, name + len - i);
71 printf("prctl(PR_SET_NAME, %p) = %s\n",
74 printf("prctl(PR_SET_NAME, \"%.*s\"...) = %s\n",
101 SKIP_MAIN_UNDEFINED("HAVE_PRCTL && PR_GET_NAME && PR_SET_NAME")
    [all...]
  /external/strace/tests-mx32/
prctl-name.c 2 * Check decoding of prctl PR_GET_NAME/PR_SET_NAME operations.
37 #if defined HAVE_PRCTL && defined PR_GET_NAME && defined PR_SET_NAME
52 rc = prctl(PR_SET_NAME, NULL);
53 printf("prctl(PR_SET_NAME, NULL) = %s\n", sprintrc(rc));
56 rc = prctl(PR_SET_NAME, name + len - i);
57 printf("prctl(PR_SET_NAME, \"%.*s\"%s) = %s\n",
69 rc = prctl(PR_SET_NAME, name + len - i);
71 printf("prctl(PR_SET_NAME, %p) = %s\n",
74 printf("prctl(PR_SET_NAME, \"%.*s\"...) = %s\n",
101 SKIP_MAIN_UNDEFINED("HAVE_PRCTL && PR_GET_NAME && PR_SET_NAME")
    [all...]
  /external/autotest/client/site_tests/kernel_PerfEventRename/src/
perf-rename-test.c 36 if (prctl(PR_SET_NAME, name) < 0) {
37 perror("prctl(PR_SET_NAME)");
  /bionic/libc/bionic/
pthread_setname_np.cpp 91 return prctl(PR_SET_NAME, thread_name) ? errno : 0;
  /external/drm_hwcomposer/
worker.cpp 81 prctl(PR_SET_NAME, name_.c_str());
  /external/libcap/libcap/include/uapi/linux/
prctl.h 53 #define PR_SET_NAME 15 /* Set process name */
  /external/strace/xlat/
prctl_options.h 104 #if defined(PR_SET_NAME) || (defined(HAVE_DECL_PR_SET_NAME) && HAVE_DECL_PR_SET_NAME)
106 static_assert((PR_SET_NAME) == (15), "PR_SET_NAME != 15");
109 # define PR_SET_NAME 15
388 XLAT(PR_SET_NAME),
  /bionic/libc/kernel/uapi/linux/
prctl.h 52 #define PR_SET_NAME 15
  /device/google/marlin/camera/QCamera2/util/
QCameraCmdThread.cpp 119 prctl(PR_SET_NAME, (unsigned long)name, 0, 0, 0);
  /external/kernel-headers/original/uapi/linux/
prctl.h 56 #define PR_SET_NAME 15 /* Set process name */
  /external/libchrome/base/threading/
platform_thread_linux.cc 144 int err = prctl(PR_SET_NAME, name.c_str());
147 DPLOG(ERROR) << "prctl(PR_SET_NAME)";
  /external/webrtc/webrtc/base/
platform_thread.cc 73 prctl(PR_SET_NAME, reinterpret_cast<unsigned long>(name));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux_libcdep.cc 139 #ifdef PR_SET_NAME
140 return 0 == prctl(PR_SET_NAME, (unsigned long)name, 0, 0, 0); // NOLINT
  /external/minijail/linux-x86/
libconstants.gen.c 944 #ifdef PR_SET_NAME
945 { "PR_SET_NAME", (unsigned long) PR_SET_NAME },
946 #endif // PR_SET_NAME
    [all...]
  /external/strace/
prctl.c 307 case PR_SET_NAME:
  /frameworks/av/media/libstagefright/
AACWriter.cpp 294 prctl(PR_SET_NAME, (unsigned long)"AACWriterThread", 0, 0, 0);
AMRWriter.cpp 194 prctl(PR_SET_NAME, (unsigned long)"AMRWriter", 0, 0, 0);
OggWriter.cpp 283 prctl(PR_SET_NAME, (unsigned long)"OggWriter", 0, 0, 0);
MPEG4Writer.cpp     [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_thread.c 654 prctl(PR_SET_NAME, (unsigned long)name, 0, 0, 0);
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 862 #if defined(__linux__) && defined(PR_SET_NAME)
863 return 0 == prctl(PR_SET_NAME, (unsigned long)name, 0, 0, 0);
912 // Check if prctl(PR_SET_NAME) is supported. Return if not.
    [all...]
  /external/v8/src/base/platform/
platform-posix.cc 727 #elif defined(PR_SET_NAME)
728 prctl(PR_SET_NAME,
  /device/google/marlin/camera/usbcamcore/src/
QualcommUsbCamera.cpp     [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg.c     [all...]

Completed in 930 milliseconds

1 2