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

<<31323334353637383940>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 330 public boolean setPriority(BluetoothDevice device, int priority) {
333 return service.setPriority(device, priority);
427 public boolean setPriority(BluetoothDevice device, int priority) {
432 priority); local
433 if (DBG) Log.d(TAG,"Saved priority " + device + " = " + priority);
440 int priority = Settings.Global.getInt(getContentResolver(), local
443 return priority;
606 //check if it is inbound connection in Quiet mode, priority and Bond status
  /frameworks/support/v4/java/android/support/v4/app/
NotificationCompat.java 36 * Obsolete flag indicating high-priority notifications; use the priority field instead.
43 * Default notification priority for {@link NotificationCompat.Builder#setPriority(int)}.
50 * Lower notification priority for {@link NotificationCompat.Builder#setPriority(int)},
58 * Lowest notification priority for {@link NotificationCompat.Builder#setPriority(int)};
65 * Higher notification priority for {@link NotificationCompat.Builder#setPriority(int)},
73 * Highest notification priority for {@link NotificationCompat.Builder#setPriority(int)},
90 // translate high priority requests into legacy flag
373 * Only for use with extremely high-priority notifications demanding the user's
528 * Set the relative priority for this notification
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative/
declarative_rule_unittest.cc 238 dict->GetInteger("priority", &min_priority);
289 " \"priority\": 5}")));
323 " \"priority\": 200 \n"
349 EXPECT_EQ(200, rule->priority());
402 " \"priority\": 200 \n"
424 " \"priority\": 200 \n"
  /external/chromium_org/chrome/browser/resources/image_loader/
request.js 93 * Returns priority of the request. The higher priority, the faster it will
94 * be handled. The highest priority is 0. The default one is 2.
96 * @return {number} Priority.
99 return (this.request_.priority !== undefined) ? this.request_.priority : 2;
worker.js 9 * synchronously, taking into account priorities. The highest priority is 0.
60 * Adds a request to the internal priority queue and executes it when requests
  /external/chromium_org/net/http/
http_transaction_unittest.h 114 TestTransactionConsumer(net::RequestPriority priority,
167 MockNetworkTransaction(net::RequestPriority priority,
207 virtual void SetPriority(net::RequestPriority priority) OVERRIDE;
215 net::RequestPriority priority() const { return priority_; } function in class:MockNetworkTransaction
246 // Returns the last priority passed to CreateTransaction, or
269 net::RequestPriority priority,
http_network_layer.cc 62 int HttpNetworkLayer::CreateTransaction(RequestPriority priority,
68 trans->reset(new HttpNetworkTransaction(priority, GetSession()));
  /external/chromium_org/third_party/icu/source/i18n/unicode/
ucoleitr.h 53 * ordering priority of the positioned character. The ordering priority of a
171 * Get the ordering priority of the next collation element in the text.
183 * Get the ordering priority of the previous collation element in the text.
202 * Get the processed ordering priority of the next collation element in the text.
218 * Get the processed ordering priority of the previous collation element in the text.
  /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);
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_task.c 76 /* To set the priority and stack size */
77 pthread_attr_t ThreadAttr; /*For setting the priority and stack size */
87 /** task priority */
88 /* TIMM_OSAL_S32 priority;*/
146 /* Updation of the priority and the stack size */
155 sched.sched_priority = uPriority; /* relative to the default priority */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XKBgeom.h 121 unsigned char priority; member in struct:_XkbShapeDoodad
136 unsigned char priority; member in struct:_XkbTextDoodad
152 unsigned char priority; member in struct:_XkbIndicatorDoodad
173 unsigned char priority; member in struct:_XkbLogoDoodad
189 unsigned char priority; member in struct:_XkbAnyDoodad
233 unsigned char priority; member in struct:_XkbSection
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBgeom.h 121 unsigned char priority; member in struct:_XkbShapeDoodad
136 unsigned char priority; member in struct:_XkbTextDoodad
152 unsigned char priority; member in struct:_XkbIndicatorDoodad
173 unsigned char priority; member in struct:_XkbLogoDoodad
189 unsigned char priority; member in struct:_XkbAnyDoodad
233 unsigned char priority; member in struct:_XkbSection
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBgeom.h 121 unsigned char priority; member in struct:_XkbShapeDoodad
136 unsigned char priority; member in struct:_XkbTextDoodad
152 unsigned char priority; member in struct:_XkbIndicatorDoodad
173 unsigned char priority; member in struct:_XkbLogoDoodad
189 unsigned char priority; member in struct:_XkbAnyDoodad
233 unsigned char priority; member in struct:_XkbSection
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
TemplateList.java 215 * list. Sort by import precedence, then priority, then by document order.
230 // then by priority (highest priority is at front),
233 double priority = getPriorityOrScore(item); local
265 else if (priority > workPriority) // import precedence is equal
267 else if (priority < workPriority)
283 else if (priority > workPriority)
285 else if (priority < workPriority)
376 * score of that match. This score or priority can always be
386 * the value defined by the priority attribute of the template
392 double priority = matchPat.getTemplate().getPriority(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
port.cc 785 // Adding PRIORITY Attribute.
787 // and component id information is unchanged from the original priority.
788 // priority = (2^24)*(type preference) +
792 (connection_->local_candidate().priority() & 0x00FFFFFF);
854 uint64 Connection::priority() const { function in class:cricket::Connection
855 uint64 priority = 0; local
856 // RFC 5245 - 5.7.2. Computing Pair Priority and Ordering Pairs
857 // Let G be the priority for the candidate provided by the controlling
858 // agent. Let D be the priority for the candidate provided by the
860 // pair priority = 2^32*MIN(G,D) + 2*MAX(G,D) + (G>D?1:0
1365 const uint32 priority = priority_attr->value(); local
    [all...]
  /bionic/libc/kernel/common/linux/
ipv6.h 85 __u8 priority:4, member in struct:ipv6hdr
90 priority:4;
  /development/ndk/platforms/android-3/include/linux/
binder.h 109 int priority; member in struct:binder_pri_desc
114 int priority; member in struct:binder_pri_ptr_cookie
  /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__); \
  /docs/source.android.com/src/devices/
audio_latency.jd 74 <li>high-priority threads with SCHED_FIFO scheduling</li>
105 are still susceptible to other higher priority <code>SCHED_FIFO</code> threads.
108 priorities range from 1 to 99. The audio threads run at priority
109 2 or 3. This leaves priority 1 available for lower priority threads,
110 and priorities 4 to 99 for higher priority threads. We recommend that
111 you use priority 1 whenever possible, and reserve priorities 4 to 99 for
134 a CFS thread or <code>SCHED_FIFO</code> thread of priority 1).
  /external/chromium/chrome/browser/prefs/
pref_service.h 64 // Since managed prefs have the highest priority, this also indicates
69 // that value is being overridden by a higher-priority source.
73 // being overridden by a higher-priority source.
77 // extension, and not by any higher-priority source.
81 // user setting, and not by any higher-priority source.
85 // and has not been set by any higher-priority source (even with the same
90 // case if no higher-priority source than the user store controls the
95 // the case if no higher-priority source than the extension store controls
  /external/chromium/net/socket/
socks_client_socket_pool.h 32 RequestPriority priority, const GURL& referrer);
127 RequestPriority priority,
  /external/chromium_org/base/prefs/
pref_service.h 87 // Since managed prefs have the highest priority, this also indicates
96 // that value is being overridden by a higher-priority source.
100 // being overridden by a higher-priority source.
104 // extension, and not by any higher-priority source.
108 // user setting, and not by any higher-priority source.
112 // and has not been set by any higher-priority source (even with the same
117 // case if no higher-priority source than the user store controls the
122 // the case if no higher-priority source than the extension store controls
  /external/chromium_org/cc/resources/
prioritized_resource_manager.cc 82 // Compute a priority cutoff based on memory pressure
109 // Disallow any textures with priority below the external cutoff to have
122 // of the same priority are accepted or rejected together, rather than
208 // Allow textures that have priority equal to the cutoff, but not strictly
214 // Disallow textures that do not have a priority strictly higher than the
275 // Update the backing's priority from its new owner.
330 // If the external priority cutoff indicates that unused memory should be
378 // very end of the list are not sorted by priority. Sort them before doing the
tile.h 43 const TilePriority& priority(WhichTree tree) const { function in class:cc::Tile
52 void SetPriority(WhichTree tree, const TilePriority& priority);
  /external/chromium_org/extensions/browser/
external_provider_interface.h 34 // proceed if the extension is already installed from a higher priority
45 // proceed if the extension is already installed from a higher priority

Completed in 2698 milliseconds

<<31323334353637383940>>