/external/chromium_org/cc/resources/ |
worker_pool_unittest.cc | 50 unsigned priority) : callback(callback), 54 priority(priority) { 61 unsigned priority; member in struct:cc::__anon6636::FakeWorkerPool::Task 88 new internal::GraphNode(new_task.get(), it->priority)); 95 new internal::GraphNode(new_dependent_task.get(), it->priority)); 296 TEST_F(WorkerPoolTest, Priority) { 309 1u), // Priority 1 320 0u) // Priority 0 327 // Check if tasks ran in order of priority [all...] |
/external/chromium_org/chrome/browser/automation/ |
automation_util.cc | 132 cookie.IsHttpOnly(), cookie.Priority(), 319 if (cookie.Priority() != net::COOKIE_PRIORITY_DEFAULT) { 320 cookie_dict->SetString("priority", 321 net::CookiePriorityToString(cookie.Priority())); 380 net::CookiePriority priority = net::COOKIE_PRIORITY_DEFAULT; local 416 if (cookie_dict->HasKey("priority")) { 418 if (!cookie_dict->GetString("priority", &priority_string)) { 419 reply.SendError("optional 'priority' invalid"); 422 priority = net::StringToCookiePriority(priority_string); 428 base::Time::FromDoubleT(expiry), secure, http_only, priority)); local [all...] |
/external/chromium_org/chrome/browser/extensions/api/declarative/ |
declarative_rule.h | 131 // // Return the minimum priority of rules that can be evaluated after this 166 // Returns the minimum priority of rules that may be evaluated after 191 typedef int Priority; 208 Priority priority); 231 Priority priority() const { return priority_; } function in class:extensions::DeclarativeRule 239 // Returns the minimum priority of rules that may be evaluated after 242 Priority GetMinimumPriority() const; 250 Priority priority_ 467 int priority = *(rule->priority); local [all...] |
/external/chromium_org/ipc/ |
ipc_message.h | 47 PRIORITY_MASK = 0x03, // Low 2 bits of store the priority value. 60 // Initialize a message with a user-defined type, priority value, and 62 Message(int32 routing_id, uint32 type, PriorityValue priority); 72 PriorityValue priority() const { function in class:IPC::Message
|
/external/chromium_org/net/http/ |
http_stream_factory_impl_job.h | 42 RequestPriority priority, 77 void SetPriority(RequestPriority priority); 79 RequestPriority priority() const { return priority_; } function in class:net::HttpStreamFactoryImpl::Job
|
/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/ |
ssl_client_socket_pool_unittest.cc | 295 // Make sure that SSLConnectJob passes on its priority to its 303 RequestPriority priority = static_cast<RequestPriority>(i); local 312 EXPECT_EQ(OK, handle.Init("a", params, priority, callback.callback(), 314 EXPECT_EQ(priority, transport_socket_pool_.last_request_priority()); 572 // Make sure that SSLConnectJob passes on its priority to its 693 // Make sure that SSLConnectJob passes on its priority to its [all...] |
/external/chromium_org/net/spdy/ |
spdy_priority_forest.h | 24 // there can be multiple lists, with each list root having its own priority. 29 // The NodeId and Priority types must be POD that support comparison (most 31 template <typename NodeId, typename Priority> 43 // Add a new root node to the forest, with the given priority. Returns true 45 bool AddRootNode(NodeId node_id, Priority priority); 56 // Get the priority of the given node. If the node doesn't exist, or is not 57 // a root node (and thus has no priority), returns Priority(). 58 Priority GetPriority(NodeId node_id) const 120 Priority priority; \/\/ used for root nodes member in union:net::SpdyPriorityForest::Node::__anon12110 [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,
|
/external/chromium_org/net/url_request/ |
url_request_http_job.h | 48 virtual void SetPriority(RequestPriority priority) OVERRIDE; 52 RequestPriority priority() const { function in class:net::URLRequestHttpJob
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebURLRequest.cpp | 325 WebURLRequest::Priority WebURLRequest::priority() const function in class:blink::WebURLRequest 327 return static_cast<WebURLRequest::Priority>( 328 m_private->m_resourceRequest->priority());
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
ResourceRequest.cpp | 67 data->m_priority = priority(); 226 ResourceLoadPriority ResourceRequest::priority() const function in class:WebCore::ResourceRequest 231 void ResourceRequest::setPriority(ResourceLoadPriority priority) 233 m_priority = priority; 275 if (a.priority() != b.priority())
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
thread.h | 141 // Sets the thread's priority. Must be called before Start(). 142 ThreadPriority priority() const { return priority_; } function in class:talk_base::Thread 143 bool SetPriority(ThreadPriority priority);
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
candidate.h | 50 const talk_base::SocketAddress& address, uint32 priority, 55 priority_(priority), username_(username), password_(password), 74 uint32 priority() const { return priority_; } function in class:cricket::Candidate 75 void set_priority(const uint32 priority) { priority_ = priority; } 81 // Maps old preference (which was 0.0-1.0) to match priority (which 91 // Limiting priority to UINT_MAX when value exceeds uint32 max. 144 // the priority, since that should be the same if the rest is (and it's 168 // priority = (2^24)*(type preference) +
|
/external/chromium_org/third_party/openssl/openssl/crypto/bio/ |
bss_log.c | 131 static void xsyslog(BIO* bp, int priority, const char* string); 173 int priority, i; local 212 priority = mapping[i].log_level; 215 xsyslog(b, priority, pp); 254 static void xsyslog(BIO *bp, int priority, const char *string) 263 switch (priority) 309 static void xsyslog(BIO *bp, int priority, const char *string) 336 switch (priority) 387 static void xsyslog(BIO *bp, int priority, const char *string) 389 syslog(priority, "%s", string) [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
logging.h | 212 android_LogPriority priority = ANDROID_LOG_UNKNOWN; local 215 priority = ANDROID_LOG_INFO; 219 priority = ANDROID_LOG_WARN; 223 priority = ANDROID_LOG_ERROR; 227 priority = ANDROID_LOG_FATAL; 231 __android_log_write(priority, "gperftools", buf);
|
/external/chromium_org/ui/message_center/ |
notification_list_unittest.cc | 71 std::string AddPriorityNotification(NotificationPriority priority) { 73 optional.priority = priority; 332 TEST_F(NotificationListTest, Priority) { 336 // Default priority has the limit on the number of the popups. 343 // Low priority: not visible to popups. 353 // Minimum priority: doesn't update the unread count. 367 // Higher priority: no limits to the number of popups. 418 optional.priority = 1; 437 EXPECT_EQ(1, (*notifications.begin())->priority()); 448 message_center::RichNotificationData priority; local [all...] |
/external/chromium_org/v8/src/ |
object-observe.js | 46 // priority of the callback (which determines delivery order between 208 // priority -> observer and is then stored on objectInfo.changeObservers. 214 var priority = CallbackInfoGetPriority(callbackInfo); 216 objectInfo.changeObservers[priority] = observer; 230 var priority = CallbackInfoGetPriority(callbackInfo); 231 objectInfo.changeObservers[priority] = observer; 245 var priority = CallbackInfoGetPriority(callbackInfo); variable 246 delete objectInfo.changeObservers[priority]; 256 for (var priority in objectInfo.changeObservers) { 257 if (ObserverIsActive(objectInfo.changeObservers[priority], objectInfo) [all...] |
/external/kernel-headers/original/linux/ |
notifier.h | 38 int priority; member in struct:notifier_block
|
/external/openssl/crypto/bio/ |
bss_log.c | 131 static void xsyslog(BIO* bp, int priority, const char* string); 173 int priority, i; local 212 priority = mapping[i].log_level; 215 xsyslog(b, priority, pp); 254 static void xsyslog(BIO *bp, int priority, const char *string) 263 switch (priority) 309 static void xsyslog(BIO *bp, int priority, const char *string) 336 switch (priority) 387 static void xsyslog(BIO *bp, int priority, const char *string) 389 syslog(priority, "%s", string) [all...] |
/external/qemu/hw/ |
i8259.c | 41 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 == 8 289 int priority, cmd, irq; local [all...] |
/external/smack/src/org/jivesoftware/smack/packet/ |
Presence.java | 44 * <li>Priority -- non-negative numerical priority of a sender's resource. The 45 * highest resource priority is the default recipient of packets not addressed 63 private int priority = Integer.MIN_VALUE; field in class:Presence 68 * Creates a new presence update. Status, priority, and mode are left un-set. 77 * Creates a new presence update with a specified status, priority, and mode. 81 * @param priority the priority of this presence update. 84 public Presence(Type type, String status, int priority, Mode mode) { 87 setPriority(priority); [all...] |
/external/tcpdump/ |
print-decnet.c | 185 int priority; local 262 priority = EXTRACT_LE_8BITS(cmp->cm_rhello.rh_priority); 268 blksize, priority, hello);
|
/external/wpa_supplicant_8/hostapd/ |
main.c | 122 int priority; local 126 priority = LOG_DEBUG; 129 priority = LOG_INFO; 132 priority = LOG_NOTICE; 135 priority = LOG_WARNING; 138 priority = LOG_INFO; 141 syslog(priority, "%s", format);
|
/frameworks/av/media/common_time/ |
ICommonTimeConfig.cpp | 56 virtual status_t getMasterElectionPriority(uint8_t *priority) { 65 *priority = static_cast<uint8_t>(reply.readInt32()); 72 virtual status_t setMasterElectionPriority(uint8_t priority) { 75 data.writeInt32(static_cast<int32_t>(priority)); 331 uint8_t priority; local 332 status_t status = getMasterElectionPriority(&priority); 335 reply->writeInt32(static_cast<int32_t>(priority)); 342 uint8_t priority = static_cast<uint8_t>(data.readInt32()); local 343 status_t status = setMasterElectionPriority(priority);
|