Searched defs:prio (Results 1 - 25 of 59) sorted by relevance

123

/external/android-clat/
H A Dlogging.c27 * prio - the log message priority
31 void logmsg(int prio, const char *fmt, ...) { argument
35 __android_log_vprint(prio, "clatd", fmt, ap);
41 * prio - the log message priority
46 void logmsg_dbg(int prio, const char *fmt, ...) { argument
50 __android_log_vprint(prio, "clatd", fmt, ap);
54 void logmsg_dbg(__attribute__((unused)) int prio, __attribute__((unused)) const char *fmt, ...) {} argument
/external/webrtc/src/system_wrappers/source/
H A Dthread.cc21 ThreadObj obj, ThreadPriority prio,
25 return new ThreadWindows(func, obj, prio, threadName);
27 return ThreadPosix::Create(func, obj, prio, threadName);
20 CreateThread(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio, const char* threadName) argument
H A Dthread_win.cc23 ThreadPriority prio, const char* threadName)
30 _prio(prio),
22 ThreadWindows(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio, const char* threadName) argument
H A Dthread_posix.cc78 ThreadPriority prio, const char* threadName)
80 ThreadPosix* ptr = new ThreadPosix(func, obj, prio, threadName);
95 ThreadPriority prio, const char* threadName)
101 _prio(prio),
77 Create(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio, const char* threadName) argument
94 ThreadPosix(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio, const char* threadName) argument
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_setschedparam.c73 int prio; local
78 prio = priority;
81 if (prio < sched_get_priority_min (policy) ||
82 prio > sched_get_priority_max (policy))
92 if (THREAD_PRIORITY_IDLE < prio && THREAD_PRIORITY_LOWEST > prio)
94 prio = THREAD_PRIORITY_LOWEST;
96 else if (THREAD_PRIORITY_TIME_CRITICAL > prio
97 && THREAD_PRIORITY_HIGHEST < prio)
99 prio
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dthread.cc22 ThreadObj obj, ThreadPriority prio,
25 return new ThreadWindows(func, obj, prio, thread_name);
27 return ThreadPosix::Create(func, obj, prio, thread_name);
21 CreateThread(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio, const char* thread_name) argument
H A Dthread_win.cc24 ThreadPriority prio, const char* thread_name)
31 prio_(prio),
23 ThreadWindows(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio, const char* thread_name) argument
H A Dthread_posix.cc101 ThreadPriority prio,
103 ThreadPosix* ptr = new ThreadPosix(func, obj, prio, thread_name);
116 ThreadPriority prio, const char* thread_name)
122 prio_(prio),
100 Create(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio, const char* thread_name) argument
115 ThreadPosix(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio, const char* thread_name) argument
/external/compiler-rt/test/msan/Linux/
H A Dsyscalls.cc77 int prio = 0; local
78 __sanitizer_syscall_post_mq_timedreceive(kFortyTwo, 5, buf, sizeof(buf), &prio, 0);
80 assert(__msan_test_shadow(&prio, sizeof(prio)) == -1);
/external/chromium_org/cc/resources/
H A Dtile_priority.cc86 scoped_ptr<base::Value> TreePriorityAsValue(TreePriority prio) { argument
87 switch (prio) {
98 DCHECK(false) << "Unrecognized priority value " << prio;
/external/kernel-headers/original/uapi/linux/netfilter_bridge/
H A Debt_vlan.h14 __u8 prio; /* VLAN User Priority {0-7} */ member in struct:ebt_vlan_info
/external/libnl/src/cls/
H A Dutils.c36 uint32_t prio = parse_u32(arg); local
37 rtnl_cls_set_prio(cls, prio);
/external/libnl/src/
H A Ddisabled-nl-qdisc-add.c14 #include <netlink/route/sch/prio.h>
98 int prio, band; local
100 prio = rtnl_str2prio(argv[i]);
101 if (prio < 0 || prio > sizeof(map)/sizeof(map[0])) {
109 map[prio] = band;
121 fprintf(stderr, "Usage: ... prio bands <nbands> map MAP\n"
122 "MAP := <prio> <band>\n");
169 else if (!strcasecmp(argv[4], "prio"))
/external/chromium_org/third_party/hwcplus/src/
H A Dhwcplus_util.c15 static int default_log_fn(int prio, const char* tag, const char* msg);
49 static int default_log_fn(int prio, const char* tag, const char* msg) { argument
50 fprintf(stderr, "<%d> %s %s\n", prio, tag, msg);
53 int __android_log_write(int prio, const char* tag, const char* msg) { argument
54 hwcplus_log_fn(prio, tag, msg);
57 int __android_log_print(int prio, const char* tag, const char* fmt, ...) { argument
65 return __android_log_write(prio, tag, buf);
/external/wpa_supplicant_8/hostapd/src/rsn_supp/
H A Dpreauth.h24 int prio, int preauth);
62 int prio, int preauth)
60 pmksa_candidate_add(struct wpa_sm *sm, const u8 *bssid, int prio, int preauth) argument
H A Dpreauth.c344 * @prio: Priority (the smaller number, the higher priority)
352 int prio, int preauth)
379 if (prio < PMKID_CANDIDATE_PRIO_SCAN)
380 cand->priority = prio;
386 cand->priority = prio;
403 "candidate " MACSTR " prio %d", MAC2STR(bssid), prio);
351 pmksa_candidate_add(struct wpa_sm *sm, const u8 *bssid, int prio, int preauth) argument
/external/wpa_supplicant_8/src/rsn_supp/
H A Dpreauth.h24 int prio, int preauth);
62 int prio, int preauth)
60 pmksa_candidate_add(struct wpa_sm *sm, const u8 *bssid, int prio, int preauth) argument
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/
H A Dpreauth.h24 int prio, int preauth);
62 int prio, int preauth)
60 pmksa_candidate_add(struct wpa_sm *sm, const u8 *bssid, int prio, int preauth) argument
/external/iproute2/tc/
H A Dtc_filter.c56 __u32 prio = 0; local
106 if (prio)
108 if (get_u32(&prio, *argv, 0))
136 req.t.tcm_info = TC_H_MAKE(prio<<16, protocol);
230 __u32 prio = TC_H_MAJ(t->tcm_info)>>16; local
238 if (!filter_prio || filter_prio != prio) {
239 if (prio)
240 fprintf(fp, "pref %u ", prio);
267 __u32 prio = 0; local
303 if (prio)
[all...]
H A Dm_action.c178 int prio = 0; local
224 addattr_l(n, MAX_MSG, ++prio, NULL, 0);
377 int prio = 0; local
454 addattr_l(&req.n, MAX_MSG, ++prio, NULL, 0);
525 int ret = 0, prio = 0, msg_size = 0; local
562 addattr_l(&req.n, MAX_MSG, ++prio, NULL, 0);
H A Dq_cbq.c32 fprintf(stderr, " [ prio NUMBER ] [ cell BYTES ] [ ewma LOG ]\n");
278 } else if (matches(*argv, "prio") == 0) {
279 unsigned prio; local
281 if (get_u32(&prio, *argv, 0)) {
282 explain1("prio");
285 if (prio > TC_CBQ_MAXPRIO) {
286 fprintf(stderr, "\"prio\" must be number in the range 1...%d\n", TC_CBQ_MAXPRIO);
289 wrr.priority = prio;
513 fprintf(f, "prio %u", wrr->priority);
515 fprintf(f, "prio n
[all...]
/external/libnl/lib/route/
H A Dcls.c87 int err, prio, proto; local
95 prio = rtnl_cls_get_prio(cls);
97 tchdr->tcm_info = TC_H_MAKE(prio << 16, htons(proto));
H A Dcls_obj.c79 nl_dump(p, " prio %u protocol %s", cls->c_prio,
183 void rtnl_cls_set_prio(struct rtnl_cls *cls, uint16_t prio) argument
185 cls->c_prio = prio;
/external/libnl/lib/route/sch/
H A Dprio.c2 * lib/route/sch/prio.c PRIO Qdisc/Class
14 * @defgroup prio (Fast) Prio
35 #include <netlink/route/sch/prio.h>
57 struct rtnl_prio *prio; local
63 prio = prio_alloc(qdisc);
64 if (!prio)
68 prio->qp_bands = opt->bands;
69 memcpy(prio->qp_priomap, opt->priomap, sizeof(prio->qp_priomap));
70 prio
82 struct rtnl_prio *prio = prio_qdisc(qdisc); local
90 struct rtnl_prio *prio = prio_qdisc(qdisc); local
126 struct rtnl_prio *prio; local
165 struct rtnl_prio *prio; local
184 struct rtnl_prio *prio; local
203 struct rtnl_prio *prio; local
235 struct rtnl_prio *prio; local
271 rtnl_prio2str(int prio, char *buf, size_t size) argument
[all...]
/external/netperf/
H A Dnetcpu_looper.c227 int pid,prio; local
229 prio = PRIORITY;
234 setpri(pid, prio);
237 int pid,prio;
239 prio = PRIORITY;
241 schedctl(NDPRI, pid, prio);

Completed in 553 milliseconds

123