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.cpp72 int pthread_attr_setschedpolicy(pthread_attr_t* attr, int policy) { argument
73 attr->sched_policy = policy;
77 int pthread_attr_getschedpolicy(const pthread_attr_t* attr, int* policy) { argument
78 *policy = attr->sched_policy;
/bionic/libc/kernel/uapi/linux/netfilter_bridge/
H A Debtables.h71 int policy; member in struct:ebt_entries
/bionic/tests/
H A Dpthread_test.cpp483 int policy; local
485 ASSERT_EQ(ESRCH, pthread_getschedparam(dead_thread, &policy, &param));
492 int policy = 0; local
494 ASSERT_EQ(ESRCH, pthread_setschedparam(dead_thread, policy, &param));
/bionic/libc/kernel/uapi/linux/
H A Dxfrm.h452 struct xfrm_userpolicy_info policy; member in struct:xfrm_user_acquire

Completed in 215 milliseconds