HomeSort by relevance Sort by last modified time
    Searched full:priority (Results 1201 - 1225 of 3742) sorted by null

<<41424344454647484950>>

  /external/chromium_org/net/spdy/
spdy_session.cc 274 RequestPriority priority,
285 priority_ = priority;
630 RequestPriority priority = request->priority(); local
631 CHECK_GE(priority, MINIMUM_PRIORITY);
632 CHECK_LE(priority, MAXIMUM_PRIORITY);
633 pending_create_stream_queues_[priority].push_back(request);
639 DCHECK_GE(request.priority(), MINIMUM_PRIORITY);
640 DCHECK_LE(request.priority(), MAXIMUM_PRIORITY);
672 request.priority(),
689 RequestPriority priority = request->priority(); local
1062 RequestPriority priority = it->second.stream->priority(); local
2908 RequestPriority priority = stream.priority(); local
    [all...]
spdy_test_util_common.cc 209 SpdyPriority priority() const { function in class:net::__anon9407::PriorityGetter
218 SpdyPriority priority,
223 priority_ = priority;
259 SpdyPriority* priority) {
267 *priority = priority_getter.priority();
275 RequestPriority priority,
278 int rv = stream_request.StartRequest(type, session, url, priority, net_log,
755 header_info.priority,
    [all...]
spdy_test_util_common.h 108 // and fills in |priority| on success.
111 SpdyPriority* priority);
119 RequestPriority priority,
144 SpdyPriority priority; member in struct:net::SpdyHeaderInfo
425 RequestPriority priority) const;
481 RequestPriority priority,
  /frameworks/base/core/java/android/app/
