Lines Matching full:priority
31 * - a priority
73 * Android log priority values, in increasing order of priority.
78 /** The default priority, for internal use only. */
98 * with priority `prio` (one of the `android_LogPriority` values) and tag `tag`.
107 * with priority `prio` (one of the `android_LogPriority` values) and tag `tag`.
189 * with priority `prio` (one of the `android_LogPriority` values) and tag `tag`.
201 * with priority `prio` (one of the `android_LogPriority` values) and tag `tag`.
227 int32_t priority; member
350 * Use the per-tag properties "log.tag.<tagname>" along with the minimum priority from
354 * If both a priority for a tag and a minimum priority are set by
356 * minimum priority needed to log. If only one is set, then that value is used to determine the
357 * minimum priority needed. If none are set, then default_priority is used.
359 * @param prio the priority to test, takes {@link android_LogPriority} values.
361 * @param default_prio the default priority to use if no properties or minimum priority are set.
369 * Use the per-tag properties "log.tag.<tagname>" along with the minimum priority from
373 * If both a priority for a tag and a minimum priority are set by
375 * minimum priority needed to log. If only one is set, then that value is used to determine the
376 * minimum priority needed. If none are set, then default_priority is used.
378 * @param prio the priority to test, takes {@link android_LogPriority} values.
381 * @param default_prio the default priority to use if no properties or minimum priority are set.
390 * Sets the minimum priority that will be logged for this process.
392 * @param priority the new minimum priority to set, takes {@link android_LogPriority} values.
393 * @return the previous set minimum priority, or `ANDROID_LOG_DEFAULT` if none was set.
397 int32_t __android_log_set_minimum_priority(int32_t priority) __INTRODUCED_IN(30);
400 * Gets the minimum priority that will be logged for this process.
402 * @return the current minimum priority, or `ANDROID_LOG_DEFAULT` if none is set.