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

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmCdmaPhoneTest.java 48 import android.os.WorkSource;
175 WorkSource workSource = new WorkSource(Process.myUid(),
177 doReturn(cellLocation).when(mSST).getCellLocation(workSource);
178 assertEquals(cellLocation, mPhoneUT.getCellLocation(workSource));
206 (CdmaCellLocation) mPhoneUT.getCellLocation(workSource);
    [all...]
ServiceStateTrackerTest.java 51 import android.os.WorkSource;
311 WorkSource workSource = new WorkSource(Process.myUid(),
313 assertEquals(sst.getAllCellInfo(workSource), list);
396 WorkSource workSource = new WorkSource(Process.myUid(), mContext.getPackageName());
397 GsmCellLocation cl = (GsmCellLocation) sst.getCellLocation(workSource);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
AppScanStats.java 20 import android.os.WorkSource;
91 WorkSource workSource; // Used for BatteryStats
106 public AppScanStats(String name, WorkSource source, ContextMap map, GattService service) {
114 source = new WorkSource(Binder.getCallingUid(), appName);
116 workSource = source;
128 batteryStats.noteBleScanResults(workSource, 100);
170 batteryStats.noteBleScanStarted(workSource, isUnoptimized);
215 batteryStats.noteBleScanResults(workSource, scan.results % 100);
216 batteryStats.noteBleScanStopped(workSource, isUnoptimized)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiServiceImpl.java 95 import android.os.WorkSource;
587 * @param workSource If null, all blame is given to the calling uid.
591 public void startScan(ScanSettings settings, WorkSource workSource, String packageName) {
631 if (workSource != null) {
634 // supplied WorkSource to allow future WorkSource combining.
635 workSource.clearNames();
637 if (workSource == null && Binder.getCallingUid() >= 0) {
638 workSource = new WorkSource(Binder.getCallingUid())
    [all...]
WifiStateMachine.java 98 import android.os.WorkSource;
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
WifiScanningServiceTest.java 41 import android.os.WorkSource;
205 int scanRequestId, WifiScanner.ScanSettings settings, WorkSource workSource) {
208 scanParams.putParcelable(WifiScanner.SCAN_PARAMS_WORK_SOURCE_KEY, workSource);
214 int scanRequestId, WifiScanner.ScanSettings settings, WorkSource workSource) {
217 scanParams.putParcelable(WifiScanner.SCAN_PARAMS_WORK_SOURCE_KEY, workSource);
509 WorkSource workSource = new WorkSource(2292)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
WifiScanningServiceImpl.java 41 import android.os.WorkSource;
331 private static boolean isWorkSourceValid(WorkSource workSource) {
332 return workSource != null && workSource.size() > 0 && workSource.get(0) >= 0;
335 private WorkSource computeWorkSource(ClientInfo ci, WorkSource requestedWorkSource) {
339 // supplied WorkSource to allow future WorkSource combining
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AlarmManagerService.java 52 import android.os.WorkSource;
855 final WorkSource mWorkSource;
    [all...]
LocationManagerService.java 94 import android.os.WorkSource;
1724 WorkSource worksource = new WorkSource(); local
    [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneInterfaceManager.java 47 import android.os.WorkSource;
348 mPhone.getNeighboringCids(onCompleted, (WorkSource)request.argument);
    [all...]
  /prebuilts/sdk/system_current/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 

Completed in 312 milliseconds