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

/system/libhidl/transport/include/hidl/
H A DStatic.h33 int prio; member in struct:android::hardware::details::SchedPrio
/system/keymaster/
H A Dkeymaster_configuration_test.cpp23 int __android_log_print(int prio, const char* tag, const char* fmt);
24 int __android_log_print(int prio, const char* tag, const char* fmt) { argument
25 (void)prio, (void)tag, (void)fmt;
H A Dandroid_keymaster_test.cpp44 int __android_log_print(int prio, const char* tag, const char* fmt);
45 int __android_log_print(int prio, const char* tag, const char* fmt) { argument
46 (void)prio, (void)tag, (void)fmt;
/system/core/liblog/tests/
H A Dlog_read_test.cpp47 static const char prio = ANDROID_LOG_DEBUG; local
48 ASSERT_LT(0, __android_log_write(prio, tag, buf.c_str()));
51 buf = std::string(&prio, sizeof(prio)) + tag + std::string("", 1) + buf +
H A Dliblog_test.cpp3099 static ssize_t __pmsg_fn(log_id_t logId, char prio, const char* filename, argument
3103 EXPECT_EQ(ANDROID_LOG_VERBOSE, prio);
3112 return arg || (LOG_ID_CRASH != logId) || (ANDROID_LOG_VERBOSE != prio) ||
/system/core/debuggerd/libdebuggerd/test/
H A Dlog_fake.cpp47 extern "C" int __android_log_buf_write(int bufId, int prio, const char* tag, const char* msg) { argument
48 g_fake_log_buf += std::to_string(bufId) + ' ' + std::to_string(prio) + ' ';
55 extern "C" int __android_log_print(int prio, const char* tag, const char* fmt, ...) { argument
56 g_fake_log_print += std::to_string(prio) + ' ';
/system/core/libunwindstack/tests/
H A DLogFake.cpp49 extern "C" int __android_log_buf_write(int bufId, int prio, const char* tag, const char* msg) { argument
50 g_fake_log_buf += std::to_string(bufId) + ' ' + std::to_string(prio) + ' ';
57 extern "C" int __android_log_print(int prio, const char* tag, const char* fmt, ...) { argument
60 int val = __android_log_vprint(prio, tag, fmt, ap);
66 extern "C" int __android_log_vprint(int prio, const char* tag, const char* fmt, va_list ap) { argument
67 g_fake_log_print += std::to_string(prio) + ' ';
/system/core/liblog/
H A Dpmsg_writer.c131 * char prio;
207 char prio,
246 vec[0].iov_base = &prio;
206 __android_log_pmsg_file_write(log_id_t logId, char prio, const char* filename, const char* buf, size_t len) argument
H A Dlogger_write.c318 char prio = ANDROID_LOG_VERBOSE; local
325 prio = *tag;
342 if (!__android_log_is_loggable_len(prio, tag, len - 1, ANDROID_LOG_VERBOSE)) {
400 LIBLOG_ABI_PUBLIC int __android_log_write(int prio, const char* tag, argument
402 return __android_log_buf_write(LOG_ID_MAIN, prio, tag, msg);
405 LIBLOG_ABI_PUBLIC int __android_log_buf_write(int bufID, int prio, argument
426 if (prio == ANDROID_LOG_FATAL) {
431 vec[0].iov_base = (unsigned char*)&prio;
441 LIBLOG_ABI_PUBLIC int __android_log_vprint(int prio, const char* tag, argument
447 return __android_log_write(prio, ta
450 __android_log_print(int prio, const char* tag, const char* fmt, ...) argument
462 __android_log_buf_print(int bufID, int prio, const char* tag, const char* fmt, ...) argument
[all...]
H A Devent_tag_map.cpp575 const char* format, int prio) {
582 if ((prio != ANDROID_LOG_UNKNOWN) && (prio < ANDROID_LOG_SILENT) &&
583 !__android_log_is_loggable_len(prio, tagname, len,
573 android_lookupEventTagNum(EventTagMap* map, const char* tagname, const char* format, int prio) argument
H A Dpmsg_reader.c142 uint8_t prio; member in struct:__anon1554
191 ((buf.prio == ANDROID_LOG_UNKNOWN) ||
192 (buf.prio == ANDROID_LOG_DEFAULT) ||
193 (buf.prio >= ANDROID_LOG_SILENT)))) {
211 *msg = buf.prio;
217 read(fd, msg + sizeof(buf.prio), buf.p.len - sizeof(buf)));
225 log_msg->entry_v4.len = buf.p.len - sizeof(buf) + sizeof(buf.prio);
237 return ret + sizeof(buf.prio) + log_msg->entry_v4.hdr_size;
273 __android_log_pmsg_file_read(log_id_t logId, char prio, const char* prefix, argument
292 char prio; member in struct:names
[all...]
H A Dfake_log_device.c272 TRACE("+++ global min prio %d\n", logState->globalMinPriority);
722 LIBLOG_ABI_PUBLIC int __android_log_is_loggable(int prio, argument
726 return logLevel >= 0 && prio >= logLevel;
729 LIBLOG_ABI_PUBLIC int __android_log_is_loggable_len(int prio, argument
734 return logLevel >= 0 && prio >= logLevel;
H A Dproperties.c266 LIBLOG_ABI_PUBLIC int __android_log_is_loggable_len(int prio, const char* tag, argument
270 return logLevel >= 0 && prio >= logLevel;
273 LIBLOG_ABI_PUBLIC int __android_log_is_loggable(int prio, const char* tag, argument
277 return logLevel >= 0 && prio >= logLevel;
/system/core/libutils/
H A DThreads.cpp78 int prio = t->priority; local
81 setpriority(PRIO_PROCESS, 0, prio);
82 if (prio >= ANDROID_PRIORITY_BACKGROUND) {
/system/core/debuggerd/libdebuggerd/
H A Dtombstone.cpp602 unsigned char prio = msg[0]; local
612 char prioChar = (prio < strlen(kPrioChars) ? kPrioChars[prio] : '?');
/system/core/logd/
H A DLogBuffer.cpp202 int prio = ANDROID_LOG_INFO; local
207 prio = *msg;
210 if (!__android_log_is_loggable(prio, tag, ANDROID_LOG_VERBOSE)) {

Completed in 377 milliseconds