/external/strace/tests/ |
sched_get_priority_mxx.gen.test | 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (sched_get_priority_mxx -a33 -e trace=sched_get_priority_min,sched_get_priority_max); do not edit. 4 run_strace_match_diff -a33 -e trace=sched_get_priority_min,sched_get_priority_max
|
/external/strace/tests-m32/ |
sched_get_priority_mxx.gen.test | 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (sched_get_priority_mxx -a33 -e trace=sched_get_priority_min,sched_get_priority_max); do not edit. 4 run_strace_match_diff -a33 -e trace=sched_get_priority_min,sched_get_priority_max
|
/external/strace/tests-mx32/ |
sched_get_priority_mxx.gen.test | 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (sched_get_priority_mxx -a33 -e trace=sched_get_priority_min,sched_get_priority_max); do not edit. 4 run_strace_match_diff -a33 -e trace=sched_get_priority_min,sched_get_priority_max
|
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/sched_h/ |
12-1-buildonly.c | 12 * int sched_get_priority_min(int); 23 dummyvar = sched_get_priority_min;
|
/bionic/libc/arch-arm/syscalls/ |
sched_get_priority_min.S | 5 ENTRY(sched_get_priority_min) function 16 END(sched_get_priority_min)
|
/bionic/libc/arch-arm64/syscalls/ |
sched_get_priority_min.S | 5 ENTRY(sched_get_priority_min) function 14 END(sched_get_priority_min)
|
/bionic/libc/arch-mips/syscalls/ |
sched_get_priority_min.S | 5 ENTRY(sched_get_priority_min) function 19 END(sched_get_priority_min)
|
/bionic/libc/arch-x86_64/syscalls/ |
sched_get_priority_min.S | 5 ENTRY(sched_get_priority_min) function 15 END(sched_get_priority_min)
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_min/ |
1-1.c | 11 * Test that sched_get_priority_min() returns the minimum value on 23 result = sched_get_priority_min(SCHED_RR);
|
1-2.c | 11 * Test that sched_get_priority_min() returns the appropriate minimum value on 23 result = sched_get_priority_min(SCHED_FIFO);
|
1-4.c | 11 * Test that sched_get_priority_min() returns the appropriate minimum value on 23 result = sched_get_priority_min(SCHED_OTHER);
|
1-3.c | 11 * Test that sched_get_priority_min() returns the appropriate minimum value on 26 result = sched_get_priority_min(SCHED_SPORADIC);
|
2-1.c | 11 * Test that sched_get_priority_min() returns -1 on failure 22 result = sched_get_priority_min(-1);
|
/bionic/libc/arch-mips64/syscalls/ |
sched_get_priority_min.S | 5 ENTRY(sched_get_priority_min) function 25 END(sched_get_priority_min)
|
/bionic/libc/arch-x86/syscalls/ |
sched_get_priority_min.S | 5 ENTRY(sched_get_priority_min) function 29 END(sched_get_priority_min)
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_setprioceiling/ |
3-1.c | 39 prioceiling = sched_get_priority_min(SCHED_FIFO);
|
1-1.c | 45 min_prio = sched_get_priority_min(SCHED_FIFO);
|
/external/toybox/toys/other/ |
chrt.c | 35 // musl-libc intentionally broke sched_get_priority_min() and friends in 39 #define sched_get_priority_min(policy) \ macro 64 sched_get_priority_min(pol), sched_get_priority_max(pol)); 90 pri = atolx_range(*toys.optargs, sched_get_priority_min(pol),
|
/external/ltp/testcases/kernel/syscalls/sched_get_priority_min/ |
sched_get_priority_min02.c | 35 * sched_get_priority_min() returns -1 with errno EINVAL 94 * Call sched_get_priority_min(2) 96 TEST(sched_get_priority_min(SCHED_INVALID)); 102 "Test Failed, sched_get_priority_min()"
|
sched_get_priority_min01.c | 23 * TEST TITLE : Basic test for sched_get_priority_min(2) 34 * This is a Phase I test for the sched_get_priority_min(2) system call. 103 * Call sched_get_priority_min(2) 105 TEST(sched_get_priority_min(test_cases[ind].policy)); 112 "sched_get_priority_min() returned %ld",
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_getprioceiling/ |
1-2.c | 46 min_prio = sched_get_priority_min(SCHED_FIFO);
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/ |
2-1.c | 61 param.sched_priority = sched_get_priority_min(SCHED_FIFO); 110 param.sched_priority = (sched_get_priority_min(SCHED_FIFO) + 164 param.sched_priority = sched_get_priority_min(SCHED_FIFO);
|
2-2.c | 62 param.sched_priority = sched_get_priority_min(SCHED_RR); 114 param.sched_priority = (sched_get_priority_min(SCHED_RR) + 168 param.sched_priority = sched_get_priority_min(SCHED_RR);
|
/bionic/tests/headers/posix/ |
sched_h.c | 57 FUNCTION(sched_get_priority_min, int (*f)(int));
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getschedparam/ |
1-3.c | 75 check_param(self, SCHED_RR, sched_get_priority_min(SCHED_RR)); 89 check_param(self, SCHED_FIFO, sched_get_priority_min(SCHED_FIFO)); 147 sp.sched_priority = sched_get_priority_min(SCHED_RR); 149 ERR_MSG("sched_get_priority_min()", errno); 173 sp.sched_priority = sched_get_priority_min(SCHED_FIFO);
|