Searched refs:priority (Results 126 - 150 of 660) sorted by relevance

1234567891011>>

/external/chromium_org/media/audio/win/
H A Davrt_wrapper_win.cc58 bool AvSetMmThreadPriority(HANDLE avrt_handle, AVRT_PRIORITY priority) { argument
61 g_set_mm_thread_priority(avrt_handle, priority));
/external/chromium_org/net/dns/
H A Dmapped_host_resolver.cc22 RequestPriority priority,
32 return impl_->Resolve(info, priority, addresses, callback, out_req, net_log);
21 Resolve(const RequestInfo& original_info, RequestPriority priority, AddressList* addresses, const CompletionCallback& callback, RequestHandle* out_req, const BoundNetLog& net_log) argument
H A Dsingle_request_host_resolver.cc29 RequestPriority priority,
45 info, priority, addresses, transient_callback, &request, net_log);
28 Resolve(const HostResolver::RequestInfo& info, RequestPriority priority, AddressList* addresses, const CompletionCallback& callback, const BoundNetLog& net_log) argument
/external/chromium_org/net/http/
H A Dhttp_network_layer.cc62 int HttpNetworkLayer::CreateTransaction(RequestPriority priority, argument
67 trans->reset(new HttpNetworkTransaction(priority, GetSession()));
H A Dhttp_stream_base.h43 RequestPriority priority,
156 // Called when the priority of the parent transaction changes.
157 virtual void SetPriority(RequestPriority priority) = 0;
H A Dproxy_connect_redirect_http_stream.cc25 RequestPriority priority,
110 void ProxyConnectRedirectHttpStream::SetPriority(RequestPriority priority) { argument
23 InitializeStream( const HttpRequestInfo* request_info, RequestPriority priority, const BoundNetLog& net_log, const CompletionCallback& callback) argument
H A Dproxy_connect_redirect_http_stream.h29 RequestPriority priority,
65 virtual void SetPriority(RequestPriority priority) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkResource.cpp81 ResourceLoadPriority priority = blocking ? ResourceLoadPriorityUnresolved : ResourceLoadPriorityVeryLow; local
82 return FetchRequest(ResourceRequest(m_owner->document().completeURL(m_url)), m_owner->localName(), m_charset, priority);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DSVGGlyph.h58 , priority(0)
94 int priority; member in struct:WebCore::SVGGlyph
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprthread.h40 ** 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/
H A Dbuilder.py71 def priority(self): member in class:SkipBuilder
72 return super(SkipBuilder, self).priority - 1
H A Drunner.py76 def priority(self): member in class:SkipRunner
77 return super(SkipRunner, self).priority - 1
/external/replicaisland/src/com/replica/replicaisland/
H A DRenderComponent.java91 public void setPriority(int priority) { argument
92 mPriority = priority;
H A DRenderSystem.java53 public void scheduleForDraw(DrawableObject object, Vector2 position, int priority, boolean cameraRelative) { argument
56 element.set(object, position, priority, cameraRelative);
104 public void set(DrawableObject drawable, Vector2 position, int priority, boolean isCameraRelative) { argument
109 final int sortBucket = priority * TEXTURE_SORT_BUCKET_SIZE;
114 sortOffset = (tex.resource % TEXTURE_SORT_BUCKET_SIZE) * Utils.sign(priority);
/external/smack/src/org/jivesoftware/smack/util/dns/
H A DDNSJavaResolver.java56 int priority = srvRecord.getPriority();
61 r = new SRVRecord(host, port, priority, weight);
/external/qemu/hw/intc/
H A Di8259.c41 uint8_t priority_add; /* highest irq priority */
101 /* return the highest priority found in mask (highest = smallest
105 int priority; local
108 priority = 0;
109 while ((mask & (1 << ((priority + s->priority_add) & 7))) == 0)
110 priority++;
111 return priority;
117 int mask, cur_priority, priority; local
120 priority = get_priority(s, mask);
121 if (priority
289 int priority, cmd, irq; local
[all...]
/external/chromium_org/cc/test/
H A Dfake_picture_layer_impl.cc95 TilePriority priority; local
96 priority.resolution = HIGH_RESOLUTION;
97 priority.priority_bin = TilePriority::NOW;
98 priority.distance_to_visible = 0.f;
99 tile->SetPriority(tree, priority);
/external/chromium_org/net/quic/
H A Dquic_data_stream.cc22 // to set a priority client-side, or cancel a stream before stripping the
23 // priority from the wire server-side. In either case, start out with a
24 // priority in the middle.
110 void QuicDataStream::set_priority(QuicPriority priority) { argument
112 priority_ = priority;
116 return priority();
155 void QuicDataStream::OnStreamHeadersPriority(QuicPriority priority) { argument
157 set_priority(priority);
/external/chromium_org/ui/message_center/
H A Dnotification.cc28 : priority(DEFAULT_PRIORITY),
36 : priority(other.priority),
107 return is_read_ || optional_fields_.priority == MIN_PRIORITY;
125 optional_fields_.priority = SYSTEM_PRIORITY;
/external/qemu/distrib/sdl-1.2.15/src/timer/os2/
H A DSDL_systimer.c102 ULONG priority = 0, nesting; /* Shut down the warnings */ local
126 It turns out that on Warp3fp42 it is the priority at the time
130 priority = (tib->tib_ptib2->tib2_ulpri);
131 if ((priority & 0xFF00) == 0x0300) /* already time-critical */
135 /* We do not want to run at high priority if a signal causes us
151 /* Nobody switched priority while we slept... Ignore errors... */
152 /* tib->tib_ptib2->tib2_ulpri = priority; */ /* Get back... */
153 if (!(rc = DosSetPriority(PRTYS_THREAD, (priority>>8) & 0xFF, 0, 0)))
154 rc = DosSetPriority(PRTYS_THREAD, 0, priority & 0xFF, 0);
159 /* The actual blocking call is made with "normal" priority
[all...]
/external/smack/src/org/jivesoftware/smack/util/
H A DDNSUtil.java150 * Note that we follow the RFC with one exception. In a group of the same priority, only the first entry
151 * is calculated by random. The others are ore simply ordered by their priority.
165 // create the priority buckets
168 Integer priority = r.getPriority();
169 List<SRVRecord> bucket = buckets.get(priority);
173 buckets.put(priority, bucket);
180 for (Integer priority : buckets.keySet()) {
181 List<SRVRecord> bucket = buckets.get(priority);
201 // If running total is 0, then all weights in this priority
/external/chromium_org/chrome/browser/extensions/api/declarative/
H A Drules_registry_unittest.cc144 add_rules[0]->priority.reset(new int(2));
154 ASSERT_TRUE(get_rules[0]->priority.get());
155 ASSERT_TRUE(get_rules[1]->priority.get());
159 EXPECT_EQ(2, std::min(*get_rules[0]->priority, *get_rules[1]->priority));
161 std::max(*get_rules[0]->priority, *get_rules[1]->priority));
/external/chromium_org/net/socket/
H A Dsocks_client_socket_pool.cc42 RequestPriority priority,
49 : ConnectJob(group_name, timeout_duration, priority, delegate,
121 priority(),
149 priority(),
177 request.priority(),
216 RequestPriority priority, ClientSocketHandle* handle,
221 return base_.RequestSocket(group_name, *casted_socket_params, priority,
40 SOCKSConnectJob( const std::string& group_name, RequestPriority priority, const scoped_refptr<SOCKSSocketParams>& socks_params, const base::TimeDelta& timeout_duration, TransportClientSocketPool* transport_pool, HostResolver* host_resolver, Delegate* delegate, NetLog* net_log) argument
214 RequestSocket( const std::string& group_name, const void* socket_params, RequestPriority priority, ClientSocketHandle* handle, const CompletionCallback& callback, const BoundNetLog& net_log) argument
H A Dsocks_client_socket_pool_unittest.cc108 int StartRequestV5(const std::string& group_name, RequestPriority priority) { argument
110 &pool_, group_name, priority, CreateSOCKSv5Params());
143 // Make sure that SOCKSConnectJob passes on its priority to its
147 RequestPriority priority = static_cast<RequestPriority>(i); local
155 handle.Init("a", CreateSOCKSv5Params(), priority,
157 EXPECT_EQ(priority, transport_socket_pool_.last_request_priority());
162 // Make sure that SOCKSConnectJob passes on its priority to its
166 RequestPriority priority = static_cast<RequestPriority>(i); local
174 handle.Init("a", CreateSOCKSv4Params(), priority,
176 EXPECT_EQ(priority, transport_socket_pool
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlogging.h212 android_LogPriority priority = ANDROID_LOG_UNKNOWN; local
214 priority = ANDROID_LOG_VERBOSE;
218 priority = ANDROID_LOG_INFO;
222 priority = ANDROID_LOG_WARN;
226 priority = ANDROID_LOG_ERROR;
230 priority = ANDROID_LOG_FATAL;
235 __android_log_write(priority, "gperftools", buf);

Completed in 655 milliseconds

1234567891011>>