Searched defs:policy (Results 1 - 6 of 6) sorted by relevance

/bionic/libc/bionic/
H A Dpthread_getschedparam.cpp34 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) { argument
46 *policy = sched_getscheduler(thread->tid);
H A Dpthread_setschedparam.cpp34 int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) { argument
42 int rc = sched_setscheduler(thread->tid, policy, param);
H A Dpthread_attr.cpp71 int pthread_attr_setschedpolicy(pthread_attr_t* attr, int policy) { argument
72 attr->sched_policy = policy;
76 int pthread_attr_getschedpolicy(const pthread_attr_t* attr, int* policy) { argument
77 *policy = attr->sched_policy;
/bionic/libc/kernel/uapi/linux/netfilter_bridge/
H A Debtables.h74 int policy; member in struct:ebt_entries
/bionic/tests/
H A Dpthread_test.cpp464 int policy; local
466 ASSERT_EQ(ESRCH, pthread_getschedparam(dead_thread, &policy, &param));
473 int policy = 0; local
475 ASSERT_EQ(ESRCH, pthread_setschedparam(dead_thread, policy, &param));
/bionic/libc/kernel/uapi/linux/
H A Dxfrm.h440 struct xfrm_userpolicy_info policy; member in struct:xfrm_user_acquire

Completed in 276 milliseconds