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

/libcore/ojluni/src/main/java/jdk/net/
H A DSocketFlow.java34 * The priority and bandwidth parameters must be set before
40 * until it takes effect. The priority and bandwidth values are only valid when
53 private int priority = NORMAL_PRIORITY; field in class:SocketFlow
113 * Sets this SocketFlow's priority. Must be either NORMAL_PRIORITY
114 * HIGH_PRIORITY. If not set, a flow's priority is normal.
116 * @throws IllegalArgumentException if priority is not NORMAL_PRIORITY or
119 public SocketFlow priority(int priority) { argument
120 if (priority != NORMAL_PRIORITY && priority !
145 public int priority() { method in class:SocketFlow
[all...]
/libcore/luni/src/main/java/libcore/util/
H A DCountryTimeZones.java220 * "priority" order. The list can be empty if there were no zones configured or the configured
261 * Returns an ordered list of time zones for the country in an undefined but "priority"
/libcore/ojluni/src/main/native/
H A DSystem.c234 int priority; local
236 case 'D': case 'd': priority = ANDROID_LOG_DEBUG; break;
237 case 'E': case 'e': priority = ANDROID_LOG_ERROR; break;
238 case 'F': case 'f': priority = ANDROID_LOG_FATAL; break;
239 case 'I': case 'i': priority = ANDROID_LOG_INFO; break;
240 case 'S': case 's': priority = ANDROID_LOG_SILENT; break;
241 case 'V': case 'v': priority = ANDROID_LOG_VERBOSE; break;
242 case 'W': case 'w': priority = ANDROID_LOG_WARN; break;
243 default: priority = ANDROID_LOG_DEFAULT; break;
247 LOG_PRI(priority, "Syste
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DThread.java52 * Every thread has a priority. Threads with higher priority are
53 * executed in preference to threads with lower priority. Each thread
56 * thread has its priority initially set equal to the priority of the
157 private int priority; field in class:Thread
256 * The minimum priority that a thread can have.
261 * The default priority that is assigned to a thread.
266 * The maximum priority that a thread can have.
409 this.priority
525 Thread(ThreadGroup group, String name, int priority, boolean daemon) argument
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DObjectInputStream.java567 * later callbacks. Within a priority, callbacks are processed in
2209 final int priority; field in class:ObjectInputStream.ValidationList.Callback
2213 Callback(ObjectInputValidation obj, int priority, Callback next, argument
2217 this.priority = priority;
2236 void register(ObjectInputValidation obj, int priority) argument
2244 while (cur != null && priority < cur.priority) {
2250 prev.next = new Callback(obj, priority, cur, acc);
2252 list = new Callback(obj, priority, lis
[all...]
/libcore/benchmarks/src/benchmarks/regression/
H A DR.java2000 public static final int priority = 0; field in class:R

Completed in 193 milliseconds