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

123456

/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/libmedia/
H A DSoundPool.cpp206 int SoundPool::load(const char* path, int priority __unused)
208 ALOGV("load: path=%s, priority=%d", path, priority);
216 int SoundPool::load(int fd, int64_t offset, int64_t length, int priority __unused)
218 ALOGV("load: fd=%d, offset=%" PRId64 ", length=%" PRId64 ", priority=%d",
219 fd, offset, length, priority);
242 int priority, int loop, float rate)
244 ALOGV("play sampleID=%d, leftVolume=%f, rightVolume=%f, priority=%d, loop=%d, rate=%f",
245 sampleID, leftVolume, rightVolume, priority, loop, rate);
265 channel = allocateChannel_l(priority);
241 play(int sampleID, float leftVolume, float rightVolume, int priority, int loop, float rate) argument
280 allocateChannel_l(int priority) argument
383 setPriority(int channelID, int priority) argument
557 play(const sp<Sample>& sample, int nextChannelID, float leftVolume, float rightVolume, int priority, int loop, float rate) argument
667 int priority; local
909 set(const sp<Sample>& sample, int channelID, float leftVolume, float rightVolume, int priority, int loop, float rate) argument
[all...]
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/av/include/media/
H A DAudioEffect.h163 * the same effect type but with a higher priority. Control is returned when the
193 * on the priority parameter. If priority is higher than the priority used by the current
216 * priority: requested priority for effect control: the priority level corresponds to the
217 * value of priority parameter: negative values indicate lower priorities, positive values
218 * higher priorities, 0 being the normal priority.
231 int32_t priority
297 int32_t priority() const { return mPriority; } function in class:android::AudioEffect
[all...]
/frameworks/rs/driver/
H A DrsdCore.cpp51 static void SetPriority(const Context *rsc, int32_t priority);
238 void SetPriority(const Context *rsc, int32_t priority) { argument
241 dc->mCpuRef->setPriority(priority);
245 rsdGLSetPriority(rsc, priority);
/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.java335 * Set priority of the profile
345 * @param priority
346 * @return true if priority is set, false on error
349 public boolean setPriority(BluetoothDevice device, int priority) { argument
350 if (DBG) log("setPriority(" + device + ", " + priority + ")");
353 if (priority != BluetoothProfile.PRIORITY_OFF &&
354 priority != BluetoothProfile.PRIORITY_ON){
358 return mService.setPriority(device, priority);
369 * Get the priority of the profile.
371 * <p> The priority ca
[all...]
H A DBluetoothMap.java317 * Set priority of the profile
324 * @param priority
325 * @return true if priority is set, false on error
327 public boolean setPriority(BluetoothDevice device, int priority) { argument
328 if (DBG) log("setPriority(" + device + ", " + priority + ")");
331 if (priority != BluetoothProfile.PRIORITY_OFF &&
332 priority != BluetoothProfile.PRIORITY_ON) {
336 return mService.setPriority(device, priority);
347 * Get the priority of the profile.
349 * <p> The priority ca
[all...]
/frameworks/base/core/java/android/content/pm/
H A DResolveInfo.java69 * The declared priority of this match. Comes from the "priority"
71 * priority.
73 public int priority; field in class:ResolveInfo
78 * values are a higher priority.
242 pw.println(prefix + "priority=" + priority
276 priority = orig.priority;
295 if (priority !
[all...]
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool_SoundPoolImpl.cpp49 android_media_SoundPool_SoundPoolImpl_load_URL(JNIEnv *env, jobject thiz, jstring path, jint priority) argument
58 int id = ap->load(s, priority);
65 jlong offset, jlong length, jint priority)
71 int64_t(offset), int64_t(length), int(priority));
84 jfloat leftVolume, jfloat rightVolume, jint priority, jint loop,
90 return (jint) ap->play(sampleID, leftVolume, rightVolume, priority, loop, rate);
150 jint priority)
155 ap->setPriority(channelID, (int) priority);
64 android_media_SoundPool_SoundPoolImpl_load_FD(JNIEnv *env, jobject thiz, jobject fileDescriptor, jlong offset, jlong length, jint priority) argument
83 android_media_SoundPool_SoundPoolImpl_play(JNIEnv *env, jobject thiz, jint sampleID, jfloat leftVolume, jfloat rightVolume, jint priority, jint loop, jfloat rate) argument
149 android_media_SoundPool_SoundPoolImpl_setPriority(JNIEnv *env, jobject thiz, jint channelID, jint priority) argument
/frameworks/volley/tests/src/com/android/volley/
H A DRequestTest.java53 public TestRequest(Priority priority) { argument
55 mPriority = priority;
/frameworks/volley/tests/src/com/android/volley/mock/
H A DMockRequest.java86 public void setPriority(Priority priority) { argument
87 mPriority = priority;
/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 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/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/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestGetMessagesListing.java92 if (filter.priority != MessagesFilter.PRIORITY_ANY) {
93 oap.add(OAP_TAGID_FILTER_PRIORITY, filter.priority);
/frameworks/av/include/media/stagefright/foundation/
H A DALooper.h49 int32_t priority = PRIORITY_DEFAULT
/frameworks/base/core/jni/
H A Dandroid_os_SELinux.cpp446 int priority; local
450 priority = ANDROID_LOG_WARN;
453 priority = ANDROID_LOG_INFO;
456 priority = ANDROID_LOG_ERROR;
460 LOG_PRI_VA(priority, "SELinux", fmt, ap);
/frameworks/base/libs/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

Completed in 417 milliseconds

123456