/aosp12/bionic/tests/headers/posix/ |
H A D | sched_h.c | 40 TYPE(struct sched_param); in sched_h() 41 STRUCT_MEMBER(struct sched_param, int, sched_priority); in sched_h() 43 STRUCT_MEMBER(struct sched_param, int, sched_ss_low_priority); in sched_h() 44 STRUCT_MEMBER(struct sched_param, struct timespec, sched_ss_repl_period); in sched_h() 45 STRUCT_MEMBER(struct sched_param, struct timespec, sched_ss_init_budget); in sched_h() 46 STRUCT_MEMBER(struct sched_param, int, sched_ss_max_repl); in sched_h() 58 FUNCTION(sched_getparam, int (*f)(pid_t, struct sched_param*)); in sched_h() 61 FUNCTION(sched_setparam, int (*f)(pid_t, const struct sched_param*)); in sched_h() 62 FUNCTION(sched_setscheduler, int (*f)(pid_t, int, const struct sched_param*)); in sched_h()
|
H A D | spawn_h.c | 42 TYPE(struct sched_param*); in spawn_h() 60 FUNCTION(posix_spawnattr_getschedparam, int (*f)(const posix_spawnattr_t*, struct sched_param*)); in spawn_h() 67 FUNCTION(posix_spawnattr_setschedparam, int (*f)(posix_spawnattr_t*, const struct sched_param*)); in spawn_h()
|
H A D | pthread_h.c | 94 FUNCTION(pthread_attr_getschedparam, int (*f)(const pthread_attr_t*, struct sched_param*)); in pthread_h() 103 FUNCTION(pthread_attr_setschedparam, int (*f)(pthread_attr_t*, const struct sched_param*)); in pthread_h() 138 FUNCTION(pthread_getschedparam, int (*f)(pthread_t, int*, struct sched_param*)); in pthread_h() 200 FUNCTION(pthread_setschedparam, int (*f)(pthread_t, int, const struct sched_param*)); in pthread_h()
|
/aosp12/bionic/libc/include/ |
H A D | sched.h | 41 struct sched_param { struct 45 int sched_setscheduler(pid_t __pid, int __policy, const struct sched_param* __param); argument 50 int sched_setparam(pid_t __pid, const struct sched_param* __param); 51 int sched_getparam(pid_t __pid, struct sched_param* __param);
|
H A D | pthread.h | 101 int pthread_attr_getschedparam(const pthread_attr_t* __attr, struct sched_param* __param); 110 int pthread_attr_setschedparam(pthread_attr_t* __attr, const struct sched_param* __param); 168 int pthread_getschedparam(pthread_t __pthread, int* __policy, struct sched_param* __param); 286 int pthread_setschedparam(pthread_t __pthread, int __policy, const struct sched_param* __param);
|
H A D | spawn.h | 75 int posix_spawnattr_setschedparam(posix_spawnattr_t* __attr, const struct sched_param* __param) __I… 76 int posix_spawnattr_getschedparam(const posix_spawnattr_t* __attr, struct sched_param* __param) __I…
|
/aosp12/bionic/libc/bionic/ |
H A D | pthread_setschedparam.cpp | 38 int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) { in pthread_setschedparam() 54 sched_param param = { .sched_priority = priority }; in pthread_setschedprio()
|
H A D | spawn.cpp | 91 sched_param schedparam; 254 int posix_spawnattr_setschedparam(posix_spawnattr_t* attr, const struct sched_param* param) { in posix_spawnattr_setschedparam() 259 int posix_spawnattr_getschedparam(const posix_spawnattr_t* attr, struct sched_param* param) { in posix_spawnattr_getschedparam()
|
H A D | pthread_getschedparam.cpp | 36 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) { in pthread_getschedparam()
|
H A D | pthread_attr.cpp | 118 int pthread_attr_setschedparam(pthread_attr_t* attr, const sched_param* param) { in pthread_attr_setschedparam() 124 int pthread_attr_getschedparam(const pthread_attr_t* attr, sched_param* param) { in pthread_attr_getschedparam()
|
/aosp12/hardware/interfaces/tests/libhwbinder/1.0/default/ |
H A D | ScheduleTest.cpp | 19 struct sched_param param; in threadPri() 26 struct sched_param param; in threadDump()
|
/aosp12/frameworks/native/services/surfaceflinger/ |
H A D | main_surfaceflinger.cpp | 105 struct sched_param origSchedParam; in main() 112 struct sched_param param; in main()
|
/aosp12/system/libhwbinder/vts/performance/ |
H A D | Latency.cpp | 82 sched_param param; in threadGetPri() 89 sched_param param; in threadDumpPri() 136 sched_param param; in threadTransaction()
|
/aosp12/system/core/llkd/ |
H A D | llkd.cpp | 38 struct sched_param param; in main()
|
/aosp12/bionic/libc/kernel/uapi/linux/sched/ |
H A D | types.h | 22 struct sched_param { struct
|
/aosp12/frameworks/native/services/vr/performanced/ |
H A D | performance_service.cpp | 309 struct sched_param param; in OnSetSchedulerPolicy() 370 struct sched_param param; in OnSetSchedulerClass() 435 struct sched_param param; in SetVrAppRenderThread()
|
/aosp12/hardware/interfaces/graphics/composer/2.2/default/ |
H A D | service.cpp | 34 struct sched_param param = {0}; in main()
|
/aosp12/hardware/interfaces/graphics/composer/2.3/default/ |
H A D | service.cpp | 34 struct sched_param param = {0}; in main()
|
/aosp12/hardware/interfaces/graphics/composer/2.4/default/ |
H A D | service.cpp | 34 struct sched_param param = {0}; in main()
|
/aosp12/hardware/qcom/sm8150/display/composer/ |
H A D | service.cpp | 34 struct sched_param param = {0}; in main()
|
/aosp12/hardware/interfaces/graphics/composer/2.1/default/ |
H A D | service.cpp | 37 struct sched_param param = {0}; in main()
|
/aosp12/hardware/qcom/sm7250/display/composer/ |
H A D | service.cpp | 49 struct sched_param param = {0}; in main()
|
/aosp12/frameworks/native/libs/binder/tests/ |
H A D | schd-dbg.cpp | 76 struct sched_param param; in thread_pri() 83 struct sched_param param; in thread_dump() 308 struct sched_param param; in thread_transaction()
|
/aosp12/system/bt/gd/os/linux_generic/ |
H A D | thread.cc | 40 struct sched_param rt_params = {.sched_priority = kRealTimeFifoSchedulingPriority}; in run()
|
/aosp12/system/bt/utils/src/ |
H A D | bt_utils.cc | 144 struct sched_param rt_params; in raise_priority_a2dp()
|