Home
last modified time | relevance | path

Searched refs:param (Results 1 – 14 of 14) sorted by relevance

/bionic/libc/bionic/
Dpthread_setschedparam.cpp34 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()
Dpthread_getschedparam.cpp34 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()
Dpthread_attr.cpp76 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()
Dpthread_create.cpp102 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, &param) == -1) { in _init_thread()
/bionic/libc/tools/
Dgensyscalls.py141 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/
Dpthread.h123 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/
Dpthread_test.cpp293 sched_param param; in TEST() local
294 ASSERT_EQ(ESRCH, pthread_getschedparam(dead_thread, &policy, &param)); in TEST()
302 sched_param param; in TEST() local
303 ASSERT_EQ(ESRCH, pthread_setschedparam(dead_thread, policy, &param)); in TEST()
/bionic/libc/kernel/common/linux/mtd/
Dcfi.h226 void (*fixup)(struct mtd_info *mtd, void* param);
227 void* param; member
/bionic/libc/upstream-netbsd/libc/isc/
Dev_timers.c280 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/
Dcpp.py737 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/
Deventlib.h178 int evConfigTimer __P((evContext, evTimerID, const char *param,
/bionic/libc/kernel/arch-mips/asm/
Dsgiarcs.h269 struct param { struct
/bionic/libc/kernel/common/linux/
Dwireless.h441 struct iw_param param; member
/bionic/libc/
DSYSCALLS.TXT271 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