android.net.wifi.IWifiScanner Java Examples
The following examples show how to use
android.net.wifi.IWifiScanner.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source Project: android_9.0.0_r45 Author: lulululbj File: SystemServiceRegistry.java License: Apache License 2.0 | 5 votes |
@Override public WifiScanner createService(ContextImpl ctx) throws ServiceNotFoundException { IBinder b = ServiceManager.getServiceOrThrow(Context.WIFI_SCANNING_SERVICE); IWifiScanner service = IWifiScanner.Stub.asInterface(b); return new WifiScanner(ctx.getOuterContext(), service, ConnectivityThread.getInstanceLooper()); }
Example #2
Source Project: AndroidComponentPlugin Author: androidmalin File: ContextImpl.java License: Apache License 2.0 | 4 votes |
public Object createService(ContextImpl ctx) { IBinder b = ServiceManager.getService(WIFI_SCANNING_SERVICE); IWifiScanner service = IWifiScanner.Stub.asInterface(b); return new WifiScanner(ctx.getOuterContext(), service); }
Example #3
Source Project: AndroidComponentPlugin Author: androidmalin File: ContextImpl.java License: Apache License 2.0 | 4 votes |
public Object createService(ContextImpl ctx) { IBinder b = ServiceManager.getService(WIFI_SCANNING_SERVICE); IWifiScanner service = IWifiScanner.Stub.asInterface(b); return new WifiScanner(ctx.getOuterContext(), service); }