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

/libcore/ojluni/src/main/java/sun/security/ssl/
H A DSignatureAndHashAlgorithm.java66 // minimum priority for default enabled algorithms
91 // If the algorithm is unsupported, its priority should be bigger
93 private int priority; field in class:SignatureAndHashAlgorithm
97 SignatureAlgorithm signature, String algorithm, int priority) {
102 this.priority = priority;
113 this.priority = SUPPORTED_ALG_PRIORITY_MAX_NUM + sequence + 1;
162 if (sigAlg.priority <= SUPPORTED_ALG_PRIORITY_MAX_NUM &&
178 if (sigAlg.priority <= SUPPORTED_ALG_PRIORITY_MAX_NUM) {
218 SignatureAlgorithm signature, String algorithm, int priority) {
96 SignatureAndHashAlgorithm(HashAlgorithm hash, SignatureAlgorithm signature, String algorithm, int priority) argument
217 supports(HashAlgorithm hash, SignatureAlgorithm signature, String algorithm, int priority) argument
[all...]
H A DCipherSuite.java70 // minimum priority for supported CipherSuites
73 // minimum priority for default enabled CipherSuites
100 // priority for the internal default preference order. the higher the
101 // better. Each supported CipherSuite *must* have a unique priority.
102 // Ciphersuites with priority >= DEFAULT_SUITES_PRIORITY are enabled
104 final int priority; field in class:CipherSuite
129 private CipherSuite(String name, int id, int priority, argument
134 this.priority = priority;
171 this.priority
265 add(String name, int id, int priority, KeyExchange keyExchange, BulkCipher cipher, boolean allowed, int obsoleted, int supported, PRF prf) argument
290 add(String name, int id, int priority, KeyExchange keyExchange, BulkCipher cipher, boolean allowed, int obsoleted) argument
308 add(String name, int id, int priority, KeyExchange keyExchange, BulkCipher cipher, boolean allowed) argument
[all...]
H A DSSLContextImpl.java320 * Return the list of all available CipherSuites with a priority of
338 if (!suite.allowed || suite.priority < minPriority) {
/libcore/ojluni/src/main/native/
H A DSystem.c231 int priority; local
233 case 'D': case 'd': priority = ANDROID_LOG_DEBUG; break;
234 case 'E': case 'e': priority = ANDROID_LOG_ERROR; break;
235 case 'F': case 'f': priority = ANDROID_LOG_FATAL; break;
236 case 'I': case 'i': priority = ANDROID_LOG_INFO; break;
237 case 'S': case 's': priority = ANDROID_LOG_SILENT; break;
238 case 'V': case 'v': priority = ANDROID_LOG_VERBOSE; break;
239 case 'W': case 'w': priority = ANDROID_LOG_WARN; break;
240 default: priority = ANDROID_LOG_DEFAULT; break;
248 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.
407 this.priority
523 Thread(ThreadGroup group, String name, int priority, boolean daemon) argument
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DObjectInputStream.java565 * later callbacks. Within a priority, callbacks are processed in
2196 final int priority; field in class:ObjectInputStream.ValidationList.Callback
2200 Callback(ObjectInputValidation obj, int priority, Callback next, argument
2204 this.priority = priority;
2223 void register(ObjectInputValidation obj, int priority) argument
2231 while (cur != null && priority < cur.priority) {
2237 prev.next = new Callback(obj, priority, cur, acc);
2239 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 244 milliseconds