Searched refs:reasons (Results 1 - 9 of 9) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnectionReasons.java22 * The class to describe the reasons of allowing or disallowing to establish a data connection.
38 // Adding an allowed reason will clean up the disallowed reasons because they are
53 reasonStr.append("Data disallowed, reasons:");
64 void copyFrom(DataConnectionReasons reasons) { argument
65 this.mDataDisallowedReasonSet = reasons.mDataDisallowedReasonSet;
66 this.mDataAllowedReason = reasons.mDataAllowedReason;
100 // Disallowed reasons. There could be multiple reasons if data connection is not allowed.
102 // Soft failure reasons. Normally the reasons fro
[all...]
H A DDcTracker.java1218 * @param dataConnectionReasons Data connection allowed or disallowed reasons as the output
1219 * param. It's okay to pass null here and no reasons will be
1232 * @param dataConnectionReasons Data connection allowed or disallowed reasons as the output
1233 * param. It's okay to pass null here and no reasons will be
1240 // Step 3. Build disallowed reasons.
1243 DataConnectionReasons reasons = new DataConnectionReasons();
1290 // Step 3. Build disallowed reasons.
1292 reasons.add(DataDisallowedReasonType.APN_NOT_CONNECTABLE);
1300 reasons.add(DataDisallowedReasonType.ON_IWLAN);
1304 reasons
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
H A DDexoptOptionsTests.java94 int[] reasons = new int[] {
102 for (int reason : reasons) {
/frameworks/base/core/java/android/app/
H A DActivityManagerInternal.java165 * @param reasons A map from windowing mode to a reason integer why the transition was started,
170 public abstract void notifyAppTransitionStarting(SparseIntArray reasons, long timestamp); argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DRecentsAnimationController.java381 final SparseIntArray reasons = new SparseIntArray();
382 reasons.put(WINDOWING_MODE_FULLSCREEN, APP_TRANSITION_RECENTS_ANIM);
384 reasons).sendToTarget();
/frameworks/base/tools/aapt/
H A DCommand.cpp488 * List of human-readable reasons for why this feature was implied.
490 SortedVector<String8> reasons; member in struct:ImpliedFeature
554 feature->reasons.add(reason);
598 const size_t numReasons = impliedFeature.reasons.size();
600 printf("%s", impliedFeature.reasons[j].string());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhone.java2829 * @param reasons The reasons that data can/can't be established. This is an output param.
2832 public boolean isDataAllowed(DataConnectionReasons reasons) { argument
2833 return ((mDcTracker != null) && (mDcTracker.isDataAllowed(reasons)));
/frameworks/base/core/java/android/os/
H A DBatteryStats.java5199 pw.print(prefix); pw.println(" All wakeup reasons:");
5200 final ArrayList<TimerEntry> reasons = new ArrayList<>();
5203 reasons.add(new TimerEntry(ent.getKey(), 0, timer,
5206 Collections.sort(reasons, timerComparator);
5207 for (int i=0; i<reasons.size(); i++) {
5208 TimerEntry timer = reasons.get(i);
7322 final int[] reasons = new int[]{
7336 for (int r : reasons) {
8020 // Wakeup reasons (WAKEUP_REASON_DATA)
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java1592 * This is set to false when we are killing processes for reasons other than
1600 * processes are going away for other reasons.
9599 Slog.w(TAG, "For security reasons, the system cannot issue a Uri permission"
26361 notifyAppTransitionStarting(SparseIntArray reasons, long timestamp) argument
[all...]

Completed in 182 milliseconds