Searched refs:priority (Results 1 - 19 of 19) sorted by relevance

/system/core/include/utils/
H A Dmisc.h33 void add_sysprop_change_callback(sysprop_change_callback cb, int priority);
H A DLog.h43 LogIfSlow(const char* tag, android_LogPriority priority,
H A DCallStack.h51 android_LogPriority priority = ANDROID_LOG_DEBUG,
H A DProcessCallStack.h45 void log(const char* logtag, android_LogPriority priority = ANDROID_LOG_DEBUG,
H A DPrinter.h43 // Create a printer using the specified logcat and log priority
47 android_LogPriority priority = ANDROID_LOG_DEBUG,
H A DThread.h49 int32_t priority = PRIORITY_DEFAULT,
/system/core/libutils/
H A DLog.cpp24 LogIfSlow::LogIfSlow(const char* tag, android_LogPriority priority, argument
26 mTag(tag), mPriority(priority), mTimeoutMillis(timeoutMillis), mMessage(message),
H A Dmisc.cpp42 int priority; member in struct:android::sysprop_change_callback_info
50 void add_sysprop_change_callback(sysprop_change_callback cb, int priority) { argument
58 info.priority = priority;
61 if (priority >= gSyspropList->itemAt(i).priority) {
H A DCallStack.cpp52 void CallStack::log(const char* logtag, android_LogPriority priority, const char* prefix) const { argument
53 LogPrinter printer(logtag, priority, prefix, /*ignoreBlankLines*/false);
H A DPrinter.cpp66 android_LogPriority priority,
70 mPriority(priority),
65 LogPrinter(const char* logtag, android_LogPriority priority, const char* prefix, bool ignoreBlankLines) argument
H A DThreads.cpp79 int priority; member in struct:thread_data_t
82 // we use this trampoline when we need to set the priority with
87 int prio = t->priority;
137 #ifdef HAVE_ANDROID_OS /* valgrind is rejecting RT-priority create reqs */
147 t->priority = threadPriority;
693 status_t Thread::run(const char* name, int32_t priority, size_t stack) argument
716 this, name, priority, stack, &mThread);
719 this, name, priority, stack, &mThread);
H A DProcessCallStack.cpp206 void ProcessCallStack::log(const char* logtag, android_LogPriority priority, argument
208 LogPrinter printer(logtag, priority, prefix, /*ignoreBlankLines*/false);
/system/core/toolbox/
H A Dlog.c92 android_LogPriority priority; local
97 priority = ANDROID_LOG_INFO;
114 priority = filterCharToPri(optarg[0]);
115 if (priority == ANDROID_LOG_UNKNOWN) {
141 __android_log_print(priority, tag, "%s", buffer);
/system/core/include/log/
H A Dlog.h157 * verbose priority.
169 * debug priority.
177 * info priority.
185 * warn priority.
193 * error priority.
431 #define ALOG(priority, tag, ...) \
432 LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)
436 * Log macro that allows you to specify a number for the priority.
439 #define LOG_PRI(priority, tag, ...) \
440 android_printLog(priority, ta
[all...]
H A Dlogprint.h46 android_LogPriority priority; member in struct:AndroidLogEntry_t
95 * returns 1 if this log line should be printed based on its priority
/system/netd/server/
H A DRouteController.cpp256 WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table, argument
297 { &priority, sizeof(priority) },
327 WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table, argument
329 return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID,
472 uint32_t priority; local
475 priority = RULE_PRIORITY_SECURE_VPN;
477 priority = RULE_PRIORITY_BYPASSABLE_VPN;
483 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
503 uint32_t priority local
[all...]
/system/core/liblog/
H A Dlogprint.c135 * returns 1 if this log line should be printed based on its priority
231 // The default level for this is DEBUG if the priority
240 // filter, the default is verbose if the priority is unspecified
333 * format: <priority:1><tag:N>\0<message:N>\0
344 // An well-formed entry must consist of at least a priority
380 entry->priority = msg[0];
588 entry->priority = ANDROID_LOG_INFO;
700 priChar = filterPriToChar(entry->priority);
H A Dfake_log_device.c77 /* global minimum priority */
177 * and a letter indicating the minimum priority level we're expected to log.
194 /* global min priority defaults to "info" level */
224 /* default priority, if there's no ":" part; also zero out '*' */
305 * Return a human-readable string for the priority level. Always returns
308 static const char* getPriorityString(int priority) argument
316 idx = (int) priority - (int) ANDROID_LOG_VERBOSE;
544 * priority (1 byte)
/system/core/logcat/
H A Dlogcat.cpp135 // entry.priority, entry.messageLen, entry.message);
143 if (android_log_shouldPrintLine(g_logformat, entry.tag, entry.priority)) {
249 " <tag>[:priority]\n\n"
250 "where <tag> is a log component tag (or * for all) and priority is:\n"

Completed in 345 milliseconds