Home
last modified time | relevance | path

Searched refs:prio (Results 1 – 6 of 6) sorted by relevance

/system/core/include/android/
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/liblog/
Dlogd_write.c135 int __android_log_write(int prio, const char *tag, const char *msg) in __android_log_write() argument
160 vec[0].iov_base = (unsigned char *) &prio; in __android_log_write()
170 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *msg) in __android_log_buf_write() argument
195 vec[0].iov_base = (unsigned char *) &prio; in __android_log_buf_write()
205 int __android_log_vprint(int prio, const char *tag, const char *fmt, va_list ap) in __android_log_vprint() argument
211 return __android_log_write(prio, tag, buf); in __android_log_vprint()
214 int __android_log_print(int prio, const char *tag, const char *fmt, ...) in __android_log_print() argument
223 return __android_log_write(prio, tag, buf); in __android_log_print()
226 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...) in __android_log_buf_print() argument
235 return __android_log_buf_write(bufID, prio, tag, buf); in __android_log_buf_print()
/system/core/toolbox/
Drenice.c93 int prio; in renice_main() local
125 prio = atoi(argv[0]); in renice_main()
140 struct sched_param sp = { .sched_priority = prio }; in renice_main()
151 ret = setpriority(PRIO_PROCESS, pid, prio); in renice_main()
Dps.c46 int prio, nice, rtprio, sched, psr; in ps_line() local
108 prio = atoi(nexttok(&ptr)); in ps_line()
165 printf(" %-5d %-5d %-5d %-5d", prio, nice, rtprio, sched); in ps_line()
/system/core/include/cutils/
Dlog.h501 #define android_printLog(prio, tag, fmt...) \ argument
502 __android_log_print(prio, tag, fmt)
504 #define android_vprintLog(prio, cond, tag, fmt...) \ argument
505 __android_log_vprint(prio, tag, fmt)
526 #define android_writeLog(prio, tag, text) \ argument
527 __android_log_write(prio, tag, text)
535 #define android_testLog(prio, tag) (1) argument
538 #define android_setMinPriority(tag, prio) do{}while(0) argument
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, const char *tag, const char *fmt, ...);
/system/core/debuggerd/
Dtombstone.c562 unsigned char prio = entry->msg[0]; in dump_log_file() local
572 char prioChar = (prio < strlen(kPrioChars) ? kPrioChars[prio] : '?'); in dump_log_file()