Searched refs:sched_param (Results 1 – 9 of 9) sorted by relevance
/bionic/libc/bionic/ |
D | pthread_setschedparam.cpp | 34 int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) { in pthread_setschedparam()
|
D | pthread_getschedparam.cpp | 34 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) { in pthread_getschedparam()
|
D | pthread_attr.cpp | 82 int pthread_attr_setschedparam(pthread_attr_t* attr, const sched_param* param) { in pthread_attr_setschedparam() 87 int pthread_attr_getschedparam(const pthread_attr_t* attr, sched_param* param) { in pthread_attr_getschedparam()
|
D | pthread_create.cpp | 104 sched_param param; in __init_thread()
|
/bionic/libc/include/ |
D | sched.h | 40 struct sched_param { struct 44 extern int sched_setscheduler(pid_t, int, const struct sched_param*); argument 49 extern int sched_setparam(pid_t, const struct sched_param*); 50 extern int sched_getparam(pid_t, struct sched_param*);
|
D | pthread.h | 121 int pthread_attr_getschedparam(const pthread_attr_t*, struct sched_param*) __nonnull((1, 2)); 129 int pthread_attr_setschedparam(pthread_attr_t*, const struct sched_param*) __nonnull((1, 2)); 159 int pthread_getschedparam(pthread_t, int*, struct sched_param*) __nonnull((2, 3)); 215 int pthread_setschedparam(pthread_t, int, const struct sched_param*) __nonnull((3));
|
/bionic/benchmarks/ |
D | semaphore_benchmark.cpp | 100 struct sched_param param = { 0, }; in Run()
|
/bionic/libc/ |
D | SYSCALLS.TXT | 267 int sched_setscheduler(pid_t pid, int policy, const struct sched_param* param) all 270 int sched_setparam(pid_t pid, const struct sched_param* param) all 271 int sched_getparam(pid_t pid, struct sched_param* param) all
|
/bionic/tests/ |
D | pthread_test.cpp | 486 sched_param param; in TEST() 495 sched_param param; in TEST()
|