HomeSort by relevance Sort by last modified time
    Searched refs:priority (Results 251 - 275 of 957) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/os/src/android/os/cts/
ProcessTest.java 98 * 1.Set the priority of the calling thread, based on Linux priorities level,
99 * from -20 for highest scheduling priority to 19 for lowest scheduling priority.
104 int priority = Process.getThreadPriority(myTid); local
105 assertTrue(priority >= THREAD_PRIORITY_HIGHEST
106 && priority <= Process.THREAD_PRIORITY_LOWEST);
  /external/chromium/net/socket/
transport_client_socket_pool.h 29 RequestPriority priority,
46 void Initialize(RequestPriority priority, const GURL& referrer,
158 RequestPriority priority,
  /external/chromium/net/spdy/
spdy_stream.h 121 int priority() const { return priority_; } function in class:net::SpdyStream
122 void set_priority(int priority) { priority_ = priority; }
  /external/replicaisland/src/com/replica/replicaisland/
LevelBuilder.java 119 public void addTileMapLayer(GameObject background, int priority, float scrollSpeed,
142 priority = SortConstants.OVERLAY; //hack!
152 backgroundRender.setPriority(priority);
182 // We want the foreground layer to be render priority FOREGROUND, but
185 // its render priority is set.
  /frameworks/base/core/java/android/util/
Log.java 56 * Priority constant for the println method; use Log.v.
61 * Priority constant for the println method; use Log.d.
66 * Priority constant for the println method; use Log.i.
71 * Priority constant for the println method; use Log.w.
76 * Priority constant for the println method; use Log.e.
81 * Priority constant for the println method.
325 * @param priority The priority/type of this log message
331 public static int println(int priority, String tag, String msg) {
332 return println_native(LOG_ID_MAIN, priority, tag, msg)
    [all...]
Slog.java 81 public static int println(int priority, String tag, String msg) {
82 return Log.println_native(Log.LOG_ID_SYSTEM, priority, tag, msg);
  /external/webkit/Source/WebCore/platform/network/
ResourceRequestBase.cpp 89 data->m_priority = priority();
326 ResourceLoadPriority ResourceRequestBase::priority() const function in class:WebCore::ResourceRequestBase
333 void ResourceRequestBase::setPriority(ResourceLoadPriority priority)
337 m_priority = priority;
381 if (a.priority() != b.priority())
  /bionic/libc/kernel/common/linux/
binder.h 112 int priority; member in struct:binder_pri_desc
117 int priority; member in struct:binder_pri_ptr_cookie
  /cts/tests/tests/content/src/android/content/pm/cts/
ResolveInfoTest.java 62 assertEquals(resolveInfo.priority, infoFromParcel.priority);
  /development/ndk/platforms/android-3/include/linux/
binder.h 109 int priority; member in struct:binder_pri_desc
114 int priority; member in struct:binder_pri_ptr_cookie
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListView.java 47 * priority for the task.
55 int priority = (Integer) child.getTag(); local
56 String priorityStr = "Priority: " + priority;
  /external/chromium/third_party/libjingle/source/talk/base/
signalthread.cc 57 bool SignalThread::SetPriority(ThreadPriority priority) {
61 return worker_.SetPriority(priority);
thread.h 137 // Sets the thread's priority. Must be called before Start().
138 ThreadPriority priority() const { return priority_; } function in class:talk_base::Thread
139 bool SetPriority(ThreadPriority priority);
  /external/dropbear/
svr-session.c 160 /* priority is priority as with syslog() */
161 void svr_dropbear_log(int priority, const char* format, va_list param) {
172 syslog(priority, "%s", printbuf);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
Property.java 194 * Gets the custom sort priority of this property
196 * @return the sort priority
203 * Sets the custom sort priority of this property
205 * @param priority the new priority to use
207 public void setPriority(int priority) {
208 this.mPriority = priority;
219 /** Sort {@link Property} instances by priority */
220 public static final Comparator<Property> PRIORITY = new Comparator<Property>() {
  /external/ipsec-tools/src/racoon/
policy.h 67 u_int32_t priority; /* priority for the policy */ member in struct:policyindex
119 (idx)->priority = (_priority); \
  /external/kernel-headers/original/linux/
binder.h 156 int priority; member in struct:binder_pri_desc
161 int priority; member in struct:binder_pri_ptr_cookie
216 * int: priority
294 * int: priority
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
WifiConfigurationTest.java 31 wifiConfiguration.priority = 2;
51 assertThat(copy.priority, equalTo(2));
  /external/stressapptest/src/
logger.cc 35 void Logger::VLogF(int priority, const char *format, va_list args) {
36 if (priority > verbosity_) {
  /external/webkit/Source/WebKit/win/
DOMCSSClasses.cpp 138 /* [in] */ BSTR priority)
142 WTF::String priorityString(priority);
  /frameworks/base/core/java/android/bluetooth/
IBluetoothHeadset.aidl 33 boolean setPriority(in BluetoothDevice device, int priority);
  /frameworks/base/media/java/android/media/
MediaInserter.java 58 private void insert(Uri tableUri, ContentValues values, boolean priority) throws RemoteException {
59 HashMap<Uri, List<ContentValues>> rowmap = priority ? mPriorityRowMap : mRowMap;
  /frameworks/base/media/java/android/media/audiofx/
PresetReverb.java 120 * @param priority the priority level requested by the application for controlling the
123 * The normal priority is 0, above normal is a positive number, below normal a negative number.
134 public PresetReverb(int priority, int audioSession)
136 super(EFFECT_TYPE_PRESET_REVERB, EFFECT_TYPE_NULL, priority, audioSession);
  /frameworks/base/telephony/java/android/telephony/
Rlog.java 85 public static int println(int priority, String tag, String msg) {
86 return Log.println_native(Log.LOG_ID_RADIO, priority, tag, msg);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ipv6.h 100 * are glued to priority now, forming "class".
105 __u8 priority:4, member in struct:ipv6hdr
109 priority:4;

Completed in 640 milliseconds

<<11121314151617181920>>