/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/9/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/9/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/9/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/9/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/9/platforms/android-9/arch-arm/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/netfilter/ |
xt_CLASSIFY.h | 16 u_int32_t priority; member in struct:xt_classify_target_info
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
ThreadControllerWrapper.java | 33 public static Thread runThread(Runnable runnable, int priority) 35 return m_tpool.run(runnable, priority); 61 * @param priority if >0 the task will run with the given priority 66 public Thread run(Runnable task, int priority) 73 // if( priority > 0 ) 74 // t.setPriority( priority );
|
/external/chromium_org/net/spdy/ |
spdy_write_queue.h | 24 // by priority, and then FIFO. 35 // priority associated with the given stream, which may be NULL if 37 // is non-NULL, its priority must be equal to |priority|, and it 39 void Enqueue(RequestPriority priority, 44 // Dequeues the frame producer with the highest priority that was 81 // The actual write queue, binned by priority.
|
/frameworks/base/core/java/android/util/ |
LogWriter.java | 29 * Create a new Writer that sends to the log with the given priority 32 * @param priority The desired log priority: 40 public LogWriter(int priority, String tag) { 41 mPriority = priority; 50 public LogWriter(int priority, String tag, int buffer) { 51 mPriority = priority;
|
/external/chromium_org/chrome/browser/sync_file_system/ |
sync_task_manager.cc | 55 const base::Closure& task, Priority pri, int seq) 56 : task(task), priority(pri), seq(seq) {} 63 if (left.priority != right.priority) 64 return left.priority < right.priority; 100 Priority priority, 107 priority); local 115 Priority priority 122 priority); local [all...] |
/frameworks/base/media/java/android/media/ |
SoundPool.java | 51 * on priority and then by age within that priority. Limiting the maximum 68 * <p>Priority runs low to high, i.e. higher numbers are higher priority. 69 * Priority is used when a call to play() would cause the number of active 72 * the lowest priority stream. If there are multiple streams with the same 73 * low priority, it will choose the oldest stream to stop. In the case 74 * where the priority of the new stream is lower than all the active 96 * is stopped to allow a higher priority stream to play, the stream is no 135 * @param priority the priority of the sound. Currently has no effect. Us [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
SoundPoolTest.java | 36 private static final int PRIORITY = 1; 91 int sampleId1 = mSoundPool.load(mContext, getSoundA(), PRIORITY); 98 sampleId2 = mSoundPool.load(afd, PRIORITY); 106 sampleId3 = mSoundPool.load(fd, offset, length, PRIORITY); 113 sampleId4 = mSoundPool.load(path, PRIORITY); 140 int sampleID = loadSampleSync(getSoundA(), PRIORITY); 145 int priority = 1; local 148 int streamID = mSoundPool.play(sampleID, leftVolume, rightVolume, priority, loop, rate); 162 streamID = mSoundPool.play(sampleID, leftVolume, rightVolume, priority, loop, rate); 173 priority = 0 [all...] |
/external/kernel-headers/original/linux/ |
plist.h | 2 * Descending-priority-sorted double-linked list 19 * This is a priority-sorted list of nodes; each node has a 20 * priority from INT_MIN (highest) to INT_MAX (lowest). 22 * Addition is O(K), removal is O(1), change of priority of a node is 23 * O(K) and K is the number of RT priority levels used in the system. 28 * - The tier 1 list is the prio_list, different priority nodes. 44 * The nodes on the prio_list list are sorted by priority to simplify 48 * The nodes on the node_list is ordered by priority and can contain 49 * entries which have the same priority. Those entries are ordered 53 * for the priority of the node and insert it before the node_lis [all...] |
/dalvik/vm/os/ |
android.cpp | 32 * We use Android thread priority constants to be consistent with the rest 51 ALOGW("bad priority %d", newPriority); 97 /* Get the priority (the "nice" value) of the current thread. The 107 * in backward UNIX terms means lower priority. 113 ALOGI("Unable to elevate priority from %d to %d", 117 * The priority has been elevated. Return the old value 120 ALOGV("Elevating priority from %d to %d", 131 ALOGW("Unable to reset priority to %d: %s", 134 ALOGV("Reset priority to %d", oldThreadPriority);
|
/external/chromium_org/base/threading/ |
platform_thread_linux.cc | 29 int ThreadNiceValue(ThreadPriority priority) { 30 switch (priority) { 40 NOTREACHED() << "Unknown priority."; 73 ThreadPriority priority) { 75 if (priority == kThreadPriority_RealtimeAudio) { 78 // Got real time priority, no need to set nice level. 83 // setpriority(2) will set a thread's priority if it is passed a tid as 85 // process. Setting this priority will only succeed if the user has been 88 const int kNiceSetting = ThreadNiceValue(priority);
|
/external/iproute2/tc/ |
m_skbedit.c | 36 "PM = priority PRIORITY \n" 39 "PRIORITY = classID to assign to priority field\n" 60 __u32 flags = 0, priority, mark; local 78 } else if (matches(*argv, "priority") == 0) { 81 if (get_tc_classid(&priority, *argv)) { 82 fprintf(stderr, "Illegal priority\n"); 150 &priority, sizeof(priority)); 165 __u32 *priority; local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
MessageInfo.java | 31 public int priority; field in class:MessageInfo 45 priority = in.readInt(); 59 dest.writeInt(priority); 67 priority = p; 107 builder.append(", priority = "); 108 builder.append(priority);
|