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

12345

/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java253 // priority order of the nettrackers
579 // high priority first
588 if (na.priority < currentLowest) continue;
589 if (na.priority > currentLowest) {
590 if (na.priority < nextLowest || nextLowest == 0) {
591 nextLowest = na.priority;
2079 // don't signal a reconnect for anything lower or equal priority than our
2081 // TODO - don't filter by priority now - nice optimization but risky
2304 && (mNetConfigs[mActiveDefaultNetwork].priority > mNetConfigs[type].priority))
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2082 int32_t priority,
2094 ALOGV("createEffect pid %d, effectClient %p, priority %d, sessionId %d, io %d",
2095 pid, effectClient.get(), priority, sessionId, io);
2246 handle = thread->createEffect_l(client, effectClient, priority, sessionId,
2079 createEffect( effect_descriptor_t *pDesc, const sp<IEffectClient>& effectClient, int32_t priority, audio_io_handle_t io, int sessionId, status_t *status, int *id, int *enabled) argument
H A DThreads.h155 int32_t priority,
H A DThreads.cpp387 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; "
719 // another session. This gives the priority to well behaved effect control panels
738 int32_t priority,
831 handle = new EffectHandle(effect, client, effectClient, priority);
2562 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
2574 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
735 createEffect_l( const sp<AudioFlinger::Client>& client, const sp<IEffectClient>& effectClient, int32_t priority, int sessionId, effect_descriptor_t *desc, int *enabled, status_t *status ) argument
/frameworks/base/core/java/android/content/res/
H A DResources.java1444 * @param priority The log priority to use.
1448 public void dump(int priority, String tag, String prefix) { argument
1449 AssetManager.dumpTheme(mTheme, priority, tag, prefix);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTrackerBase.java260 * Higher numbers are higher priority and sorted so highest priority is first */
265 return c2.priority - c1.priority;
1665 // The Initial Attach APN is highest priority so use it if there is one
1678 // The priority of apn candidates from highest to lowest is:
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java1638 * The priority the engine declares for the the intent filter
1643 public int priority; field in class:TextToSpeech.EngineInfo
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java2681 // If there is more than one activity with the same priority,
2686 Slog.v(TAG, r0.activityInfo.name + "=" + r0.priority + " vs "
2687 + r1.activityInfo.name + "=" + r1.priority);
2689 // If the first activity has a higher priority, or a different
2691 if (r0.priority != r1.priority
2699 flags, query, r0.priority, true, false, debug, userId);
2719 List<ResolveInfo> query, int priority, boolean always,
2820 if (always && !pa.mPref.sameSet(query, priority)) {
3105 // If there is more than one service with the same priority,
2718 findPreferredActivity(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, int priority, boolean always, boolean removeMatches, boolean debug, int userId) argument
3511 reportSettingsProblem(int priority, String msg) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DSmsMessage.java797 bData.priority, null, bData.cmasWarningInfo);
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java1668 perm.info.priority = sa.getInt(
1670 if (perm.info.priority > 0 && (flags&PARSE_IS_SYSTEM) == 0) {
1671 perm.info.priority = 0;
3289 int priority = sa.getInt(
3291 outInfo.setPriority(priority);
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h195 XAint32 priority,
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h134 /* Convenient macros representing various different priority levels, for use with the SetPriority method */
432 SLint32 priority,
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java10191 // crashes are higher priority (in case there's a crash *and* an anr)
13620 if (curr.getPriority() >= curt.priority) {

Completed in 639 milliseconds

12345