Notification.java 345 * Obsolete flag indicating high-priority notifications; use the priority field instead.
347 * @deprecated Use {@link #priority} with a positive value.
354 * Default notification {@link #priority}. If your application does not prioritize its own
360 * Lower {@link #priority}, for items that are less important. The UI may choose to show these
367 * Lowest {@link #priority}; these items might not be shown to the user except under special
373 * Higher {@link #priority}, for more important notifications or alerts. The UI may choose to
380 * Highest {@link #priority}, for your application's most important items that require the
386 * Relative priority for this notification.
388 * Priority is an indication of how much of the user's valuable attention should be consumed b
394 public int priority; field in class:Notification
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CalendarTest.java 122 // WEEK_OF_YEAR has priority over MONTH/DATE
133 // WEEK_OF_YEAR has priority over MONTH/DATE
162 // WEEK_OF_MONTH has priority
174 // DAY_OF_WEEK_IN_MONTH has priority over WEEK_OF_YEAR
185 // WEEK_OF_MONTH has priority, MONTH not set
196 // WEEK_OF_YEAR has priority when MONTH set last and DAY_OF_WEEK set
225 // WEEK_OF_MONTH has priority
236 // DATE has priority when set last
246 // DATE has priority when set last, MONTH not set
255 // DAY_OF_YEAR has priority when MONTH set last and DATE not se
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CalendarTest.java 122 // WEEK_OF_YEAR has priority over MONTH/DATE
133 // WEEK_OF_YEAR has priority over MONTH/DATE
162 // WEEK_OF_MONTH has priority
174 // DAY_OF_WEEK_IN_MONTH has priority over WEEK_OF_YEAR
185 // WEEK_OF_MONTH has priority, MONTH not set
196 // WEEK_OF_YEAR has priority when MONTH set last and DAY_OF_WEEK set
225 // WEEK_OF_MONTH has priority
236 // DATE has priority when set last
246 // DATE has priority when set last, MONTH not set
255 // DAY_OF_YEAR has priority when MONTH set last and DATE not se
    [all...]
  /dalvik/vm/
Misc.cpp 43 * "priority" and "tag" determine the values passed to the log calls.
47 void dvmPrintHexDumpEx(int priority, const char* tag, const void* vaddr,
112 LOG_PRI(priority, tag, "%s", out);
137 void dvmCreateLogOutputTarget(DebugOutputTarget* target, int priority,
144 target->data.log.priority = priority;
180 LOG_PRI_VA(target->data.log.priority, target->data.log.tag,
508 * in a loop. The problem with sched_yield is that, for a high-priority
647 long cutime, cstime, priority, nice, zero, itrealvalue;
660 &cutime, &cstime, &priority, &nice, &zero, &itrealvalue
    [all...]
  /packages/services/Telephony/
AndroidManifest.xml 189 <intent-filter android:priority="1000">
195 android:priority="1000">
200 <intent-filter android:priority="1000">
205 <intent-filter android:priority="1000">
217 <intent-filter android:priority="1000">
223 android:priority="1000">
228 <intent-filter android:priority="1000">
233 <intent-filter android:priority="1000">
244 <intent-filter android:priority="1">
442 <intent-filter android:priority="100"
    [all...]
  /external/chromium_org/cc/resources/
prioritized_resource_unittest.cc 397 // priority to the cutoff.
424 // Do a one-time eviction for one more texture based on priority cutoff
617 // Allocate textures which are currently high priority.
644 // Higher priority textures are finally needed.
650 // Lower priority have been fully evicted.
672 // All 16 textures have the same priority except 2 higher priority.
682 // The two high priority textures should be available, others should not.
691 // Manually reserving textures should only succeed on the higher priority
779 // Half of the memory is taken by surfaces (with high priority place-holder
    [all...]
  /bionic/libc/bionic/
libc_logging.cpp 422 static int __libc_write_log(int priority, const char* tag, const char* msg) {
429 vec[0].iov_base = &priority;
441 int __libc_format_log_va_list(int priority, const char* tag, const char* format, va_list args) {
445 return __libc_write_log(priority, tag, buffer);
448 int __libc_format_log(int priority, const char* tag, const char* format, ...) {
451 int result = __libc_format_log_va_list(priority, tag, format, args);
  /external/chromium/net/socket/
transport_client_socket_pool.cc 62 RequestPriority priority,
71 Initialize(priority, referrer, disable_resolver_cache);
76 void TransportSocketParams::Initialize(RequestPriority priority,
83 destination_.set_priority(priority);
443 RequestPriority priority,
459 return base_.RequestSocket(group_name, *casted_params, priority, handle,
  /external/chromium_org/net/cookies/
canonical_cookie.cc 117 CookiePriority priority)
128 priority_(priority) {
140 priority_(pc.Priority()) {
246 parsed_cookie.Priority());
258 CookiePriority priority) {
296 secure, http_only, priority);
  /external/chromium_org/net/quic/
quic_http_stream.cc 53 RequestPriority priority,
70 priority_ = priority;
106 QuicPriority priority = ConvertRequestPriorityToQuicPriority(priority_); local
107 stream_->set_priority(priority);
278 void QuicHttpStream::SetPriority(RequestPriority priority) {
279 priority_ = priority;
  /external/chromium_org/net/socket/
transport_client_socket_pool.cc 86 RequestPriority priority,
93 : ConnectJob(group_name, timeout_duration, priority, delegate,
176 priority(),
400 request.priority(),
435 RequestPriority priority,
450 return base_.RequestSocket(group_name, *casted_params, priority, handle,
  /external/icu4c/i18n/unicode/
ucoleitr.h 55 * ordering priority of the positioned character. The ordering priority of a
175 * Get the ordering priority of the next collation element in the text.
187 * Get the ordering priority of the previous collation element in the text.
207 * Get the processed ordering priority of the next collation element in the text.
223 * Get the processed ordering priority of the previous collation element in the text.
  /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/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyConnection.java 166 int priority = 0; // TODO: permit the caller to specify a priority? local
178 stream = new SpdyStream(streamId, this, flags, priority, slot, requestHeaders, settings);
185 spdyWriter.synStream(flags, streamId, associatedStreamId, priority, slot, requestHeaders);
449 @Override public void synStream(int flags, int streamId, int associatedStreamId, int priority,
455 new SpdyStream(streamId, SpdyConnection.this, flags, priority, slot, nameValueBlock,
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
AudioFileReaderThread.c 172 we'll now set the priority of the thread to the nominated priority
181 if (result) return 0; /*THROW_RESULT("thread_policy - Couldn't set thread as fixed priority.")*/
182 /* set priority */
183 /* precedency policy's "importance" value is relative to spawning thread's priority */
188 if (result) return 0; /*THROW_RESULT("thread_policy - Couldn't set thread priority.")*/
  /frameworks/base/services/java/com/android/server/search/
Searchables.java 277 * (a) System apps are given priority over non system apps.
279 * is defined by their declared priority.
349 // Note, this isn't a typo. Higher priority numbers imply
350 // higher priority, but are "lower" in the sort order.
351 return rhs.priority - lhs.priority;
  /external/chromium/third_party/libjingle/source/talk/examples/call/
presencepushtask.cc 152 const XmlElement * priority = stanza->FirstNamed(QN_PRIORITY); local
153 if (priority != NULL) {
155 if (talk_base::FromString(priority->BodyText(), &pri)) {
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
remote_to_local_syncer.h 44 // Conflicting trackers will have low priority for RemoteToLocalSyncer so that
121 // the priority of the tracker, and defer further handling to
125 // - Handle this case as a conflict. Lower the priority of the tracker, and
  /external/chromium_org/components/policy/core/common/
policy_bundle_unittest.cc 136 // |bundle0| has the highest priority, |bundle2| the lowest.
171 // Merge in order of decreasing priority.
180 // - kPolicyClashing0 comes from bundle0, which has the highest priority;
policy_service_impl.cc 41 PolicyMap::Entry current_priority; // Defaults to the lowest priority.
58 // new priority is higher.
182 // Merge from each provider in their order of priority.
  /external/chromium_org/net/websockets/
websocket_basic_handshake_stream.cc 120 RequestPriority priority,
123 state_.Initialize(request_info, priority, net_log, callback);
247 void WebSocketBasicHandshakeStream::SetPriority(RequestPriority priority) {
  /external/chromium_org/testing/android/
native_test_launcher.cc 81 // Writes printf() style string to Android's logger where |priority| is one of
83 void AndroidLog(int priority, const char* format, ...) {
86 __android_log_vprint(priority, kLogTag, format, args);

Completed in 2030 milliseconds

<<41424344454647484950>>