Home
last modified time | relevance | path

Searched refs:newval (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
DIntentResolver.java855 final F[] newval = Arrays.copyOf(val, val.length); in copyInto() local
856 for (int j = 0; j < newval.length; j++) { in copyInto()
857 newval[j] = snapshot(newval[j]); in copyInto()
859 l.put(key, newval); in copyInto()
/frameworks/base/core/java/android/os/
DBatteryStats.java6246 static void printBitDescriptions(StringBuilder sb, int oldval, int newval, in printBitDescriptions() argument
6248 int diff = oldval ^ newval; in printBitDescriptions()
6256 sb.append((newval & bd.mask) != 0 ? "+" : "-"); in printBitDescriptions()
6273 int val = (newval&bd.mask)>>bd.shift; in printBitDescriptions()