• Home
  • Raw
  • Download

Lines Matching full:priority

31  *   - a priority
71 * Android log priority values, in increasing order of priority.
76 /** The default priority, for internal use only. */
95 * Writes the constant string `text` to the log, with priority `prio` and tag
101 * Writes a formatted string to the log, with priority `prio` and tag `tag`.
166 * with priority `prio` and tag `tag`.
174 * with priority `prio` and tag `tag`.
195 int32_t priority; member
302 * Use the per-tag properties "log.tag.<tagname>" along with the minimum priority from
306 * If both a priority for a tag and a minimum priority are set by
308 * minimum priority needed to log. If only one is set, then that value is used to determine the
309 * minimum priority needed. If none are set, then default_priority is used.
311 * @param prio the priority to test, takes android_LogPriority values.
313 * @param default_prio the default priority to use if no properties or minimum priority are set.
321 * Use the per-tag properties "log.tag.<tagname>" along with the minimum priority from
325 * If both a priority for a tag and a minimum priority are set by
327 * minimum priority needed to log. If only one is set, then that value is used to determine the
328 * minimum priority needed. If none are set, then default_priority is used.
330 * @param prio the priority to test, takes android_LogPriority values.
333 * @param default_prio the default priority to use if no properties or minimum priority are set.
342 * Sets the minimum priority that will be logged for this process.
344 * @param priority the new minimum priority to set, takes android_LogPriority values.
345 * @return the previous set minimum priority as android_LogPriority values, or
350 int32_t __android_log_set_minimum_priority(int32_t priority) __INTRODUCED_IN(30);
353 * Gets the minimum priority that will be logged for this process. If none has been set by a
356 * @return the current minimum priority as android_LogPriority values, or