Searched refs:param (Results 1 – 10 of 10) sorted by relevance
/bionic/libc/tools/ |
D | gensyscalls.py | 186 def param_uses_64bits(param): argument 189 param = param.strip() 193 param.startswith("int64_t") or param.startswith("uint64_t") or \ 194 param.startswith("loff_t") or param.startswith("off64_t") or \ 195 param.startswith("long long") or param.startswith("unsigned long long") or 196 param.startswith("signed long long") ): 200 if param.find("*") >= 0: 221 for param in params: 222 if param_uses_64bits(param): 232 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/libc/kernel/common/linux/mtd/ |
D | cfi.h | 226 void (*fixup)(struct mtd_info *mtd, void* param); 227 void* param; member
|
/bionic/libc/bionic/ |
D | pthread.c | 233 struct sched_param param; in _init_thread() local 234 param.sched_priority = thread->attr.sched_priority; in _init_thread() 235 sched_setscheduler(kernel_id, thread->attr.sched_policy, ¶m); in _init_thread() 435 int pthread_attr_setschedparam(pthread_attr_t * attr, struct sched_param const * param) in pthread_attr_setschedparam() argument 437 attr->sched_priority = param->sched_priority; in pthread_attr_setschedparam() 441 int pthread_attr_getschedparam(pthread_attr_t const * attr, struct sched_param * param) in pthread_attr_getschedparam() argument 443 param->sched_priority = attr->sched_priority; in pthread_attr_getschedparam() 719 struct sched_param * param) in pthread_getschedparam() argument 724 int err = sched_getparam(thread->kernel_id, param); in pthread_getschedparam() 735 struct sched_param const * param) in pthread_setschedparam() argument [all …]
|
/bionic/libc/netbsd/isc/ |
D | ev_timers.c | 268 const char *param, in evConfigTimer() argument 280 if (strcmp(param, "rate") == 0) in evConfigTimer() 282 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/private/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/ |
D | SYSCALLS.TXT | 241 int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param) 156 244 int sched_setparam(pid_t pid, const struct sched_param *param) 154 245 int sched_getparam(pid_t pid, struct sched_param *param) 155
|
/bionic/libc/kernel/common/linux/ |
D | wireless.h | 441 struct iw_param param; member
|