/bionic/libc/bionic/ |
D | pthread_setschedparam.cpp | 34 int pthread_setschedparam(pthread_t t, int policy, struct sched_param const* 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 | 76 int pthread_attr_setschedparam(pthread_attr_t * attr, struct sched_param const* param) { in pthread_attr_setschedparam() argument 77 attr->sched_priority = param->sched_priority; in pthread_attr_setschedparam() 81 int pthread_attr_getschedparam(pthread_attr_t const* attr, struct sched_param* param) { in pthread_attr_getschedparam() argument 82 param->sched_priority = attr->sched_priority; in pthread_attr_getschedparam()
|
D | pthread_create.cpp | 102 struct sched_param param; in _init_thread() local 103 param.sched_priority = thread->attr.sched_priority; in _init_thread() 104 if (sched_setscheduler(thread->tid, thread->attr.sched_policy, ¶m) == -1) { in _init_thread()
|
/bionic/libc/tools/ |
D | gensyscalls.py | 141 def param_uses_64bits(param): argument 144 param = param.strip() 148 param.startswith("int64_t") or param.startswith("uint64_t") or \ 149 param.startswith("loff_t") or param.startswith("off64_t") or \ 150 param.startswith("long long") or param.startswith("unsigned long long") or 151 param.startswith("signed long long") ): 155 if param.find("*") >= 0: 176 for param in params: 177 if param_uses_64bits(param): 187 for param in params: [all …]
|
/bionic/libc/include/ |
D | pthread.h | 123 int pthread_attr_setschedparam(pthread_attr_t * attr, struct sched_param const * param); 124 int pthread_attr_getschedparam(pthread_attr_t const * attr, struct sched_param * param); 153 struct sched_param * param); 155 struct sched_param const * param);
|
/bionic/tests/ |
D | pthread_test.cpp | 293 sched_param param; in TEST() local 294 ASSERT_EQ(ESRCH, pthread_getschedparam(dead_thread, &policy, ¶m)); in TEST() 302 sched_param param; in TEST() local 303 ASSERT_EQ(ESRCH, pthread_setschedparam(dead_thread, policy, ¶m)); in TEST()
|
/bionic/libc/kernel/common/linux/mtd/ |
D | cfi.h | 226 void (*fixup)(struct mtd_info *mtd, void* param); 227 void* param; member
|
/bionic/libc/upstream-netbsd/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/tools/ |
D | cpp.py | 737 for param in self.params: 738 result += "%s%s" % (comma, repr(param)) 746 for param in self.params: 747 result += "%s%s" % (comma, str(param)) 1148 param = self.tok[j:k] 1149 params.append( param ) 1271 for param in arg[1]: 1273 for tok in param: 1417 for param in params: 1418 params2.append( self.removePrefixedNode(param,prefix,names) )
|
/bionic/libc/upstream-netbsd/libc/include/isc/ |
D | eventlib.h | 178 int evConfigTimer __P((evContext, evTimerID, const char *param,
|
/bionic/libc/kernel/arch-mips/asm/ |
D | sgiarcs.h | 269 struct param { struct
|
/bionic/libc/kernel/common/linux/ |
D | wireless.h | 441 struct iw_param param; member
|
/bionic/libc/ |
D | SYSCALLS.TXT | 271 int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param) 1 274 int sched_setparam(pid_t pid, const struct sched_param *param) 1 275 int sched_getparam(pid_t pid, struct sched_param *param) 1
|