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

1 2

  /external/strace/xlat/
itimer_which.h 20 #if defined(ITIMER_PROF) || (defined(HAVE_DECL_ITIMER_PROF) && HAVE_DECL_ITIMER_PROF)
22 static_assert((ITIMER_PROF) == (2), "ITIMER_PROF != 2");
25 # define ITIMER_PROF 2
40 [ITIMER_PROF] = XLAT(ITIMER_PROF),
  /external/linux-kselftest/tools/testing/selftests/timers/
posix_timers.c 33 * to elapse ITIMER_PROF.
90 else if (which == ITIMER_PROF)
101 else if (which == ITIMER_PROF)
120 else if (which == ITIMER_PROF)
200 if (check_itimer(ITIMER_PROF) < 0)
  /bionic/libc/kernel/uapi/linux/
time.h 39 #define ITIMER_PROF 2
  /bionic/tests/headers/posix/
sys_time_h.c 49 MACRO(ITIMER_PROF);
  /external/compiler-rt/test/tsan/
signal_sync.cc 42 if (setitimer(ITIMER_PROF, &t, 0)) {
signal_thread.cc 36 if (setitimer(ITIMER_PROF, &t, 0)) {
signal_reset.cc 56 if (setitimer(ITIMER_PROF, &t, 0)) {
signal_sync2.cc 55 if (setitimer(ITIMER_PROF, &t, 0)) {
  /external/kernel-headers/original/uapi/linux/
time.h 33 #define ITIMER_PROF 2
  /external/ltp/testcases/kernel/syscalls/getitimer/
getitimer01.c 41 ITIMER_PROF,
getitimer03.c 97 * ITIMER_REAL = 0, ITIMER_VIRTUAL = 1 and ITIMER_PROF = 2
101 TEST(getitimer(-ITIMER_PROF, value));
  /external/compiler-rt/test/msan/
signal_stress_test.cc 45 setitimer(ITIMER_PROF, &itv, NULL);
67 setitimer(ITIMER_PROF, &itv, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
13-1.c 80 ret = setitimer(ITIMER_PROF, &it, NULL);
84 "Failed to set interval timer for ITIMER_PROF");
123 ret = getitimer(ITIMER_PROF, &it);
127 "Failed to read ITIMER_PROF in child");
131 FAILED("Timer ITIMER_PROF was not reset in child");
  /external/compiler-rt/test/asan/TestCases/Linux/
uar_signals.cc 36 if (setitimer(ITIMER_PROF, &timer, 0) != 0) {
swapcontext_annotation.cc 152 if (setitimer(ITIMER_PROF, &t, 0)) {
  /external/ltp/testcases/kernel/syscalls/setitimer/
setitimer03.c 102 * ITIMER_REAL = 0, ITIMER_VIRTUAL = 1 and ITIMER_PROF = 2
106 TEST(setitimer(-ITIMER_PROF, value, ovalue));
  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
itimer.c 149 ITIMER_PROF
153 the ITIMER_PROF timer expires, the SIGPROF signal is delivered.
192 } else if (which == ITIMER_PROF) {
269 } else if (which == ITIMER_PROF) {
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
time.h 142 #define ITIMER_PROF 2
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
1-6.c 118 if (setitimer(ITIMER_PROF, &it, NULL)) {
  /external/python/cpython2/Lib/plat-sunos5/
TYPES.py 246 ITIMER_PROF = 2
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
signalmodule.c 475 or ITIMER_PROF) to fire after value seconds and after\n\
560 ITIMER_PROF -- decrements both when the process is executing and\n\
830 #ifdef ITIMER_PROF
831 x = PyLong_FromLong(ITIMER_PROF);
832 PyDict_SetItemString(d, "ITIMER_PROF", x);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_signal.py 417 signal.setitimer(signal.ITIMER_PROF, 0)
467 self.itimer = signal.ITIMER_PROF
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
signalmodule.c 467 or ITIMER_PROF) to fire after value seconds and after\n\
552 ITIMER_PROF -- decrements both when the process is executing and\n\
822 #ifdef ITIMER_PROF
823 x = PyLong_FromLong(ITIMER_PROF);
824 PyDict_SetItemString(d, "ITIMER_PROF", x);
  /external/python/cpython2/Lib/test/
test_signal.py 437 signal.setitimer(signal.ITIMER_PROF, 0)
487 self.itimer = signal.ITIMER_PROF
  /external/python/cpython2/Modules/
signalmodule.c 475 or ITIMER_PROF) to fire after value seconds and after\n\
560 ITIMER_PROF -- decrements both when the process is executing and\n\
829 #ifdef ITIMER_PROF
830 x = PyLong_FromLong(ITIMER_PROF);
831 PyDict_SetItemString(d, "ITIMER_PROF", x);

Completed in 1794 milliseconds

1 2