HomeSort by relevance Sort by last modified time
    Searched full:getpriority (Results 1 - 25 of 821) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/executor/
Prioritized.java 11 public int getPriority();
FifoPriorityThreadPoolExecutor.java 13 * {@link Prioritized}. {@link Prioritized} runnables that return lower values for {@link Prioritized#getPriority()}
64 priority = ((Prioritized) runnable).getPriority();
  /external/nist-sip/java/javax/sip/header/
PriorityHeader.java 13 String getPriority();
  /art/runtime/
thread_android.cc 58 // TODO: b/18249098 The code below is broken. It uses getpriority() as a proxy for whether a
67 } else if (getpriority(PRIO_PROCESS, tid) >= ANDROID_PRIORITY_BACKGROUND) {
78 int native_priority = getpriority(PRIO_PROCESS, 0);
80 PLOG(WARNING) << "getpriority failed";
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ThreadFactoryBuilderTest.java 64 assertEquals(defaultThread.getPriority(), thread.getPriority());
121 assertEquals(i, thread.getPriority());
149 assertEquals(1, factory1.newThread(monitoredRunnable).getPriority());
152 assertEquals(1, factory1.newThread(monitoredRunnable).getPriority());
153 assertEquals(2, factory2.newThread(monitoredRunnable).getPriority());
163 assertEquals(1, factory1.newThread(monitoredRunnable).getPriority());
166 assertEquals(1, factory1.newThread(monitoredRunnable).getPriority());
188 assertEquals(THREAD_PRIORITY, thread.getPriority());
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 24 int getPriority() const { return priority; }
  /external/lzma/CPP/Windows/
Thread.h 31 int GetPriority() { return ::GetThreadPriority(thread); }
  /external/smack/src/org/xbill/DNS/
MXRecord.java 42 getPriority() {
  /external/chromium_org/base/process/
process_posix.cc 68 int Process::GetPriority() const {
70 return getpriority(PRIO_PROCESS, process_);
process_win.cc 41 DWORD priority = GetPriority();
87 int Process::GetPriority() const {
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
PriorityThreadFactoryTest.java 45 assertEquals(priority, r.getPriority());
53 public synchronized int getPriority() throws InterruptedException {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategory.java 59 * <code>system.getPriority() + additional</code>.
63 return system(system.getPriority() - SYSTEM_BASE + additional);
156 public int getPriority() {
  /bionic/libc/upstream-netbsd/lib/libc/gen/
nice.c 61 prio = getpriority(PRIO_PROCESS, 0);
69 return getpriority(PRIO_PROCESS, 0);
  /external/chromium_org/net/spdy/
spdy_priority_forest_test.cc 20 EXPECT_EQ(1000, forest.GetPriority(1));
28 EXPECT_EQ(50, forest.GetPriority(5));
36 EXPECT_EQ(130, forest.GetPriority(13));
139 EXPECT_EQ(1000, forest.GetPriority(1));
141 EXPECT_EQ(0, forest.GetPriority(3));
145 EXPECT_EQ(1000, forest.GetPriority(3));
204 EXPECT_EQ(70, forest.GetPriority(5));
207 EXPECT_EQ(40, forest.GetPriority(5));
  /frameworks/volley/tests/src/com/android/volley/mock/
MockRequest.java 84 private Priority mPriority = super.getPriority();
91 public Priority getPriority() {
  /hardware/intel/img/hwcomposer/common/base/
HwcLayerList.h 88 return r->getPriority() - l->getPriority();
  /bionic/libc/bionic/
getpriority.c 32 int getpriority(int which, int who) function
  /external/replicaisland/src/com/replica/replicaisland/
DrawableObject.java 39 public float getPriority() {
  /frameworks/base/core/java/android/bluetooth/
IBluetoothA2dp.aidl 34 int getPriority(in BluetoothDevice device);
IBluetoothInputDevice.aidl 34 int getPriority(in BluetoothDevice device);
IBluetoothMap.aidl 36 int getPriority(in BluetoothDevice device);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
A2dpProfile.java 128 if (mService.getPriority(device) > BluetoothProfile.PRIORITY_ON){
143 return mService.getPriority(device) > BluetoothProfile.PRIORITY_OFF;
148 return mService.getPriority(device);
154 if (mService.getPriority(device) < BluetoothProfile.PRIORITY_ON) {
HeadsetProfile.java 133 if (mService.getPriority(device) > BluetoothProfile.PRIORITY_ON) {
158 return mService.getPriority(device) > BluetoothProfile.PRIORITY_OFF;
163 return mService.getPriority(device);
169 if (mService.getPriority(device) < BluetoothProfile.PRIORITY_ON) {
MapProfile.java 123 if (mService.getPriority(device) > BluetoothProfile.PRIORITY_ON) {
144 return mService.getPriority(device) > BluetoothProfile.PRIORITY_OFF;
149 return mService.getPriority(device);
155 if (mService.getPriority(device) < BluetoothProfile.PRIORITY_ON) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintColumn.java 240 delta = issue2.getPriority() - issue1.getPriority();
507 int priority = getPriority(marker);
514 private int getPriority(IMarker marker) {
517 return issue.getPriority();
524 return getPriority(marker1) - getPriority(marker2);

Completed in 841 milliseconds

1 2 3 4 5 6 7 8 91011>>