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

<<11121314151617181920>>

  /external/chromium_org/ipc/
ipc_sync_message.cc 42 PriorityValue priority,
44 : Message(routing_id, type, priority),
100 msg->priority());
  /external/chromium_org/net/tools/flip_server/
mem_cache.h 92 priority(0),
100 priority(0),
107 int priority; member in class:net::MemCacheIter
  /external/chromium_org/third_party/openssl/openssl/crypto/pqueue/
pq_test.c 80 fprintf(stderr, "found %ld\n", item->priority);
83 fprintf(stderr, "found %ld\n", item->priority);
86 fprintf(stderr, "found %ld\n", item ? item->priority: 0);
  /external/grub/
TODO 9 Reported bugs generally have top priority.
11 but don't really impede things) have lower priority.
13 higher priority.
  /external/ipsec-tools/src/libipsec/
ipsec_strerror.c 76 "Priority offset not in valid range [-2147483647, 2147483648]", /*EIPSEC_INVAL_PRIORITY_OFFSET*/
77 "Priority offset from base not in valid range [0, 1073741823] for negative offsets and [0, 1073741824] for positive offsets", /* EIPSEC_INVAL_PRIORITY_OFFSET */
78 "Policy priority not compiled in", /*EIPSEC_PRIORITY_NOT_COMPILED*/
ipsec_strerror.h 67 #define EIPSEC_INVAL_PRIORITY_OFFSET 27 /*priority offset out of range*/
68 #define EIPSEC_INVAL_PRIORITY_BASE_OFFSET 28 /* priority base offset too
70 #define EIPSEC_PRIORITY_NOT_COMPILED 29 /*no priority support in libipsec*/
  /external/openssl/crypto/pqueue/
pq_test.c 80 fprintf(stderr, "found %ld\n", item->priority);
83 fprintf(stderr, "found %ld\n", item->priority);
86 fprintf(stderr, "found %ld\n", item ? item->priority: 0);
  /external/srtp/crypto/kernel/
err.c 95 err_report(int priority, char *format, ...) {
98 if (priority <= err_level) {
109 switch (priority) {
  /frameworks/base/core/java/android/bluetooth/
BluetoothA2dp.java 329 * Set priority of the profile
332 * Priority can be one of {@link #PRIORITY_ON} orgetBluetoothManager
339 * @param priority
340 * @return true if priority is set, false on error
343 public boolean setPriority(BluetoothDevice device, int priority) {
344 if (DBG) log("setPriority(" + device + ", " + priority + ")");
347 if (priority != BluetoothProfile.PRIORITY_OFF &&
348 priority != BluetoothProfile.PRIORITY_ON){
352 return mService.setPriority(device, priority);
363 * Get the priority of the profile
    [all...]
BluetoothInputDevice.java 402 * Set priority of the profile
405 * Priority can be one of {@link #PRIORITY_ON} or
412 * @param priority
413 * @return true if priority is set, false on error
416 public boolean setPriority(BluetoothDevice device, int priority) {
417 if (DBG) log("setPriority(" + device + ", " + priority + ")");
419 if (priority != BluetoothProfile.PRIORITY_OFF &&
420 priority != BluetoothProfile.PRIORITY_ON) {
424 return mService.setPriority(device, priority);
435 * Get the priority of the profile
    [all...]
  /frameworks/base/core/java/com/android/internal/logging/
AndroidHandler.java 142 int priority = getAndroidLevel(level); local
143 if (!Log.isLoggable(tag, priority)) {
148 Log.println(priority, tag, message);
  /frameworks/wilhelm/src/
sllog.h 19 // In order of decreasing priority, the log priority levels are:
39 // USE_LOG is the minimum log priority level that is enabled at build time.
  /system/core/toolbox/
renice.c 43 fprintf(stderr, "USAGE: %s [[-r] [-t TYPE] priority pids ...] [-g pid]\n", s);
52 printf("pid %d's priority: %d\n", pid, getpriority(PRIO_PROCESS, pid));
105 // do realtime priority adjustment
  /external/chromium_org/net/spdy/
spdy_write_queue_unittest.cc 62 // Makes a SpdyStream with the given priority and a NULL SpdySession
65 SpdyStream* MakeTestStream(RequestPriority priority) {
68 GURL(), priority, 0, 0, BoundNetLog());
71 // Add some frame producers of different priority. The producers
72 // should be dequeued in priority order with their associated stream.
113 // Add some frame producers with the same priority. The producers
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
ResourceRequest.cpp 68 data->m_priority = priority();
226 ResourceLoadPriority ResourceRequest::priority() const function in class:WebCore::ResourceRequest
231 void ResourceRequest::setPriority(ResourceLoadPriority priority)
233 m_priority = priority;
270 if (a.priority() != b.priority())
  /external/kernel-headers/original/asm-x86/
apicdef_32.h 155 /*080*/ struct { /* Task Priority Register */
156 u32 priority : 8, member in struct:local_apic::__anon21586
162 struct { /* Arbitration Priority Register */
163 u32 priority : 8, member in struct:local_apic::__anon21587
169 struct { /* Processor Priority Register */
170 u32 priority : 8, member in struct:local_apic::__anon21588
  /external/kernel-headers/original/linux/sunrpc/
sched.h 80 unsigned char tk_priority : 2;/* Task priority */
206 struct list_head tasks[RPC_NR_PRIORITY]; /* task queue for each priority level */
208 unsigned char maxpriority; /* maximum priority (0 if queue is not a priority queue) */
209 unsigned char priority; /* current priority */ member in struct:rpc_wait_queue
  /external/llvm/lib/CodeGen/
LatencyPriorityQueue.cpp 1 //===---- LatencyPriorityQueue.cpp - A latency-oriented priority queue ----===//
89 // single predecessor has a higher priority, since scheduling it will make
101 /// unscheduled predecessor, we want to increase its priority: it getting
103 /// node of the same priority that will not make a node available.
111 // Since it is available, it must be in the priority queue. First remove it.
114 // Reinsert the node into the priority queue, which recomputes its
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
syslog.h 44 * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
60 #define LOG_PRIMASK 0x07 /* mask to extract priority part (internal) */
61 /* extract priority */
66 #define INTERNAL_NOPRI 0x10 /* the "no priority" priority */
153 #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
syslog.h 44 * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
60 #define LOG_PRIMASK 0x07 /* mask to extract priority part (internal) */
61 /* extract priority */
66 #define INTERNAL_NOPRI 0x10 /* the "no priority" priority */
153 #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
syslog.h 44 * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
60 #define LOG_PRIMASK 0x07 /* mask to extract priority part (internal) */
61 /* extract priority */
66 #define INTERNAL_NOPRI 0x10 /* the "no priority" priority */
153 #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
  /art/runtime/
thread_android.cc 33 // We use Android thread priority constants to be consistent with the rest
51 LOG(WARNING) << "bad priority " << newPriority;
  /cts/tests/tests/content/src/android/content/pm/cts/
ResolveInfoTest.java 62 assertEquals(resolveInfo.priority, infoFromParcel.priority);
  /external/bluetooth/bluedroid/utils/src/
bt_utils.c 112 ** Description Raise task priority for A2DP streaming
136 ALOGW("failed to change priority tid: %d to %d", tid, ANDROID_PRIORITY_AUDIO);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/catifier/
event_page.js 20 priority: 100,
39 priority: 1000,

Completed in 1452 milliseconds

<<11121314151617181920>>