/external/webkit/Source/WebCore/loader/ |
ResourceLoadScheduler.cpp | 86 PassRefPtr<SubresourceLoader> ResourceLoadScheduler::scheduleSubresourceLoad(Frame* frame, SubresourceLoaderClient* client, const ResourceRequest& request, ResourceLoadPriority priority, SecurityCheckPolicy securityCheck, 91 scheduleLoad(loader.get(), priority); 108 void ResourceLoadScheduler::scheduleLoad(ResourceLoader* resourceLoader, ResourceLoadPriority priority) 111 ASSERT(priority != ResourceLoadPriorityUnresolved); 113 priority = ResourceLoadPriorityHighest; 119 host->schedule(resourceLoader, priority); 121 if (priority > ResourceLoadPriorityLow || !resourceLoader->url().protocolInHTTPFamily() || (priority == ResourceLoadPriorityLow && !hadRequests)) { 123 servePendingRequests(host, priority); 127 // Handle asynchronously so early low priority requests don't get scheduled before later high priority ones [all...] |
/libcore/luni/src/main/java/java/util/ |
PriorityQueue.java | 24 * A PriorityQueue holds elements on a priority heap, which orders the elements 52 * Constructs a priority queue with an initial capacity of 11 and natural 60 * Constructs a priority queue with the specified capacity and natural 73 * Constructs a priority queue with the specified capacity and comparator. 92 * Constructs a priority queue that contains the elements of a collection. 93 * The constructed priority queue has the initial capacity of 110% of the 98 * the collection whose elements will be added to the priority 117 * Constructs a priority queue that contains the elements of another 118 * priority queue. The constructed priority queue has the initial capacit [all...] |
/external/webkit/Source/WebKit/android/plugins/ |
ANPLogInterface.cpp | 36 android_LogPriority priority; local 39 priority = ANDROID_LOG_ERROR; 42 priority = ANDROID_LOG_WARN; 45 priority = ANDROID_LOG_DEBUG; 48 priority = ANDROID_LOG_UNKNOWN; 51 LOG_PRI_VA(priority, "plugin", format, args);
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
RenderScriptTest.java | 57 mRS.setPriority(RenderScript.Priority.LOW); 58 mRS.setPriority(RenderScript.Priority.NORMAL); 63 * Verify Priority enum properties. 66 assertEquals(RenderScript.Priority.LOW, 67 RenderScript.Priority.valueOf("LOW")); 68 assertEquals(RenderScript.Priority.NORMAL, 69 RenderScript.Priority.valueOf("NORMAL")); 70 assertEquals(2, RenderScript.Priority.values().length);
|
/external/chromium/net/spdy/ |
spdy_io_buffer.cc | 14 IOBuffer* buffer, int size, int priority, SpdyStream* stream) 16 priority_(priority),
|
/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*/
|
/libcore/luni/src/main/native/ |
java_lang_System.cpp | 42 int priority; local 44 case 'D': case 'd': priority = ANDROID_LOG_DEBUG; break; 45 case 'E': case 'e': priority = ANDROID_LOG_ERROR; break; 46 case 'F': case 'f': priority = ANDROID_LOG_FATAL; break; 47 case 'I': case 'i': priority = ANDROID_LOG_INFO; break; 48 case 'S': case 's': priority = ANDROID_LOG_SILENT; break; 49 case 'V': case 'v': priority = ANDROID_LOG_VERBOSE; break; 50 case 'W': case 'w': priority = ANDROID_LOG_WARN; break; 51 default: priority = ANDROID_LOG_DEFAULT; break; 53 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><Picture android:priority="6"/></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...] |
/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/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
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|