/bionic/benchmarks/ |
D | semaphore_benchmark.cpp | 88 memset(¶m, 0, sizeof(param)); in SetUp() 89 pthread_attr_setschedparam(&attr, ¶m); in SetUp() 96 sched_setscheduler(0, SCHED_IDLE, ¶m); in SetUp() 102 sched_setscheduler(0, SCHED_OTHER, ¶m); in ~SemaphoreFixture() 114 sched_param param; member in SemaphoreFixture 124 sched_setscheduler(0, SCHED_OTHER, ¶m); in BENCHMARK_F() 138 param.sched_priority = 1; in BENCHMARK_F() 139 sched_setscheduler(0, SCHED_FIFO, ¶m); in BENCHMARK_F() 144 param.sched_priority = 0; in BENCHMARK_F() 145 sched_setscheduler(0, SCHED_IDLE, ¶m); in BENCHMARK_F()
|
/bionic/libc/bionic/ |
D | pthread_setschedparam.cpp | 34 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()
|
D | pthread_getschedparam.cpp | 34 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()
|
D | pthread_attr.cpp | 82 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()
|
D | pthread_create.cpp | 98 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, ¶m) == -1) { in __init_thread()
|
/bionic/libc/tools/ |
D | gensyscalls.py | 218 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/ |
D | omap_drm.h | 25 uint64_t param; member
|
D | qxl_drm.h | 90 uint64_t param; member
|
D | virtgpu_drm.h | 54 uint64_t param; member
|
D | msm_drm.h | 40 __u32 param; member
|
D | i915_drm.h | 341 __s32 param; member 351 int param; member 755 __u64 param; member
|
D | r128_drm.h | 277 int param; member
|
D | mga_drm.h | 291 int param; member
|
D | vmwgfx_drm.h | 82 uint32_t param; member
|
D | radeon_drm.h | 684 int param; member 717 unsigned int param; member
|
/bionic/libc/kernel/uapi/linux/ |
D | scc.h | 140 unsigned param; member
|
D | cyclades.h | 365 unsigned long param[QUEUE_SIZE]; member
|
D | wireless.h | 452 struct iw_param param; member
|
/bionic/libc/kernel/uapi/sound/ |
D | asequencer.h | 144 unsigned int param; member 194 } param; member
|
/bionic/libc/upstream-netbsd/lib/libc/isc/ |
D | ev_timers.c | 280 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/ |
D | rdma_user_cm.h | 269 } param; member
|
/bionic/libc/upstream-netbsd/lib/libc/include/isc/ |
D | eventlib.h | 178 int evConfigTimer __P((evContext, evTimerID, const char *param,
|
/bionic/libc/kernel/tools/ |
D | cpp.py | 573 param = self.tokens[j:k] 574 params.append(param) 674 for param in arg[1]: 676 for tok in param:
|
/bionic/libc/ |
D | SYSCALLS.TXT | 278 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/ |
D | pthread_test.cpp | 484 sched_param param; in TEST() local 485 ASSERT_EQ(ESRCH, pthread_getschedparam(dead_thread, &policy, ¶m)); in TEST() 493 sched_param param; in TEST() local 494 ASSERT_EQ(ESRCH, pthread_setschedparam(dead_thread, policy, ¶m)); in TEST()
|