Searched refs:param (Results 1 - 25 of 67) sorted by path

123

/bionic/benchmarks/
H A Dsemaphore_benchmark.cpp88 memset(&param, 0, sizeof(param));
89 pthread_attr_setschedparam(&attr, &param);
96 sched_setscheduler(0, SCHED_IDLE, &param);
102 sched_setscheduler(0, SCHED_OTHER, &param);
114 sched_param param; member in class:SemaphoreFixture
124 sched_setscheduler(0, SCHED_OTHER, &param);
138 param.sched_priority = 1;
139 sched_setscheduler(0, SCHED_FIFO, &param);
144 param
[all...]
/bionic/libc/bionic/
H A Dfts.c32 #include <sys/param.h>
H A Dgetentropy_linux.c26 #include <sys/param.h>
H A Djemalloc_wrapper.cpp17 #include <sys/param.h>
H A Dlibgen.cpp35 #include <sys/param.h>
H A Dmbrtoc32.cpp30 #include <sys/param.h>
H A Dpthread_attr.cpp82 int pthread_attr_setschedparam(pthread_attr_t* attr, const sched_param* param) { argument
83 attr->sched_priority = param->sched_priority;
87 int pthread_attr_getschedparam(const pthread_attr_t* attr, sched_param* param) { argument
88 param->sched_priority = attr->sched_priority;
H A Dpthread_create.cpp98 sched_param param; local
99 param.sched_priority = thread->attr.sched_priority;
100 if (sched_setscheduler(thread->tid, thread->attr.sched_policy, &param) == -1) {
H A Dpthread_getschedparam.cpp34 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) { argument
42 int rc = sched_getparam(thread->tid, param);
H A Dpthread_setschedparam.cpp34 int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) { argument
42 int rc = sched_setscheduler(thread->tid, policy, param);
H A Dwchar.cpp30 #include <sys/param.h>
/bionic/libc/dns/net/
H A Dbase64.c51 #include <sys/param.h>
H A Dgetaddrinfo.c84 #include <sys/param.h>
H A Dgethnamaddr.c57 #include <sys/param.h>
H A Dsethostent.c43 #include <sys/param.h>
/bionic/libc/dns/resolv/
H A Dherror.c64 #include <sys/param.h>
H A Dres_comp.c83 #include <sys/param.h>
H A Dres_data.c32 #include <sys/param.h>
H A Dres_debug.c111 #include <sys/param.h>
H A Dres_init.c86 #include <sys/param.h>
H A Dres_mkquery.c87 #include <sys/param.h>
H A Dres_query.c86 #include <sys/param.h>
H A Dres_send.c89 #include <sys/param.h>
/bionic/libc/include/
H A Dresolv.h31 #include <sys/param.h>
/bionic/libc/include/sys/
H A Dparam.h32 #include <linux/param.h>

Completed in 2737 milliseconds

123