HomeSort by relevance Sort by last modified time
    Searched full:priority (Results 501 - 525 of 3413) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/storage_monitor/
storage_monitor_linux.cc 383 MountPriorityMap::iterator priority = local
385 DCHECK(priority != mount_priority_map_.end());
387 priority->second.find(mount_point);
390 DCHECK(has_priority != priority->second.end());
394 if (priority->second.size() > 1)
397 priority->second.erase(mount_point);
398 if (priority->second.empty())
479 MountPriorityMap::iterator priority = mount_priority_map_.find(mount_device); local
480 DCHECK(priority != mount_priority_map_.end());
481 const base::FilePath& other_mount_point = priority->second.begin()->first
    [all...]
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store_unittest.cc 214 // Test that priority load of cookies for a specfic domain key could be
254 // 3. Priority Load (aaa.com)
334 ASSERT_EQ(net::COOKIE_PRIORITY_DEFAULT, cookies[0]->Priority());
427 // Add a low-priority persistent cookie.
436 // Add a medium-priority persistent cookie.
445 // Add a high-priority peristent cookie.
457 // Create a store that loads session cookie and test that the priority
471 // Validate that each cookie has the correct priority.
475 EXPECT_EQ(net::COOKIE_PRIORITY_LOW, cookie_map[kLowName]->Priority());
479 EXPECT_EQ(net::COOKIE_PRIORITY_MEDIUM, cookie_map[kMediumName]->Priority());
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_ssid.h 62 * pnext - Next network in per-priority list
65 * priority class. The heads of these list are stored in the pssid
81 * priority - Priority group
83 * By default, all networks will get same priority group (0). If some
86 * selecting a BSS. The priority groups will be iterated in decreasing
87 * priority (i.e., the larger the priority value, the sooner the
88 * network is matched against the scan results). Within each priority
93 * not using this priority to select the order for scanning. Instead
97 int priority; member in struct:wpa_ssid
    [all...]
  /frameworks/base/core/java/android/util/
