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

/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java844 int unstable = data.readInt();
845 boolean res = refContentProvider(b, stable, unstable);
3356 public boolean refContentProvider(IBinder connection, int stable, int unstable) argument
3363 data.writeInt(unstable);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java9651 public boolean refContentProvider(IBinder connection, int stable, int unstable) { argument
9674 if (unstable > 0) {
9675 conn.numUnstableIncs += unstable;
9677 unstable = conn.unstableCount + unstable;
9678 if (unstable < 0) {
9679 throw new IllegalStateException("unstableCount < 0: " + unstable);
9682 if ((stable+unstable) <= 0) {
9684 + stable + " unstable=" + unstable);
[all...]

Completed in 51 milliseconds