Searched refs:prio (Results 1 - 6 of 6) sorted by path

/system/core/debuggerd/
H A Dtombstone.c532 unsigned char prio = entry->msg[0]; local
542 char prioChar = (prio < strlen(kPrioChars) ? kPrioChars[prio] : '?');
/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/include/cutils/
H A Dlog.h420 #define android_printLog(prio, tag, fmt...) \
421 __android_log_print(prio, tag, fmt)
423 #define android_vprintLog(prio, cond, tag, fmt...) \
424 __android_log_vprint(prio, tag, fmt)
445 #define android_writeLog(prio, tag, text) \
446 __android_log_write(prio, tag, text)
454 #define android_testLog(prio, tag) (1)
457 #define android_setMinPriority(tag, prio) do{}while(0)
474 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *text);
475 int __android_log_buf_print(int bufID, int prio, cons
[all...]
/system/core/liblog/
H A Dlogd_write.c133 int __android_log_write(int prio, const char *tag, const char *msg) argument
153 vec[0].iov_base = (unsigned char *) &prio;
163 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *msg) argument
182 vec[0].iov_base = (unsigned char *) &prio;
192 int __android_log_vprint(int prio, const char *tag, const char *fmt, va_list ap) argument
198 return __android_log_write(prio, tag, buf);
201 int __android_log_print(int prio, const char *tag, const char *fmt, ...) argument
210 return __android_log_write(prio, tag, buf);
213 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...) argument
222 return __android_log_buf_write(bufID, prio, ta
[all...]
/system/core/toolbox/
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);
H A Drenice.c73 printf("RT prio: %d (of %d to %d)\n", sp.sched_priority,
79 int prio; local
107 prio = atoi(argv[0]);
122 struct sched_param sp = { .sched_priority = prio };
133 ret = setpriority(PRIO_PROCESS, pid, prio);

Completed in 70 milliseconds