Home
last modified time | relevance | path

Searched refs:param (Results 1 – 24 of 24) sorted by relevance

/bionic/benchmarks/
Dsemaphore_benchmark.cpp100 struct sched_param param = { 0, }; in Run() local
101 pthread_attr_setschedparam(&attr, &param); in Run()
108 sched_setscheduler((pid_t)0, SCHED_IDLE, &param); in Run()
113 sched_setscheduler((pid_t)0, SCHED_OTHER, &param); in Run()
126 param.sched_priority = 1; in Run()
127 sched_setscheduler((pid_t)0, SCHED_FIFO, &param); in Run()
131 param.sched_priority = 0; in Run()
132 sched_setscheduler((pid_t)0, SCHED_IDLE, &param); in Run()
134 sched_setscheduler((pid_t)0, SCHED_OTHER, &param); in Run()
/bionic/libc/bionic/
Dpthread_setschedparam.cpp34 int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) { in pthread_setschedparam() argument
42 int rc = sched_setscheduler(thread->tid, policy, param); in pthread_setschedparam()
Dpthread_getschedparam.cpp34 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) { in pthread_getschedparam() argument
42 int rc = sched_getparam(thread->tid, param); in pthread_getschedparam()
Dpthread_attr.cpp82 int pthread_attr_setschedparam(pthread_attr_t* attr, const sched_param* param) { in pthread_attr_setschedparam() argument
83 attr->sched_priority = param->sched_priority; in pthread_attr_setschedparam()
87 int pthread_attr_getschedparam(const pthread_attr_t* attr, sched_param* param) { in pthread_attr_getschedparam() argument
88 param->sched_priority = attr->sched_priority; in pthread_attr_getschedparam()
Dpthread_create.cpp104 sched_param param; in __init_thread() local
105 param.sched_priority = thread->attr.sched_priority; in __init_thread()
106 if (sched_setscheduler(thread->tid, thread->attr.sched_policy, &param) == -1) { in __init_thread()
/bionic/libc/tools/
Dgensyscalls.py205 def param_uses_64bits(param): argument
208 param = param.strip()
212 param.startswith("int64_t") or param.startswith("uint64_t") or \
213 param.startswith("loff_t") or param.startswith("off64_t") or \
214 param.startswith("long long") or param.startswith("unsigned long long") or
215 param.startswith("signed long long") ):
219 if param.find("*") >= 0:
241 for param in params:
242 if param_uses_64bits(param):
253 for param in params:
[all …]
/bionic/libc/kernel/uapi/drm/
Domap_drm.h25 uint64_t param; member
Dqxl_drm.h90 uint64_t param; member
Dmsm_drm.h40 uint32_t param; member
Dr128_drm.h276 int param; member
Dmga_drm.h291 int param; member
Dvmwgfx_drm.h79 uint32_t param; member
Di915_drm.h326 int param; member
336 int param; member
Dradeon_drm.h684 int param; member
717 unsigned int param; member
/bionic/libc/kernel/uapi/linux/
Dscc.h140 unsigned param; member
Dcyclades.h365 unsigned long param[QUEUE_SIZE]; member
Dwireless.h452 struct iw_param param; member
/bionic/libc/kernel/uapi/sound/
Dasequencer.h142 unsigned int param; member
192 } param; member
/bionic/libc/upstream-netbsd/lib/libc/isc/
Dev_timers.c280 const char *param, in evConfigTimer() argument
292 if (strcmp(param, "rate") == 0) in evConfigTimer()
294 else if (strcmp(param, "interval") == 0) in evConfigTimer()
/bionic/libc/kernel/uapi/rdma/
Drdma_user_cm.h269 } param; member
/bionic/libc/upstream-netbsd/lib/libc/include/isc/
Deventlib.h178 int evConfigTimer __P((evContext, evTimerID, const char *param,
/bionic/tests/
Dpthread_test.cpp486 sched_param param; in TEST() local
487 ASSERT_EQ(ESRCH, pthread_getschedparam(dead_thread, &policy, &param)); in TEST()
495 sched_param param; in TEST() local
496 ASSERT_EQ(ESRCH, pthread_setschedparam(dead_thread, policy, &param)); in TEST()
/bionic/libc/kernel/tools/
Dcpp.py573 param = self.tokens[j:k]
574 params.append(param)
674 for param in arg[1]:
676 for tok in param:
/bionic/libc/
DSYSCALLS.TXT267 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