Searched refs:startLocalOnlyHotspot (Results 1 - 5 of 5) sorted by path

/frameworks/base/wifi/java/android/net/wifi/
H A DIWifiManager.aidl137 int startLocalOnlyHotspot(in Messenger messenger, in IBinder binder, in String packageName);
H A DWifiManager.java1866 * WifiManager#startLocalOnlyHotspot(LocalOnlyHotspotCallback)}.
1994 public void startLocalOnlyHotspot(LocalOnlyHotspotCallback callback, method in class:WifiManager
2002 int returnCode = mService.startLocalOnlyHotspot(
2463 * {@link WifiManager#startLocalOnlyHotspot(LocalOnlyHotspotCallback, Handler)} again at
/frameworks/base/wifi/tests/src/android/net/wifi/
H A DWifiManagerTest.java131 when(mWifiService.startLocalOnlyHotspot(any(Messenger.class), any(IBinder.class),
133 mWifiManager.startLocalOnlyHotspot(callback, mHandler);
149 when(mWifiService.startLocalOnlyHotspot(any(Messenger.class), any(IBinder.class),
151 mWifiManager.startLocalOnlyHotspot(callback, mHandler);
302 * Verify call to startLocalOnlyHotspot goes to WifiServiceImpl.
307 mWifiManager.startLocalOnlyHotspot(callback, mHandler);
310 .startLocalOnlyHotspot(any(Messenger.class), any(IBinder.class), anyString());
315 * startLocalOnlyHotspot.
321 .startLocalOnlyHotspot(any(Messenger.class), any(IBinder.class), anyString());
322 mWifiManager.startLocalOnlyHotspot(callbac
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java1165 * Temporary method used for testing while startLocalOnlyHotspot is not fully implemented. This
1182 * see {@link WifiManager#startLocalOnlyHotspot(LocalOnlyHotspotCallback)}
1196 public int startLocalOnlyHotspot(Messenger messenger, IBinder binder, String packageName) { method in class:WifiServiceImpl
1224 mLog.info("startLocalOnlyHotspot uid=% pid=%").c(uid).c(pid).flush();
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiServiceImplTest.java826 int result = mWifiServiceImpl.startLocalOnlyHotspot(mAppMessenger, mAppBinder,
832 * Verify that the call to startLocalOnlyHotspot returns REQUEST_REGISTERED when successfully
841 * Verify that a call to startLocalOnlyHotspot throws a SecurityException if the caller does not
849 mWifiServiceImpl.startLocalOnlyHotspot(mAppMessenger, mAppBinder, TEST_PACKAGE_NAME);
853 * Verify that a call to startLocalOnlyHotspot throws a SecurityException if the caller does not
862 mWifiServiceImpl.startLocalOnlyHotspot(mAppMessenger, mAppBinder, TEST_PACKAGE_NAME);
866 * Verify that a call to startLocalOnlyHotspot throws a SecurityException if Location mode is
872 mWifiServiceImpl.startLocalOnlyHotspot(mAppMessenger, mAppBinder, TEST_PACKAGE_NAME);
884 int result = mWifiServiceImpl.startLocalOnlyHotspot(mAppMessenger, mAppBinder,
900 int result = mWifiServiceImpl.startLocalOnlyHotspot(mAppMessenge
[all...]

Completed in 126 milliseconds