Searched defs:unstable (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java679 int unstable = data.readInt();
680 boolean res = refContentProvider(b, stable, unstable);
2572 public boolean refContentProvider(IBinder connection, int stable, int unstable) argument
2579 data.writeInt(unstable);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1112 + " data partition or your device will be unstable.";
6779 public boolean refContentProvider(IBinder connection, int stable, int unstable) { argument
6802 if (unstable > 0) {
6803 conn.numUnstableIncs += unstable;
6805 unstable = conn.unstableCount + unstable;
6806 if (unstable < 0) {
6807 throw new IllegalStateException("unstableCount < 0: " + unstable);
6810 if ((stable+unstable) <= 0) {
6812 + stable + " unstable
[all...]

Completed in 52 milliseconds