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

1 2 3 4 5 6 7 8 9

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/sched_h/
2-1-buildonly.c 11 * Test that sched_param structure is declared and includes at a minimum:
16 struct sched_param this_type_should_exist, s;
13-1-buildonly.c 12 * int sched_getparam(pid_t, struct sched_param *);
19 typedef int (*sched_getparam_test) (pid_t, struct sched_param *);
16-1-buildonly.c 12 * int sched_setparam(pid_t, const struct sched_param *);
19 typedef int (*sched_setparam_test) (pid_t, const struct sched_param *);
17-1-buildonly.c 12 * int sched_setscheduler(pid_t, int, const struct sched_param *);
19 typedef int (*sched_setscheduler_test) (pid_t, int, const struct sched_param *);
3-1-buildonly.c 11 * Test that when _POSIX_SPORADIC_SERVER is defined, sched_param structure
23 struct sched_param s;
4-1-buildonly.c 12 * sched_param structure includes the following:
23 struct sched_param s;
  /bionic/tests/headers/posix/
sched_h.c 40 TYPE(struct sched_param);
41 STRUCT_MEMBER(struct sched_param, int, sched_priority);
43 STRUCT_MEMBER(struct sched_param, int, sched_ss_low_priority);
44 STRUCT_MEMBER(struct sched_param, struct timespec, sched_ss_repl_period);
45 STRUCT_MEMBER(struct sched_param, struct timespec, sched_ss_init_budget);
46 STRUCT_MEMBER(struct sched_param, int, sched_ss_max_repl);
58 FUNCTION(sched_getparam, int (*f)(pid_t, struct sched_param*));
61 FUNCTION(sched_setparam, int (*f)(pid_t, const struct sched_param*));
62 FUNCTION(sched_setscheduler, int (*f)(pid_t, int, const struct sched_param*));
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
sched_getparam.cc 8 struct sched_param param;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/
2-1.c 23 struct sched_param param0;
24 struct sched_param param1;
3-1.c 20 struct sched_param param;
1-1.c 12 * process specified by pid in the sched_param structure pointed to by param.
22 struct sched_param param;
  /external/strace/tests/
sched_xetparam.c 13 struct sched_param *const param =
14 tail_alloc(sizeof(struct sched_param));
  /external/strace/tests-m32/
sched_xetparam.c 13 struct sched_param *const param =
14 tail_alloc(sizeof(struct sched_param));
  /external/strace/tests-mx32/
sched_xetparam.c 13 struct sched_param *const param =
14 tail_alloc(sizeof(struct sched_param));
  /external/ltp/testcases/open_posix_testsuite/functional/threads/include/
pitest.h 27 struct sched_param sched_param; local
28 memset(&sched_param, 0, sizeof(sched_param));
29 sched_param.sched_priority = prio;
30 if (pthread_setschedparam(pid, policy, &sched_param) == -1)
  /bionic/libc/bionic/
pthread_setschedparam.cpp 35 int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) {
50 sched_param param = { .sched_priority = priority };
pthread_getschedparam.cpp 34 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) {
  /external/ltp/testcases/kernel/syscalls/sched_setscheduler/
sched_setscheduler03.c 43 static struct sched_param param[1] = { {0} };
48 struct sched_param *sched_param; member in struct:test_case_t
56 .sched_param = &param[0]
61 .sched_param = &param[0]
67 .sched_param = &param[0]
109 i + 1, cases[i].policy, cases[i].sched_param->sched_priority);
112 cases[i].sched_param));
sched_setscheduler01.c 64 struct sched_param param;
65 struct sched_param param1 = { 1 };
77 struct sched_param *p;
90 &init_pid, SCHED_OTHER, (struct sched_param *)-1, EFAULT},
  /bionic/libc/kernel/uapi/linux/sched/
types.h 22 struct sched_param { struct
  /external/autotest/client/tools/
setidle.c 16 struct sched_param param = { 0 };
  /external/kernel-headers/original/uapi/linux/sched/
types.h 7 struct sched_param { struct
16 * This is needed because the original struct sched_param can not be
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/
22-1.c 21 struct sched_param param;
23-4.c 26 struct sched_param param;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sched.h 44 struct sched_param { struct
66 int WINPTHREAD_SCHED_API sched_setscheduler(pid_t pid, int pol, const struct sched_param *param);

Completed in 1439 milliseconds

1 2 3 4 5 6 7 8 9