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

12345

/bionic/libc/kernel/uapi/asm-arm/asm/
H A Dparam.h19 #include <asm-generic/param.h>
/bionic/libc/kernel/uapi/asm-x86/asm/
H A Dparam.h19 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/arm/kernel_uapi_asm-arm/asm/
H A Dparam.h19 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/common/kernel_uapi/asm-arm/asm/
H A Dparam.h19 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/common/kernel_uapi/asm-x86/asm/
H A Dparam.h19 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/x86/kernel_uapi_asm-x86/asm/
H A Dparam.h19 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/x86_64/kernel_uapi_asm-x86/asm/
H A Dparam.h19 #include <asm-generic/param.h>
/bionic/libc/kernel/uapi/linux/
H A Dparam.h21 #include <asm/param.h>
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dparam.h21 #include <asm/param.h>
/bionic/libc/kernel/uapi/asm-arm64/asm/
H A Dparam.h22 #include <asm-generic/param.h>
/bionic/libc/kernel/uapi/asm-mips/asm/
H A Dparam.h22 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/arm64/kernel_uapi_asm-arm64/asm/
H A Dparam.h22 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/common/kernel_uapi/asm-arm64/asm/
H A Dparam.h22 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/common/kernel_uapi/asm-mips/asm/
H A Dparam.h22 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/mips/kernel_uapi_asm-mips/asm/
H A Dparam.h22 #include <asm-generic/param.h>
/bionic/libc/versioner-dependencies/mips64/kernel_uapi_asm-mips/asm/
H A Dparam.h22 #include <asm-generic/param.h>
/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);
105 sched_setscheduler(0, SCHED_OTHER, &param);
118 sched_param param; member in class:SemaphoreFixture
129 sched_setscheduler(0, SCHED_OTHER, &param);
143 param.sched_priority = 1;
144 sched_setscheduler(0, SCHED_FIFO, &param);
149 param
[all...]
/bionic/libc/bionic/
H A Dpthread_getschedparam.cpp34 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) { argument
40 if (sched_getparam(tid, param) == -1) return errno;
H A Dpthread_setschedparam.cpp34 int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) { argument
40 return (sched_setscheduler(tid, policy, param) == -1) ? errno : 0;
H A Djemalloc_wrapper.cpp18 #include <sys/param.h>
51 int je_mallopt(int param, int value) { argument
53 if (param == M_DECAY_TIME) {
/bionic/libc/upstream-openbsd/lib/libc/net/
H A Dinet_lnaof.c31 #include <sys/param.h>
H A Dinet_netof.c31 #include <sys/param.h>
H A Dinet_makeaddr.c31 #include <sys/param.h>
/bionic/libc/include/sys/
H A Dparam.h33 #include <linux/param.h>
/bionic/libc/tools/
H A Dgensyscalls.py218 def param_uses_64bits(param):
221 param = param.strip()
222 # First, check that the param type begins with one of the known
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
[all...]

Completed in 1802 milliseconds

12345