Searched refs:prio (Results 1 - 9 of 9) sorted by relevance

/system/core/include/android/
H A Dlog.h94 int __android_log_write(int prio, const char *tag, const char *text);
99 int __android_log_print(int prio, const char *tag, const char *fmt, ...)
109 int __android_log_vprint(int prio, const char *tag,
/system/core/toolbox/
H A Dswapon.c16 fprintf(stderr, "Usage: %s [-p prio] <filename>\n"
17 " prio must be between 0 and %d\n", name, SWAP_FLAG_PRIO_MASK);
31 int prio; local
42 prio = parse_prio(optarg);
44 prio = -1;
46 if (prio < 0) {
51 flags |= (prio << SWAP_FLAG_PRIO_SHIFT) & SWAP_FLAG_PRIO_MASK;
H A Drenice.c74 printf("RT prio: %d (of %d to %d)\n", sp.sched_priority,
93 int prio; local
125 prio = atoi(argv[0]);
140 struct sched_param sp = { .sched_priority = prio };
151 ret = setpriority(PRIO_PROCESS, pid, prio);
H A Dps.c46 int prio, nice, rtprio, sched, psr; local
108 prio = atoi(nexttok(&ptr));
165 printf(" %-5d %-5d %-5d %-5d", prio, nice, rtprio, sched);
/system/core/liblog/
H A Dlogd_write.c135 int __android_log_write(int prio, const char *tag, const char *msg) argument
160 vec[0].iov_base = (unsigned char *) &prio;
170 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *msg) argument
195 vec[0].iov_base = (unsigned char *) &prio;
205 int __android_log_vprint(int prio, const char *tag, const char *fmt, va_list ap) argument
211 return __android_log_write(prio, tag, buf);
214 int __android_log_print(int prio, const char *tag, const char *fmt, ...) argument
223 return __android_log_write(prio, tag, buf);
226 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...) argument
235 return __android_log_buf_write(bufID, prio, ta
[all...]
/system/core/include/log/
H A Dlog.h501 #define android_printLog(prio, tag, fmt...) \
502 __android_log_print(prio, tag, fmt)
504 #define android_vprintLog(prio, cond, tag, fmt...) \
505 __android_log_vprint(prio, tag, fmt)
526 #define android_writeLog(prio, tag, text) \
527 __android_log_write(prio, tag, text)
535 #define android_testLog(prio, tag) (1)
538 #define android_setMinPriority(tag, prio) do{}while(0)
555 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *text);
556 int __android_log_buf_print(int bufID, int prio, cons
[all...]
/system/core/include/utils/
H A DAndroidThreads.h84 extern int androidSetThreadPriority(pid_t tid, int prio);
/system/core/libutils/
H A DThreads.cpp81 int prio = t->priority; local
84 setpriority(PRIO_PROCESS, 0, prio);
85 if (prio >= ANDROID_PRIORITY_BACKGROUND) {
/system/core/debuggerd/
H A Dtombstone.c562 unsigned char prio = entry->msg[0]; local
572 char prioChar = (prio < strlen(kPrioChars) ? kPrioChars[prio] : '?');

Completed in 127 milliseconds