HomeSort by relevance Sort by last modified time
    Searched defs:prio (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /bionic/libc/upstream-netbsd/lib/libc/gen/
nice.c 58 int prio; local
61 prio = getpriority(PRIO_PROCESS, 0);
62 if (prio == -1 && errno)
64 if (setpriority(PRIO_PROCESS, 0, prio + incr) == -1) {
  /external/strace/
swapon.c 10 unsigned int prio = flags & SWAP_FLAG_PRIO_MASK; local
17 tprintf("|%u", prio);
19 tprintf("%u", prio);
  /system/libhidl/transport/include/hidl/
Static.h 34 int prio; member in struct:android::hardware::details::SchedPrio
  /external/compiler-rt/test/msan/Linux/
syscalls.cc 78 int prio = 0; local
79 __sanitizer_syscall_post_mq_timedreceive(kFortyTwo, 5, buf, sizeof(buf), &prio, 0);
81 assert(__msan_test_shadow(&prio, sizeof(prio)) == -1);
  /external/toybox/toys/other/
ionice.c 55 int prio = ((int)TT.class << 13) | (int)TT.level; local
57 return syscall(__NR_ioprio_set, 1, (int)TT.pid, prio);
65 xprintf("%s: prio %d\n",
85 xprintf("Pid %ld, class %s (%ld), prio %d\n",
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebt_vlan.h 29 __u8 prio; member in struct:ebt_vlan_info
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebt_vlan.h 15 __u8 prio; /* VLAN User Priority {0-7} */ member in struct:ebt_vlan_info
  /external/libnl/python/netlink/route/qdisc/
htb.py 95 def prio(self): member in class:HTBClass
98 @prio.setter
99 def prio(self, value): member in class:HTBClass
123 ret = ' {t|prio} {t|rate}'
  /external/linux-kselftest/tools/testing/selftests/tc-testing/
tdc_batch.py 22 parser.add_argument("-p", "--prio",
23 help="all filters have different prio",
42 prio = "prio 1" variable
43 if args.prio:
44 prio = "" variable
57 (device, prio, skip, src_mac, dst_mac, share_action))
  /external/ltp/testcases/kernel/syscalls/mq_timedreceive/
mq_timedreceive01.c 59 .prio = MQ_PRIO_MAX - 1,
138 unsigned int prio; local
150 send_msg(*tc->fd, tc->len, tc->prio);
155 TEST(mq_timedreceive(*tc->fd, rmsg, len, &prio, tc->rq));
180 if (tc->prio != prio) {
181 tst_res(TFAIL, "mq_timedreceive wrong prio %d, expected %d",
182 prio, tc->prio);
196 TEST_RETURN, prio, len)
    [all...]
  /external/ltp/testcases/kernel/syscalls/mq_timedsend/
mq_timedsend01.c 54 .prio = MQ_PRIO_MAX - 1,
91 .prio = MQ_PRIO_MAX,
143 unsigned int prio; local
156 send_msg(*tc->fd, tc->len, tc->prio);
159 TEST(mq_timedsend(*tc->fd, smsg, tc->len, tc->prio, tc->rq));
178 TEST(mq_timedreceive(*tc->fd, rmsg, len, &prio, tc->rq));
204 if (tc->prio != prio) {
205 tst_res(TFAIL, "mq_timedreceive wrong prio %d, expected %d",
206 prio, tc->prio)
    [all...]
  /external/ltp/testcases/kernel/syscalls/sched_getscheduler/
sched_getscheduler01.c 60 int prio; member in struct:test_case_t
90 param.sched_priority = TC[i].prio;
  /external/ltp/testcases/kernel/syscalls/utils/
mq.h 72 unsigned int prio; local
83 mq_receive(fd, rmsg, MAX_MSGSIZE, &prio);
mq_timed.h 26 unsigned int prio; member in struct:test_case
52 static void send_msg(int fd, int len, int prio)
54 if (mq_timedsend(fd, smsg, len, prio,
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_notify/
1-1.c 59 unsigned int prio = 1; local
79 if (mq_send(mqdes, s_msg_ptr, MSG_SIZE, prio) == -1) {
3-1.c 59 unsigned int prio = 1; local
82 if (mq_send(mqdes, s_msg_ptr, MSG_SIZE, prio) == -1) {
4-1.c 56 unsigned int prio = 1; local
76 if (mq_send(mqdes, s_msg_ptr, MSG_SIZE, prio) == -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_receive/
12-1.c 37 int prio = 1; local
52 if (mq_send(mqdes, msgptr, strlen(msgptr), prio) != 0) {
2-1.c 36 int prio = 1; local
51 if (mq_send(mqdes, msgptr, strlen(msgptr), prio) != 0) {
5-1.c 45 int prio = 1; local
96 if (mq_send(mqdes, msgptr, strlen(msgptr), prio) == -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_timedreceive/
15-1.c 38 int prio = 1; local
54 if (mq_send(mqdes, msgptr, strlen(msgptr), prio) != 0) {
2-1.c 37 int prio = 1; local
53 if (mq_send(mqdes, msgptr, strlen(msgptr), prio) != 0) {
  /external/toybox/toys/pending/
klogd.c 16 -c N Print to console messages more urgent than prio N (1-8)"
66 int prio, size, used = 0; local
100 prio = LOG_INFO; //we dont know priority, mark it INFO
103 if (line_start) prio = (int)strtoul(line_start, &line_start, 10);
106 if (*line_start) syslog(prio, "%s", line_start);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_vlan.h 14 __u8 prio; /* VLAN User Priority {0-7} */ member in struct:ebt_vlan_info
  /system/core/liblog/tests/
log_read_test.cpp 48 static const char prio = ANDROID_LOG_DEBUG; local
49 ASSERT_LT(0, __android_log_write(prio, tag, buf.c_str()));
52 buf = std::string(&prio, sizeof(prio)) + tag + std::string("", 1) + buf +

Completed in 550 milliseconds

1 2 3 4 5