Home
last modified time | relevance | path

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

/bionic/benchmarks/
Dsemaphore_benchmark.cpp88 memset(&param, 0, sizeof(param)); in SetUp()
89 pthread_attr_setschedparam(&attr, &param); in SetUp()
96 sched_setscheduler(0, SCHED_IDLE, &param); in SetUp()
102 sched_setscheduler(0, SCHED_OTHER, &param); in ~SemaphoreFixture()
114 sched_param param; member in SemaphoreFixture
124 sched_setscheduler(0, SCHED_OTHER, &param); in BENCHMARK_F()
138 param.sched_priority = 1; in BENCHMARK_F()
139 sched_setscheduler(0, SCHED_FIFO, &param); in BENCHMARK_F()
144 param.sched_priority = 0; in BENCHMARK_F()
145 sched_setscheduler(0, SCHED_IDLE, &param); in BENCHMARK_F()
/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.cpp98 sched_param param; in __init_thread() local
99 param.sched_priority = thread->attr.sched_priority; in __init_thread()
100 if (sched_setscheduler(thread->tid, thread->attr.sched_policy, &param) == -1) { in __init_thread()
/bionic/libc/tools/
Dgensyscalls.py218 def param_uses_64bits(param): argument
221 param = param.strip()
225 param.startswith("int64_t") or param.startswith("uint64_t") or \
226 param.startswith("loff_t") or param.startswith("off64_t") or \
227 param.startswith("long long") or param.startswith("unsigned long long") or
228 param.startswith("signed long long") ):
232 if param.find("*") >= 0:
254 for param in params:
255 if param_uses_64bits(param):
266 for param in params:
[all …]
/bionic/libc/kernel/uapi/drm/
Domap_drm.h25 uint64_t param; member
Dqxl_drm.h90 uint64_t param; member
Dvirtgpu_drm.h54 uint64_t param; member
Dmsm_drm.h40 __u32 param; member
Di915_drm.h341 __s32 param; member
351 int param; member
755 __u64 param; member
Dr128_drm.h277 int param; member
Dmga_drm.h291 int param; member
Dvmwgfx_drm.h82 uint32_t 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.h144 unsigned int param; member
194 } 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/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.TXT278 int sched_setscheduler(pid_t pid, int policy, const struct sched_param* param) all
281 int sched_setparam(pid_t pid, const struct sched_param* param) all
282 int sched_getparam(pid_t pid, struct sched_param* param) all
/bionic/tests/
Dpthread_test.cpp484 sched_param param; in TEST() local
485 ASSERT_EQ(ESRCH, pthread_getschedparam(dead_thread, &policy, &param)); in TEST()
493 sched_param param; in TEST() local
494 ASSERT_EQ(ESRCH, pthread_setschedparam(dead_thread, policy, &param)); in TEST()