Log.java 57 * Priority constant for the println method; use Log.v.
62 * Priority constant for the println method; use Log.d.
67 * Priority constant for the println method; use Log.i.
72 * Priority constant for the println method; use Log.w.
77 * Priority constant for the println method; use Log.e.
82 * Priority constant for the println method.
341 * @param priority The priority/type of this log message
347 public static int println(int priority, String tag, String msg) {
348 return println_native(LOG_ID_MAIN, priority, tag, msg)
    [all...]
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbMessage.java 86 /** Normal message priority. */
89 /** Interactive message priority. */
92 /** Urgent message priority. */
95 /** Emergency message priority. */
132 /** Message priority (including emergency priority). */
146 int priority, SmsCbEtwsInfo etwsWarningInfo, SmsCbCmasInfo cmasWarningInfo) {
154 mPriority = priority;
304 * Get the message priority. Normal broadcasts return {@link #MESSAGE_PRIORITY_NORMAL}
307 * @return an integer representing the message priority
    [all...]
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_int.h 318 tL2CAP_CHNL_PRIORITY ccb_priority; /* Channel priority */
357 /* Round-Robin service for the same priority channels */
358 #define L2CAP_NUM_CHNL_PRIORITY 3 /* Total number of priority group (high, medium, low)*/
359 #define L2CAP_CHNL_PRIORITY_WEIGHT 5 /* weight per priority for burst transmission quota */
362 /* CCBs within the same LCB are served in round robin with priority */
363 /* It will make sure that low priority channel (for example, HF signaling on RFCOMM) */
364 /* can be sent to headset even if higher priority channel (for example, AV media channel) */
369 tL2C_CCB *p_serve_ccb; /* current serving ccb within priority group */
370 tL2C_CCB *p_first_ccb; /* first ccb of priority group */
371 UINT8 num_ccb; /* number of channels in priority group *
    [all...]
  /external/chromium_org/cc/resources/
tile_manager.cc 206 // where top-priority tiles are initialized.
269 prio[HIGH_PRIORITY_BIN] = tile->priority(ACTIVE_TREE);
270 prio[LOW_PRIORITY_BIN] = tile->priority(PENDING_TREE);
273 prio[HIGH_PRIORITY_BIN] = tile->priority(PENDING_TREE);
274 prio[LOW_PRIORITY_BIN] = tile->priority(ACTIVE_TREE);
308 BinFromTilePriority(tile->priority(ACTIVE_TREE),
315 BinFromTilePriority(tile->priority(PENDING_TREE),
333 // the priority to be NOW_AND_READY_TO_DRAW_BIN, even if HIGH_PRIORITY_BIN
336 // priority.
341 // Insert the tile into a priority set
    [all...]
picture_layer_tiling.h 145 // Copies the src_tree priority into the dst_tree priority for all tiles.
146 // The src_tree priority is reset to the lowest priority possible. This
prioritized_resource.h 47 // Set priority for the requested texture.
48 void set_request_priority(int priority) { priority_ = priority; }
91 // been allowed given its priority.
raster_worker_pool_perftest.cc 65 unsigned priority = 0; local
74 priority++,
81 priority++,
96 priority++,
  /libcore/libdvm/src/main/java/java/lang/
Thread.java 55 * <p>Each {@code Thread} has an integer priority that affect how the thread is
56 * scheduled by the OS. A new thread inherits the priority of its parent.
57 * A thread's priority can be set using the {@link #setPriority(int)} method.
106 * The maximum priority value allowed for a thread.
113 * The minimum priority value allowed for a thread.
120 * The normal (default) priority value assigned to the main thread.
132 volatile int priority; field in class:Thread
355 Thread(ThreadGroup group, String name, int priority, boolean daemon) {
374 this.priority = priority;
    [all...]
  /developers/samples/android/connectivity/network/BasicNetworkDemo/BasicNetworkDemo/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 40 public void println(int priority, String tag, String msg, Throwable tr) {
  /developers/samples/android/connectivity/network/NetworkConnect/NetworkConnect/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 40 public void println(int priority, String tag, String msg, Throwable tr) {
  /developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetect/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 40 public void println(int priority, String tag, String msg, Throwable tr) {
  /developers/samples/android/security/keystore/BasicAndroidKeyStore/BasicAndroidKeyStore/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 40 public void println(int priority, String tag, String msg, Throwable tr) {
  /development/apps/SdkSetup/
AndroidManifest.xml 27 <intent-filter android:priority="1">
  /development/ndk/platforms/android-3/include/linux/
ipmi_smi.h 49 int priority);
notifier.h 21 int priority; member in struct:notifier_block
  /external/chromium/base/test/
perf_test_suite.cc 35 // Raise to high priority to have more precise measurements. Since we don't
  /external/chromium_org/ash/system/chromeos/network/
network_observer.h 24 // Priority order, highest to lowest.
  /external/chromium_org/base/test/
perf_test_suite.cc 35 // Raise to high priority to have more precise measurements. Since we don't
  /external/chromium_org/chrome/browser/
browser_process_platform_part_chromeos.h 33 // Returns the out-of-memory priority manager.
  /external/chromium_org/chrome/browser/chromeos/memory/
oom_priority_manager.h 33 // algorithm embedded here for priority in being killed upon OOM
37 // and have been idle for longest, in that order of priority.
150 // Wall-clock time when the priority manager started running.
157 // Wall-clock time of last priority adjustment, used to correct the above
  /external/chromium_org/content/public/browser/
devtools_client_host.h 39 // with greater priority.
  /external/chromium_org/net/dns/
host_resolver.h 88 RequestPriority priority() const { return priority_; } function in class:net::HostResolver::RequestInfo
89 void set_priority(RequestPriority priority) { priority_ = priority; }
107 // The priority for the request.

Completed in 655 milliseconds

<<21222324252627282930>>