Searched refs:priority (Results 26 - 50 of 113) sorted by relevance

12345

/frameworks/av/include/common_time/
H A DICommonTimeConfig.h38 virtual status_t getMasterElectionPriority(uint8_t *priority) = 0;
39 virtual status_t setMasterElectionPriority(uint8_t priority) = 0;
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothInputDevice.aidl33 boolean setPriority(in BluetoothDevice device, int priority);
H A DIBluetoothHeadset.aidl33 boolean setPriority(in BluetoothDevice device, int priority);
H A DBluetoothA2dp.java329 * Set priority of the profile
339 * @param priority
340 * @return true if priority is set, false on error
343 public boolean setPriority(BluetoothDevice device, int priority) { argument
344 if (DBG) log("setPriority(" + device + ", " + priority + ")");
347 if (priority != BluetoothProfile.PRIORITY_OFF &&
348 priority != BluetoothProfile.PRIORITY_ON){
352 return mService.setPriority(device, priority);
363 * Get the priority of the profile.
365 * <p> The priority ca
[all...]
H A DBluetoothMap.java318 * Set priority of the profile
325 * @param priority
326 * @return true if priority is set, false on error
328 public boolean setPriority(BluetoothDevice device, int priority) { argument
329 if (DBG) log("setPriority(" + device + ", " + priority + ")");
332 if (priority != BluetoothProfile.PRIORITY_OFF &&
333 priority != BluetoothProfile.PRIORITY_ON) {
337 return mService.setPriority(device, priority);
348 * Get the priority of the profile.
350 * <p> The priority ca
[all...]
/frameworks/base/core/java/android/content/pm/
H A DResolveInfo.java68 * The declared priority of this match. Comes from the "priority"
70 * priority.
72 public int priority; field in class:ResolveInfo
77 * values are a higher priority.
227 pw.println(prefix + "priority=" + priority
260 priority = orig.priority;
278 if (priority !
[all...]
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool_SoundPoolImpl.cpp42 android_media_SoundPool_SoundPoolImpl_load_URL(JNIEnv *env, jobject thiz, jstring path, jint priority) argument
51 int id = ap->load(s, priority);
58 jlong offset, jlong length, jint priority)
64 int64_t(offset), int64_t(length), int(priority));
77 jfloat leftVolume, jfloat rightVolume, jint priority, jint loop,
83 return ap->play(sampleID, leftVolume, rightVolume, priority, loop, rate);
143 int priority)
148 ap->setPriority(channelID, priority);
57 android_media_SoundPool_SoundPoolImpl_load_FD(JNIEnv *env, jobject thiz, jobject fileDescriptor, jlong offset, jlong length, jint priority) argument
76 android_media_SoundPool_SoundPoolImpl_play(JNIEnv *env, jobject thiz, jint sampleID, jfloat leftVolume, jfloat rightVolume, jint priority, jint loop, jfloat rate) argument
142 android_media_SoundPool_SoundPoolImpl_setPriority(JNIEnv *env, jobject thiz, jint channelID, int priority) argument
/frameworks/av/media/common_time/
H A DICommonTimeConfig.cpp56 virtual status_t getMasterElectionPriority(uint8_t *priority) { argument
65 *priority = static_cast<uint8_t>(reply.readInt32());
72 virtual status_t setMasterElectionPriority(uint8_t priority) { argument
75 data.writeInt32(static_cast<int32_t>(priority));
331 uint8_t priority; local
332 status_t status = getMasterElectionPriority(&priority);
335 reply->writeInt32(static_cast<int32_t>(priority));
342 uint8_t priority = static_cast<uint8_t>(data.readInt32()); local
343 status_t status = setMasterElectionPriority(priority);
/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/media/java/android/media/audiofx/
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.java120 * @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) argument
136 super(EFFECT_TYPE_PRESET_REVERB, EFFECT_TYPE_NULL, priority, audioSession);
H A DBassBoost.java86 * @param priority the priority level requested by the application for controlling the BassBoost
88 * how much the requesting application needs control of effect parameters. The normal priority
98 public BassBoost(int priority, int audioSession) argument
101 super(EFFECT_TYPE_BASS_BOOST, EFFECT_TYPE_NULL, priority, audioSession);
H A DVirtualizer.java88 * @param priority the priority level requested by the application for controlling the Virtualizer
90 * how much the requesting application needs control of effect parameters. The normal priority
100 public Virtualizer(int priority, int audioSession) argument
103 super(EFFECT_TYPE_VIRTUALIZER, EFFECT_TYPE_NULL, priority, audioSession);
/frameworks/base/telephony/java/android/telephony/
H A DRlog.java85 public static int println(int priority, String tag, String msg) { argument
86 return Log.println_native(Log.LOG_ID_RADIO, priority, tag, msg);
/frameworks/av/include/media/stagefright/foundation/
H A DALooper.h49 int32_t priority = PRIORITY_DEFAULT
/frameworks/base/core/java/android/content/
H A DSyncRequest.java536 * @param priority the priority of this request among all requests from the calling app.
539 public Builder setPriority(int priority) { argument
540 if (priority < -2 || priority > 2) {
543 mPriority = priority;
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp46 int32_t priority,
54 mStatus = set(type, uuid, priority, cbf, user, sessionId, io);
59 int32_t priority,
86 mStatus = set(pType, pUuid, priority, cbf, user, sessionId, io);
91 int32_t priority,
119 mPriority = priority;
131 mIEffectClient, priority, io, mSessionId, &mStatus, &mId, &enabled);
44 AudioEffect(const effect_uuid_t *type, const effect_uuid_t *uuid, int32_t priority, effect_callback_t cbf, void* user, int sessionId, audio_io_handle_t io ) argument
57 AudioEffect(const char *typeStr, const char *uuidStr, int32_t priority, effect_callback_t cbf, void* user, int sessionId, audio_io_handle_t io ) argument
89 set(const effect_uuid_t *type, const effect_uuid_t *uuid, int32_t priority, effect_callback_t cbf, void* user, int sessionId, audio_io_handle_t io) argument
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java43 public static final String priorityVarName = "priority";
241 public int priority; field in class:WifiConfiguration
333 priority = 0;
383 append(" BSSID: ").append(this.BSSID).append(" PRIO: ").append(this.priority).
594 priority = source.priority;
622 dest.writeInt(priority);
653 config.priority = in.readInt();
/frameworks/base/services/common_time/
H A Dcommon_time_server_api.cpp78 status_t CommonTimeServer::getMasterElectionPriority(uint8_t *priority) { argument
80 *priority = mMasterPriority;
84 status_t CommonTimeServer::setMasterElectionPriority(uint8_t priority) { argument
87 if (priority > 0x7F)
90 mMasterPriority = priority;
/frameworks/av/media/libstagefright/foundation/
H A DALooper.cpp94 bool runOnCallingThread, bool canCallJava, int32_t priority) {
121 mName.empty() ? "ALooper" : mName.c_str(), priority);
93 start( bool runOnCallingThread, bool canCallJava, int32_t priority) argument
/frameworks/base/core/java/android/os/
H A DCommonTimeConfig.java112 * Gets the current priority of the common time service used in the master election protocol.
114 * @return an 8 bit value indicating the priority of this common time service relative to other
125 * Sets the current priority of the common time service used in the master election protocol.
127 * @param priority priority of the common time service used in the master election protocol.
128 * Lower numbers are lower priority.
132 public int setMasterElectionPriority(byte priority) { argument
135 return mUtils.transactSetInt(METHOD_SET_MASTER_ELECTION_PRIORITY, priority);
/frameworks/base/core/java/android/util/
H A DSlog.java97 public static int println(int priority, String tag, String msg) { argument
98 return Log.println_native(Log.LOG_ID_SYSTEM, priority, tag, msg);
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp106 * public static native int println_native(int buffer, int priority, String tag, String msg)
109 jint bufID, jint priority, jstring tagObj, jstring msgObj)
128 int res = __android_log_buf_write(bufID, (android_LogPriority)priority, tag, msg);
108 android_util_Log_println_native(JNIEnv* env, jobject clazz, jint bufID, jint priority, jstring tagObj, jstring msgObj) argument
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbMessage.java86 /** Normal message priority. */
89 /** Interactive message priority. */
92 /** Urgent message priority. */
95 /** Emergency message priority. */
132 /** Message priority (including emergency priority). */
146 int priority, SmsCbEtwsInfo etwsWarningInfo, SmsCbCmasInfo cmasWarningInfo) {
154 mPriority = priority;
304 * Get the message priority. Normal broadcasts return {@link #MESSAGE_PRIORITY_NORMAL}
307 * @return an integer representing the message priority
144 SmsCbMessage(int messageFormat, int geographicalScope, int serialNumber, SmsCbLocation location, int serviceCategory, String language, String body, int priority, SmsCbEtwsInfo etwsWarningInfo, SmsCbCmasInfo cmasWarningInfo) argument
[all...]
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java33 boolean useChronometer, int priority, CharSequence subText) {
57 .setPriority(priority)
28 NotificationCompatJellybean(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int mProgressMax, int mProgress, boolean mProgressIndeterminate, boolean useChronometer, int priority, CharSequence subText) argument

Completed in 1081 milliseconds

12345