/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() 105 sched_setscheduler(0, SCHED_OTHER, ¶m); in ~SemaphoreFixture() 118 sched_param param; member in SemaphoreFixture 129 sched_setscheduler(0, SCHED_OTHER, ¶m); in BENCHMARK_F() 143 param.sched_priority = 1; in BENCHMARK_F() 144 sched_setscheduler(0, SCHED_FIFO, ¶m); in BENCHMARK_F() 149 param.sched_priority = 0; in BENCHMARK_F() 150 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 40 return (sched_setscheduler(tid, policy, param) == -1) ? errno : 0; in pthread_setschedparam()
|
D | pthread_getschedparam.cpp | 34 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) { in pthread_getschedparam() argument 40 if (sched_getparam(tid, param) == -1) return errno; in pthread_getschedparam()
|
D | jemalloc_wrapper.cpp | 51 int je_mallopt(int param, int value) { in je_mallopt() argument 53 if (param == M_DECAY_TIME) { in je_mallopt()
|
D | pthread_attr.cpp | 83 int pthread_attr_setschedparam(pthread_attr_t* attr, const sched_param* param) { in pthread_attr_setschedparam() argument 84 attr->sched_priority = param->sched_priority; in pthread_attr_setschedparam() 88 int pthread_attr_getschedparam(const pthread_attr_t* attr, sched_param* param) { in pthread_attr_getschedparam() argument 89 param->sched_priority = attr->sched_priority; in pthread_attr_getschedparam()
|
D | pthread_create.cpp | 122 sched_param param; in __init_thread() local 123 param.sched_priority = thread->attr.sched_priority; in __init_thread() 124 if (sched_setscheduler(thread->tid, thread->attr.sched_policy, ¶m) == -1) { in __init_thread()
|
D | malloc_common.cpp | 105 extern "C" int mallopt(int param, int value) { in mallopt() argument 108 return _mallopt(param, value); in mallopt() 110 return Malloc(mallopt)(param, value); in mallopt()
|
/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/linker/ |
D | linker_utils.cpp | 44 for (const auto& param : params) { in format_string() local 45 const std::string& token = param.first; in format_string() 46 const std::string& replacement = param.second; in format_string()
|
/bionic/libc/kernel/uapi/drm/ |
D | omap_drm.h | 26 uint64_t param; member
|
D | qxl_drm.h | 77 __u64 param; member
|
D | virtgpu_drm.h | 48 __u64 param; member
|
D | msm_drm.h | 42 __u32 param; member
|
D | etnaviv_drm.h | 51 __u32 param; member
|
D | vc4_drm.h | 136 __u32 param; member
|
D | i915_drm.h | 289 __s32 param; member 297 int param; member 627 __u64 param; member
|
D | r128_drm.h | 228 int param; member
|
D | mga_drm.h | 239 int param; member
|
/bionic/libc/kernel/uapi/linux/ |
D | scc.h | 116 unsigned param; member
|
D | cyclades.h | 296 unsigned long param[QUEUE_SIZE]; member
|
/bionic/libc/kernel/uapi/sound/ |
D | asequencer.h | 119 unsigned int param; member 159 } 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 | 224 } param; member
|
/bionic/libc/malloc_debug/ |
D | malloc_debug.cpp | 80 int debug_mallopt(int param, int value); 643 int debug_mallopt(int param, int value) { in debug_mallopt() argument 644 return g_dispatch->mallopt(param, value); in debug_mallopt()
|
/bionic/libc/upstream-netbsd/lib/libc/include/isc/ |
D | eventlib.h | 178 int evConfigTimer __P((evContext, evTimerID, const char *param,
|