HomeSort by relevance Sort by last modified time
    Searched refs:priority (Results 476 - 500 of 957) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
apicdef_32.h 176 u32 priority : 8, member in struct:local_apic::__anon39825
184 u32 priority : 8, member in struct:local_apic::__anon39826
191 u32 priority : 8, member in struct:local_apic::__anon39827
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
apicdef_32.h 176 u32 priority : 8, member in struct:local_apic::__anon42550
184 u32 priority : 8, member in struct:local_apic::__anon42551
191 u32 priority : 8, member in struct:local_apic::__anon42552
  /external/chromium/net/spdy/
spdy_session.cc 381 RequestPriority priority,
387 return CreateStreamImpl(url, priority, spdy_stream, stream_net_log);
392 create_stream_queues_[priority].push(
393 PendingCreateStream(url, priority, spdy_stream,
408 pending_create.priority,
454 RequestPriority priority,
477 stream->set_priority(priority);
484 static_cast<int>(priority), 0, 10, 11);
487 DCHECK(priority >= net::HIGHEST && priority < net::NUM_PRIORITIES)
605 int priority = 3; local
    [all...]
  /external/chromium/net/http/
http_proxy_client_socket_pool.cc 191 params_->transport_params()->destination().priority(),
225 params_->ssl_params()->transport_params()->destination().priority(),
342 params_->destination().priority(),
444 RequestPriority priority,
451 return base_.RequestSocket(group_name, *casted_socket_params, priority,
  /external/dropbear/
dbutil.c 61 static void generic_dropbear_log(int priority, const char* format,
66 void (*_dropbear_log)(int priority, const char* format, va_list param)
117 static void generic_dropbear_log(int UNUSED(priority), const char* format,
129 void dropbear_log(int priority, const char* format, ...) {
134 _dropbear_log(priority, format, param);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyConnection.java 168 int priority = 0; // TODO: permit the caller to specify a priority? local
180 stream = new SpdyStream(streamId, this, flags, priority, slot, requestHeaders, settings);
187 spdyWriter.synStream(flags, streamId, associatedStreamId, priority, slot, requestHeaders);
454 public void synStream(int flags, int streamId, int associatedStreamId, int priority, int slot,
460 new SpdyStream(streamId, SpdyConnection.this, flags, priority, slot, nameValueBlock,
SpdyStream.java 77 private final int priority; field in class:SpdyStream
98 SpdyStream(int id, SpdyConnection connection, int flags, int priority, int slot,
104 this.priority = priority;
373 return priority;
SpdyReader.java 160 int priority = (s3 & 0xe000) >>> 13; local
163 handler.synStream(flags, streamId, associatedStreamId, priority, slot, nameValueBlock);
302 void synStream(int flags, int streamId, int associatedStreamId, int priority, int slot,
  /external/webkit/Source/WebCore/html/
HTMLLinkElement.cpp 260 ResourceLoadPriority priority = ResourceLoadPriorityUnresolved;
262 priority = ResourceLoadPriorityLow;
264 m_cachedLinkResource = document()->cachedResourceLoader()->requestLinkResource(m_url, priority);
303 // Load stylesheets that are not needed for the rendering immediately with low priority.
304 ResourceLoadPriority priority = blocking ? ResourceLoadPriorityUnresolved : ResourceLoadPriorityVeryLow; local
305 m_cachedSheet = document()->cachedResourceLoader()->requestCSSStyleSheet(m_url, charset, priority);
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 29 int priority; member in struct:rsn_pmksa_candidate
291 /* TODO: drop priority for old candidate entries */
342 * @prio: Priority (the smaller number, the higher priority)
364 /* If BSSID already on candidate list, update the priority of the old
365 * entry. Do not override priority based on normal scan results. */
378 cand->priority = prio;
384 cand->priority = prio;
387 /* Add candidate to the list; order by increasing priority value. i.e.,
388 * highest priority (smallest value) first. *
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothHeadset.java 440 * Set priority of the profile
443 * Priority can be one of {@link #PRIORITY_ON} or
450 * @param priority
451 * @return true if priority is set, false on error
454 public boolean setPriority(BluetoothDevice device, int priority) {
455 if (DBG) log("setPriority(" + device + ", " + priority + ")");
458 if (priority != BluetoothProfile.PRIORITY_OFF &&
459 priority != BluetoothProfile.PRIORITY_ON) {
463 return mService.setPriority(device, priority);
474 * Get the priority of the profile
    [all...]
  /external/ppp/pppd/
options.c 137 int option_priority = OPRIO_CFGFILE; /* priority of the current options */
488 * files a lower priority than the command line.
642 if (prio < mainopt->priority) {
644 if (prio == OPRIO_CMDLINE && mainopt->priority > OPRIO_ROOT) {
651 if (prio > OPRIO_ROOT && mainopt->priority == OPRIO_CMDLINE)
793 mainopt->priority = prio;
801 * override the value of option, return 1 and update the priority
805 override_value(option, priority, source)
807 int priority;
817 if ((opt->flags & OPT_PRIO) && priority < opt->priority
    [all...]
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java 72 // Low priority will be used for opportunistic downloads
74 // Normal priority is for forwarded downloads in outgoing mail
76 // High priority is for user requests
167 final int priority; field in class:AttachmentDownloadService.DownloadRequest
187 priority = getPriority(attachment);
208 * Comparator class for the download set; we first compare by priority. Requests with equal
209 * priority are compared by the time the request was created (older requests come first)
215 if (req1.priority != req2.priority) {
216 res = (req1.priority < req2.priority) ? -1 : 1
257 long priority = getPriority(att); local
    [all...]
  /external/chromium/net/socket/
client_socket_pool_base.h 173 RequestPriority priority,
186 RequestPriority priority() const { return priority_; } function in class:net::internal::ClientSocketPoolBaseHelper::Request
368 return pending_requests_.front()->priority();
448 // having highest priority.
589 RequestPriority priority,
599 handle, callback, priority, ignore_limits,
655 RequestPriority priority,
664 new Request(handle, callback, priority,
677 // priority to LOWEST and specifies the NO_IDLE_SOCKETS flag.
client_socket_pool_manager.cc 103 request_info.priority,
116 request_info.priority,
168 request_info.priority,
198 request_info.priority, callback, ssl_pool,
213 request_info.priority, callback,
227 request_info.priority, callback, pool,
241 request_info.priority, callback,
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnectionPool.java 142 * The connection pool can use this flag to elevate the priority
619 // No connections available. Enqueue a waiter in priority order.
620 final int priority = getPriority(connectionFlags); local
623 priority, wantPrimaryConnection, sql, connectionFlags);
627 if (priority > successor.mPriority) {
924 final int priority = getPriority(connectionFlags); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 330 public boolean setPriority(BluetoothDevice device, int priority) {
333 return service.setPriority(device, priority);
427 public boolean setPriority(BluetoothDevice device, int priority) {
432 priority); local
433 if (DBG) Log.d(TAG,"Saved priority " + device + " = " + priority);
440 int priority = Settings.Global.getInt(getContentResolver(), local
443 return priority;
606 //check if it is inbound connection in Quiet mode, priority and Bond status
  /external/clang/lib/CodeGen/
CodeGenModule.h 91 unsigned int priority; member in struct:clang::CodeGen::OrderGlobalInits
94 : priority(p), lex_order(l) {}
97 return priority == RHS.priority &&
102 if (priority < RHS.priority)
105 return priority == RHS.priority && lex_order < RHS.lex_order;
320 return LHS.first.priority < RHS.first.priority;
    [all...]
  /external/kernel-headers/original/linux/
skbuff.h 209 * @priority: Packet queueing priority
277 __u32 priority; member in struct:sk_buff
333 gfp_t priority, int fclone);
335 gfp_t priority)
337 return __alloc_skb(size, priority, 0);
341 gfp_t priority)
343 return __alloc_skb(size, priority, 1);
348 gfp_t priority);
351 gfp_t priority);
    [all...]
  /external/iproute2/tc/
q_cbq.c 289 wrr.priority = prio;
383 if (wrr.priority == 0 && (n->nlmsg_flags&NLM_F_EXCL)) {
385 wrr.priority = TC_CBQ_MAXPRIO;
391 wrr.weight = (wrr.priority == TC_CBQ_MAXPRIO) ? 1 : r.rate;
512 if (wrr->priority != TC_CBQ_MAXPRIO)
513 fprintf(f, "prio %u", wrr->priority);
  /external/webkit/Source/WebCore/platform/mac/
WebCoreSystemInterface.mm 94 void (*wkSetHTTPPipeliningMaximumPriority)(int priority);
95 void (*wkSetHTTPPipeliningPriority)(NSMutableURLRequest *, int priority);
96 void (*wkSetHTTPPipeliningMinimumFastLanePriority)(int priority);
  /frameworks/native/libs/utils/
Threads.cpp 88 int priority; member in struct:thread_data_t
91 // we use this trampoline when we need to set the priority with
96 int prio = t->priority;
151 #ifdef HAVE_ANDROID_OS /* valgrind is rejecting RT-priority create reqs */
161 t->priority = threadPriority;
717 status_t Thread::run(const char* name, int32_t priority, size_t stack)
740 this, name, priority, stack, &mThread);
743 this, name, priority, stack, &mThread);
  /external/chromium/third_party/libevent/
evbuffer.c 296 bufferevent_priority_set(struct bufferevent *bufev, int priority)
298 if (event_priority_set(&bufev->ev_read, priority) == -1)
300 if (event_priority_set(&bufev->ev_write, priority) == -1)
  /external/jmdns/src/javax/jmdns/impl/
ServiceInfoImpl.java 122 * @param priority
127 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, String text) {
128 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, (byte[]) null);
145 * @param priority
150 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, Map<String, ?> props) {
151 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, textFromProperties(props));
160 * @param priority
165 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, byte text[]) {
166 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, text);
169 public ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, Map<String, ?> props)
    [all...]
  /frameworks/base/core/java/android/os/
Process.java 169 * Standard priority of application threads.
183 * Lowest available thread priority. Only for those who really, really
192 * Standard priority background threads. This gives your thread a slightly
193 * lower than normal priority, so that it will have less chance of impacting
202 * Standard priority of threads that are currently running a user interface
204 * change to this priority; the system will automatically adjust your
213 * Standard priority of system display threads, involved in updating
215 * normally change to this priority.
223 * Standard priority of the most important display threads, for compositing
225 * change to this priority
    [all...]

Completed in 1982 milliseconds

<<11121314151617181920>>