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

1 23 4 5 6 7 8 91011>>

  /external/chromium/net/spdy/
spdy_io_buffer.cc 14 IOBuffer* buffer, int size, int priority, SpdyStream* stream)
16 priority_(priority),
  /external/chromium_org/net/url_request/
url_request_http_job_unittest.cc 30 // Inherit from URLRequestHttpJob to expose the priority and some
41 using URLRequestHttpJob::priority;
64 // priority, both before and after start.
67 EXPECT_EQ(DEFAULT_PRIORITY, job->priority());
70 EXPECT_EQ(LOWEST, job->priority());
73 EXPECT_EQ(LOW, job->priority());
76 EXPECT_EQ(LOW, job->priority());
79 EXPECT_EQ(MEDIUM, job->priority());
82 // Make sure that URLRequestHttpJob passes on its priority to its
93 EXPECT_EQ(LOW, network_layer_.last_transaction()->priority());
    [all...]
  /external/chromium_org/sync/protocol/
priority_preference_specifics.proto 5 // Sync protocol datatype extension for priority preferences.
19 // Properties of a synced priority preference.
  /external/guava/guava/src/com/google/common/util/concurrent/
ThreadFactoryBuilder.java 33 * <li> a {@linkplain Thread#setPriority thread priority}
48 private Integer priority = null; field in class:ThreadFactoryBuilder
86 * Sets the priority for new threads created with this ThreadFactory.
88 * @param priority the priority for new Threads created with this
92 public ThreadFactoryBuilder setPriority(int priority) {
95 checkArgument(priority >= Thread.MIN_PRIORITY,
96 "Thread priority (%s) must be >= %s", priority, Thread.MIN_PRIORITY);
97 checkArgument(priority <= Thread.MAX_PRIORITY
149 final Integer priority = builder.priority; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_vlan.h 12 uint8_t prio; /* VLAN User Priority {0-7} */
15 bit 2=1 User-Priority arg, bit 3=1 encap*/
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_vlan.h 12 uint8_t prio; /* VLAN User Priority {0-7} */
15 bit 2=1 User-Priority arg, bit 3=1 encap*/
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_vlan.h 12 uint8_t prio; /* VLAN User Priority {0-7} */
15 bit 2=1 User-Priority arg, bit 3=1 encap*/
  /external/chromium_org/base/threading/
platform_thread_android.cc 22 int ThreadNiceValue(ThreadPriority priority) {
41 switch (priority) {
51 NOTREACHED() << "Unknown priority.";
59 ThreadPriority priority) {
60 // On Android, we set the Audio priority through JNI as Audio priority
62 if (priority == kThreadPriority_RealtimeAudio) {
68 // setpriority(2) will set a thread's priority if it is passed a tid as
70 // process. Setting this priority will only succeed if the user has been
73 int kNiceSetting = ThreadNiceValue(priority);
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
sync_task_manager.h 32 enum Priority {
65 // Schedules a task at the given priority.
67 Priority priority,
70 Priority priority,
85 Priority priority; member in struct:sync_file_system::SyncTaskManager::PendingTask
89 PendingTask(const base::Closure& task, Priority pri, int seq);
107 void PushPendingTask(const base::Closure& closure, Priority priority)
    [all...]
  /libcore/luni/src/main/native/
java_lang_System.cpp 44 int priority; local
46 case 'D': case 'd': priority = ANDROID_LOG_DEBUG; break;
47 case 'E': case 'e': priority = ANDROID_LOG_ERROR; break;
48 case 'F': case 'f': priority = ANDROID_LOG_FATAL; break;
49 case 'I': case 'i': priority = ANDROID_LOG_INFO; break;
50 case 'S': case 's': priority = ANDROID_LOG_SILENT; break;
51 case 'V': case 'v': priority = ANDROID_LOG_VERBOSE; break;
52 case 'W': case 'w': priority = ANDROID_LOG_WARN; break;
53 default: priority = ANDROID_LOG_DEFAULT; break;
55 LOG_PRI(priority, LOG_TAG, "%s", message.c_str())
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoPriorityResolver.java 39 * Maintains a cache of photo priority per account type. During contact aggregation
40 * photo with a higher priority is chosen for the the entire contact, barring an
55 * The XML tag capturing the picture priority. The syntax is:
56 * <code>&lt;Picture android:priority="6"/&gt;</code>
61 * Name of the attribute of the Picture tag capturing the priority itself.
63 private static final String PRIORITY_ATTR = "priority";
73 * Returns the photo priority for the specified account type. Maintains cache
81 Integer priority = mPhotoPriorities.get(accountType); local
82 if (priority == null) {
83 priority = resolvePhotoPriority(accountType)
128 int priority = DEFAULT_PRIORITY; 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...]
  /art/runtime/base/
logging_android.cc 35 int priority = kLogSeverityToAndroidLogPriority[data.severity]; local
36 if (priority == ANDROID_LOG_FATAL) {
37 LOG_PRI(priority, tag, "%s:%d] %s", data.file, data.line_number, message);
39 LOG_PRI(priority, tag, "%s", message);
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_CLASSIFY.h 16 u_int32_t priority; member in struct:xt_classify_target_info
  /external/chromium/net/http/
http_request_info.cc 11 priority(LOWEST),
  /external/chromium_org/tools/cr/cr/base/
arch.py 54 def priority(self): member in class:X64Arch
55 return super(X64Arch, self).priority + 1
65 def priority(self): member in class:Arm32Arch
66 return super(Arm32Arch, self).priority + 2
  /external/clang/test/Frontend/
warning-mapping-1.c 1 // Check that -w has higher priority than -Werror.
  /external/iptables/extensions/
libxt_CLASSIFY.man 1 This module allows you to set the skb\->priority value (and thus classify the packet into a specific CBQ class).
  /external/kernel-headers/original/linux/
ioprio.h 20 * These are the io priority groups as implemented by CFQ. RT is the realtime
33 * 8 best effort priority levels are supported
44 * if process has set io priority explicitly, use that. if not, convert
45 * the cpu scheduler nice value to an io priority
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
Log_Delegate.java 23 private static char priorityChar(int priority) {
24 switch (priority) {
43 static int println_native(int bufID, int priority, String tag, String msgs) {
44 String prefix = priorityChar(priority) + "/" + tag + ": ";
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/netfilter/
xt_CLASSIFY.h 16 u_int32_t priority; member in struct:xt_classify_target_info
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/netfilter/
xt_CLASSIFY.h 16 u_int32_t priority; member in struct:xt_classify_target_info
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/netfilter/
xt_CLASSIFY.h 16 u_int32_t priority; member in struct:xt_classify_target_info
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/netfilter/
xt_CLASSIFY.h 16 u_int32_t priority; member in struct:xt_classify_target_info
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/netfilter/
xt_CLASSIFY.h 16 u_int32_t priority; member in struct:xt_classify_target_info

Completed in 1484 milliseconds

1 23 4 5 6 7 8 91011>>