HomeSort by relevance Sort by last modified time
    Searched refs:priority (Results 426 - 450 of 1753) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ui/message_center/
notification_list.cc 34 if (n1->priority() > n2->priority()) // Higher pri go first.
36 if (n1->priority() < n2->priority())
78 if (notification->priority() < SYSTEM_PRIORITY)
99 // Handles priority promotion. If the notification is already dismissed but
100 // the updated notification has higher priority, it should re-appear as a
102 if ((*iter)->priority() < new_notification->priority()) {
178 if ((*iter)->priority() < DEFAULT_PRIORITY
    [all...]
  /external/chromium_org/net/base/
prioritized_dispatcher_unittest.cc 20 // We rely on the priority enum values being sequential having starting at 0,
31 typedef PrioritizedDispatcher::Priority Priority;
39 Priority priority,
43 priority_(priority),
73 EXPECT_EQ(priority_, handle_.priority());
79 void ChangePriority(Priority priority) {
85 handle_ = dispatcher_->ChangePriority(handle_, priority);
    [all...]
  /development/ndk/sources/android/libportable/common/include/
log_portable.h 77 #define LOG_PRI(priority, tag, ...) ({ \
79 int _rv = android_printLog(priority, tag, __VA_ARGS__); \
  /device/asus/flo/camera/QCamera2/util/
QCameraCmdThread.cpp 103 * @priority: flag to indicate if this is a cmd with priority. If true, the cmd
104 * will be enqueued to the head with priority.
110 int32_t QCameraCmdThread::sendCmd(camera_cmd_type_t cmd, uint8_t sync_cmd, uint8_t priority)
120 if (priority) {
  /external/chromium_org/ash/system/chromeos/managed/
tray_locally_managed_user_unittest.cc 76 notification->rich_notification_data().priority);
85 notification->rich_notification_data().priority);
  /external/chromium_org/base/threading/
platform_thread.h 84 // Suitable for threads that shouldn't disrupt high priority work.
132 // CreateWithPriority() does the same thing as Create() except the priority of
133 // the thread is set based on |priority|. Can be used in place of Create()
136 // priority thread on Linux.
139 ThreadPriority priority);
152 ThreadPriority priority);
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_lookup_request.h 27 net::RequestPriority priority,
32 priority_(priority),
  /external/chromium_org/media/audio/win/
avrt_wrapper_win.cc 58 bool AvSetMmThreadPriority(HANDLE avrt_handle, AVRT_PRIORITY priority) {
61 g_set_mm_thread_priority(avrt_handle, priority));
  /external/chromium_org/net/dns/
mapped_host_resolver.cc 22 RequestPriority priority,
32 return impl_->Resolve(info, priority, addresses, callback, out_req, net_log);
single_request_host_resolver.cc 29 RequestPriority priority,
45 info, priority, addresses, transient_callback, &request, net_log);
  /external/chromium_org/net/http/
http_basic_stream.h 37 RequestPriority priority,
83 virtual void SetPriority(RequestPriority priority) OVERRIDE;
http_network_layer.cc 62 int HttpNetworkLayer::CreateTransaction(RequestPriority priority,
68 trans->reset(new HttpNetworkTransaction(priority, GetSession()));
http_pipelined_stream.h 41 RequestPriority priority,
86 virtual void SetPriority(RequestPriority priority) OVERRIDE;
proxy_connect_redirect_http_stream.cc 25 RequestPriority priority,
116 void ProxyConnectRedirectHttpStream::SetPriority(RequestPriority priority) {
proxy_connect_redirect_http_stream.h 29 RequestPriority priority,
66 virtual void SetPriority(RequestPriority priority) OVERRIDE;
  /external/chromium_org/net/quic/
quic_data_stream.h 61 // By default, this is the same as priority(), however it allows streams
62 // to temporarily alter effective priority. For example if a SPDY stream has
64 // priority.
99 // Sets priority_ to priority. This should only be called before bytes are
101 void set_priority(QuicPriority priority);
104 QuicPriority priority() const { return priority_; } function in class:net::QuicDataStream
120 // The priority of the stream, once parsed.
132 // True if the priority has been read, false otherwise.
  /external/chromium_org/net/url_request/
url_request_ftp_job.h 44 virtual void SetPriority(RequestPriority priority) OVERRIDE;
48 RequestPriority priority() const { return priority_; } function in class:net::URLRequestFtpJob
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
FetchRequest.cpp 34 FetchRequest::FetchRequest(const ResourceRequest& resourceRequest, const AtomicString& initiator, const String& charset, ResourceLoadPriority priority)
38 , m_priority(priority)
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
SVGGlyph.h 58 , priority(0)
94 int priority; member in struct:WebCore::SVGGlyph
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prthread.h 40 ** notably) pre-emptibility is not guaranteed. Hard priority scheduling
41 ** is not guaranteed, so programming using priority based synchronization
44 ** NSPR threads are scheduled based loosly on their client set priority.
45 ** In general, a thread of a higher priority has a statistically better
46 ** chance of running relative to threads of lower priority. However,
54 ** For scheduling, NSPR will attempt to run the highest priority LOCAL
102 PR_PRIORITY_LOW = 0, /* the lowest possible priority */
103 PR_PRIORITY_NORMAL = 1, /* most common expected priority */
113 ** "priority" will be created thread's priority
    [all...]
  /external/chromium_org/tools/cr/cr/actions/
builder.py 64 def priority(self): member in class:SkipBuilder
65 return super(SkipBuilder, self).priority - 1
  /external/dropbear/
cli-main.c 33 static void cli_dropbear_log(int priority, const char* format, va_list param);
107 static void cli_dropbear_log(int UNUSED(priority),
dbutil.h 37 extern void (*_dropbear_log)(int priority, const char* format, va_list param);
41 void dropbear_log(int priority, const char* format, ...);
  /external/replicaisland/src/com/replica/replicaisland/
RenderComponent.java 91 public void setPriority(int priority) {
92 mPriority = priority;
  /external/smack/src/org/jivesoftware/smack/util/dns/
DNSJavaResolver.java 56 int priority = srvRecord.getPriority(); local
61 r = new SRVRecord(host, port, priority, weight);

Completed in 1537 milliseconds

<<11121314151617181920>>