HomeSort by relevance Sort by last modified time
    Searched refs:macAddress (Results 1 - 25 of 30) sorted by null

1 2

  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
WifiTest.java 30 final String macAddress = mDevicePolicyManager.getWifiMacAddress(getWho());
33 "02:00:00:00:00:00".equals(macAddress));
35 TextUtils.isEmpty(macAddress));
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWifiInfo.java 10 private String macAddress;
14 return macAddress;
18 macAddress = newMacAddress;
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettingsForSetupWizard.java 192 String macAddress = null;
196 macAddress = connectionInfo.getMacAddress();
201 macAddressTextView.setText(!TextUtils.isEmpty(macAddress) ?
202 macAddress : getString(R.string.status_unavailable));
ConfigureWifiSettings.java 219 String macAddress = wifiInfo == null ? null : wifiInfo.getMacAddress();
220 wifiMacAddressPref.setSummary(!TextUtils.isEmpty(macAddress) ? macAddress
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/about/
StatusFragment.java 214 String macAddress = SystemProperties.get("net.wimax.mac.address",
216 mWimaxMacAddress.setSummary(macAddress);
222 String macAddress = wifiInfo == null ? null : wifiInfo.getMacAddress();
223 mWifiMacAddress.setSummary(!TextUtils.isEmpty(macAddress) ?
224 macAddress : getString(R.string.status_unavailable));
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Status.java 276 String macAddress = SystemProperties.get("net.wimax.mac.address", mUnavailable);
277 mWimaxMacAddress.setSummary(macAddress);
283 String macAddress = wifiInfo == null ? null : wifiInfo.getMacAddress();
284 mWifiMacAddress.setSummary(!TextUtils.isEmpty(macAddress) ? macAddress : mUnavailable);
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java 339 private void assertMacAddress(String macAddress) {
341 assertTrue("MAC Address " + macAddress + " does not match pattern " + macPattern,
342 Pattern.matches(macPattern, macAddress));
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
RttServiceTest.java 130 String actualMac = ((ResponderConfig) message.obj).macAddress;
169 config.macAddress = MAC;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiNetworkHistory.java 274 String macAddress = config.defaultGwMacAddress;
275 if (macAddress != null) {
276 out.writeUTF(DEFAULT_GW_KEY + SEPARATOR + macAddress + NL);
WifiServiceImpl.java     [all...]
RttService.java 375 mResponderConfig.macAddress = mWifiNative.getMacAddress();
WifiConfigManager.java     [all...]
WifiStateMachine.java     [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiInfo.java 417 * @param macAddress the MAC address in {@code XX:XX:XX:XX:XX:XX} form
420 public void setMacAddress(String macAddress) {
421 this.mMacAddress = macAddress;
RttManager.java     [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiRttManagerFacade.java 148 bundle.putString("macAddress", config.macAddress);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothLeScanFacade.java 682 * Add filter "macAddress" to existing ScanFilter
684 * @param macAddress the macAddress to filter against
687 @Rpc(description = "Add filter \"macAddress\" to existing ScanFilter")
689 @RpcParameter(name = "macAddress")
690 String macAddress
692 mScanFilterBuilder.setDeviceAddress(macAddress);
    [all...]
GattClientFacade.java 96 * @param macAddress the mac address of the ble device
106 @RpcParameter(name = "macAddress")
107 String macAddress,
112 BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(macAddress);
    [all...]
  /device/huawei/angler/location/loc_api/loc_api_v02/
location_service_v02.h     [all...]
location_service_v02.c 777 QMI_IDL_OFFSET8(qmiLocWifiApDataStructT_v02, macAddress),
    [all...]
  /device/lge/bullhead/location/loc_api/loc_api_v02/
location_service_v02.h     [all...]
location_service_v02.c 777 QMI_IDL_OFFSET8(qmiLocWifiApDataStructT_v02, macAddress),
    [all...]
  /device/moto/shamu/location/loc_api/loc_api_v02/
location_service_v02.h     [all...]
location_service_v02.c 760 QMI_IDL_OFFSET8(qmiLocWifiApDataStructT_v02, macAddress),
    [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 

Completed in 765 milliseconds

1 2