Searched defs:priority (Results 1 - 25 of 97) sorted by relevance

1234

/frameworks/base/core/java/com/android/internal/os/
H A DAndroidPrintStream.java28 private final int priority; field in class:AndroidPrintStream
34 * @param priority from {@link android.util.Log}
37 public AndroidPrintStream(int priority, String tag) { argument
42 this.priority = priority;
47 Log.println(priority, tag, line);
/frameworks/base/services/core/java/com/android/server/
H A DServiceThread.java32 public ServiceThread(String name, int priority, boolean allowIo) { argument
33 super(name, priority);
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLog_Delegate.java23 private static char priorityChar(int priority) { argument
24 switch (priority) {
43 static int println_native(int bufID, int priority, String tag, String msgs) { argument
44 String prefix = priorityChar(priority) + "/" + tag + ": ";
/frameworks/av/media/libstagefright/
H A DProcessInfo.cpp30 bool ProcessInfo::getPriority(int pid, int* priority) { argument
46 // Use process state as the priority. Lower the value, higher the priority.
47 *priority = states;
/frameworks/base/core/java/android/net/
H A DNetworkConfig.java43 * higher number == higher priority when turning off connections
45 public int priority; field in class:NetworkConfig
62 * [associated radio-type],[priority],[dependencyMet]
69 priority = Integer.parseInt(fragments[3]);
/frameworks/base/core/java/android/os/
H A DHandlerThread.java36 * @param priority The priority to run the thread at. The value supplied must be from
39 public HandlerThread(String name, int priority) { argument
41 mPriority = priority;
/frameworks/base/core/java/android/util/
H A DLogPrinter.java29 * Create a new Printer that sends to the log with the given priority
32 * @param priority The desired log priority:
40 public LogPrinter(int priority, String tag) { argument
41 mPriority = priority;
50 public LogPrinter(int priority, String tag, int buffer) { argument
51 mPriority = priority;
H A DSlog.java119 public static int println(int priority, String tag, String msg) { argument
120 return Log.println_native(Log.LOG_ID_SYSTEM, priority, tag, msg);
H A DLogWriter.java29 * 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) { argument
41 mPriority = priority;
50 public LogWriter(int priority, String tag, int buffer) { argument
51 mPriority = priority;
/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingConfig.java21 void setPackagePriority(String packageName, int uid, int priority); argument
/frameworks/base/telephony/java/android/telephony/
H A DRlog.java80 public static int println(int priority, String tag, String msg) { argument
81 return Log.println_native(Log.LOG_ID_RADIO, priority, tag, msg);
/frameworks/volley/src/test/java/com/android/volley/
H A DRequestTest.java50 public TestRequest(Priority priority) { argument
52 mPriority = priority;
/frameworks/base/core/java/android/content/pm/
H A DPermissionGroupInfo.java59 public int priority; field in class:PermissionGroupInfo
69 priority = orig.priority;
111 dest.writeInt(priority);
129 priority = source.readInt();
/frameworks/base/media/java/android/media/
H A DMediaInserter.java58 private void insert(Uri tableUri, ContentValues values, boolean priority) throws RemoteException { argument
59 HashMap<Uri, List<ContentValues>> rowmap = priority ? mPriorityRowMap : mRowMap;
/frameworks/base/core/java/android/hardware/input/
H A DKeyboardLayout.java44 public KeyboardLayout(String descriptor, String label, String collection, int priority) { argument
48 mPriority = priority;
101 // Note that these arguments are intentionally flipped since you want higher priority
102 // keyboards to be listed before lower priority keyboards.
/frameworks/multidex/library/test/src/android/util/
H A DLog.java204 * @param priority The priority/type of this log message
210 public static int println(int priority, String tag, String msg) { argument
211 return println(LOG_ID_MAIN, priority, tag, msg);
222 int priority, String tag, String msg) {
221 println(int bufID, int priority, String tag, String msg) argument
/frameworks/av/media/libmediaplayerservice/
H A DDrmSessionManager.cpp183 int priority = -1; local
197 priority = tempPriority;
199 if (tempPriority > priority) {
201 priority = tempPriority;
207 *lowestPriority = priority;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothSap.java343 * Set priority of the profile
348 * @param priority
349 * @return true if priority is set, false on error
352 public boolean setPriority(BluetoothDevice device, int priority) { argument
353 if (DBG) log("setPriority(" + device + ", " + priority + ")");
356 if (priority != BluetoothProfile.PRIORITY_OFF &&
357 priority != BluetoothProfile.PRIORITY_ON) {
361 return mService.setPriority(device, priority);
372 * Get the priority of the profile.
375 * @return priority o
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp80 * public static native int println_native(int buffer, int priority, String tag, String msg)
83 jint bufID, jint priority, jstring tagObj, jstring msgObj)
102 int res = __android_log_buf_write(bufID, (android_LogPriority)priority, tag, msg);
82 android_util_Log_println_native(JNIEnv* env, jobject clazz, jint bufID, jint priority, jstring tagObj, jstring msgObj) argument
/frameworks/base/libs/common_time/
H A Dcommon_time_config_service.cpp38 status_t CommonTimeConfigService::getMasterElectionPriority(uint8_t *priority) { argument
39 return mTimeServer.getMasterElectionPriority(priority);
42 status_t CommonTimeConfigService::setMasterElectionPriority(uint8_t priority) { argument
43 return mTimeServer.setMasterElectionPriority(priority);
/frameworks/base/media/java/android/media/audiofx/
H A DBassBoost.java79 * @param priority the priority level requested by the application for controlling the BassBoost
81 * how much the requesting application needs control of effect parameters. The normal priority
91 public BassBoost(int priority, int audioSession) argument
94 super(EFFECT_TYPE_BASS_BOOST, EFFECT_TYPE_NULL, priority, audioSession);
H A DLoudnessEnhancer.java90 * @param priority the priority level requested by the application for controlling the
93 * parameters. The normal priority is 0, above normal is a positive number, below normal a
103 public LoudnessEnhancer(int priority, int audioSession) argument
106 super(EFFECT_TYPE_LOUDNESS_ENHANCER, EFFECT_TYPE_NULL, priority, audioSession);
H A DPresetReverb.java112 * @param priority the priority level requested by the application for controlling the
115 * The normal priority is 0, above normal is a positive number, below normal a negative number.
126 public PresetReverb(int priority, int audioSession) argument
128 super(EFFECT_TYPE_PRESET_REVERB, EFFECT_TYPE_NULL, priority, audioSession);
/frameworks/base/tools/aapt2/
H A DStringPool.h46 uint32_t priority; member in struct:aapt::StringPool::Context
/frameworks/rs/driver/
H A DrsdCore.cpp51 static void SetPriority(const Context *rsc, int32_t priority);
345 void SetPriority(const Context *rsc, int32_t priority) { argument
348 dc->mCpuRef->setPriority(priority);
352 rsdGLSetPriority(rsc, priority);

Completed in 7457 milliseconds

1234