Searched defs:priority (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/native/
H A Djava_lang_System.cpp44 int priority; local
46 case 'D': case 'd': priority = ANDROID_LOG_DEBUG; break;
47 case 'E': case 'e': priority = ANDROID_LOG_ERROR; break;
48 case 'F': case 'f': priority = ANDROID_LOG_FATAL; break;
49 case 'I': case 'i': priority = ANDROID_LOG_INFO; break;
50 case 'S': case 's': priority = ANDROID_LOG_SILENT; break;
51 case 'V': case 'v': priority = ANDROID_LOG_VERBOSE; break;
52 case 'W': case 'w': priority = ANDROID_LOG_WARN; break;
53 default: priority = ANDROID_LOG_DEFAULT; break;
55 LOG_PRI(priority, LOG_TA
[all...]
/libcore/libart/src/main/java/java/lang/
H A DThread.java55 * <p>Each {@code Thread} has an integer priority that affect how the thread is
56 * scheduled by the OS. A new thread inherits the priority of its parent.
57 * A thread's priority can be set using the {@link #setPriority(int)} method.
106 * The maximum priority value allowed for a thread.
113 * The minimum priority value allowed for a thread.
120 * The normal (default) priority value assigned to the main thread.
132 volatile int priority; field in class:Thread
360 Thread(ThreadGroup group, String name, int priority, boolean daemon) { argument
379 this.priority = priority;
930 setPriority(int priority) argument
[all...]
/libcore/libdvm/src/main/java/java/lang/
H A DThread.java55 * <p>Each {@code Thread} has an integer priority that affect how the thread is
56 * scheduled by the OS. A new thread inherits the priority of its parent.
57 * A thread's priority can be set using the {@link #setPriority(int)} method.
106 * The maximum priority value allowed for a thread.
113 * The minimum priority value allowed for a thread.
120 * The normal (default) priority value assigned to the main thread.
132 volatile int priority; field in class:Thread
355 Thread(ThreadGroup group, String name, int priority, boolean daemon) { argument
374 this.priority = priority;
952 setPriority(int priority) argument
[all...]
/libcore/luni/src/main/java/java/io/
H A DObjectInputStream.java117 // Internal type used to keep track of validators & corresponding priority
121 int priority; field in class:ObjectInputStream.InputValidationDesc
2159 * priority, defined by {@code priority}.
2163 * @param priority
2164 * the validator's priority.
2173 int priority) throws NotActiveException, InvalidObjectException {
2188 desc.priority = priority;
2198 // Sorted, higher priority firs
2172 registerValidation(ObjectInputValidation object, int priority) argument
[all...]

Completed in 138 milliseconds