HomeSort by relevance Sort by last modified time
    Searched defs:newWorkSource (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiLockManager.java 146 WorkSource newWorkSource;
148 newWorkSource = new WorkSource(Binder.getCallingUid());
151 newWorkSource = new WorkSource(ws);
155 Slog.d(TAG, "updateWifiLockWakeSource: " + wl + ", newWorkSource=" + newWorkSource);
161 // an acquire event immediately after a release in the case where newWorkSource and
164 mBatteryStats.noteFullWifiLockAcquiredFromSource(newWorkSource);
167 wl.mWorkSource = newWorkSource;
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiLockManagerTest.java 277 WorkSource newWorkSource = new WorkSource(DEFAULT_TEST_UID_2);
281 mWifiLockManager.updateWifiLockWorkSource(mBinder, newWorkSource);
283 inOrder.verify(mBatteryStats).noteFullWifiLockAcquiredFromSource(eq(newWorkSource));
296 WorkSource newWorkSource = new WorkSource(Binder.getCallingUid());
302 inOrder.verify(mBatteryStats).noteFullWifiLockAcquiredFromSource(eq(newWorkSource));

Completed in 1191 milliseconds