Home
last modified time | relevance | path

Searched refs:macAddr (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/net/java/android/net/dhcp/
DDhcpPacket.java639 String macAddr = ""; in macToString() local
646 macAddr += hexString.substring(hexString.length() - 2); in macToString()
649 macAddr += ":"; in macToString()
653 return macAddr; in macToString()
657 String macAddr = macToString(mClientMac); in toString() local
659 return macAddr; in toString()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiNative.java956 public void startTdls(String macAddr, boolean enable) { in startTdls() argument
959 doBooleanCommand("TDLS_DISCOVER " + macAddr); in startTdls()
960 doBooleanCommand("TDLS_SETUP " + macAddr); in startTdls()
963 doBooleanCommand("TDLS_TEARDOWN " + macAddr); in startTdls()
2365 abstract public void onTdlsStatus(String macAddr, int status, int reason); in onTdlsStatus() argument
2371 String macAddr); in enableDisableTdlsNative() argument
2387 private static native TdlsStatus getTdlsStatusNative(int iface, String macAddr); in getTdlsStatusNative() argument
2421 private static boolean onTdlsStatus(String macAddr, int status, int reason) { in onTdlsStatus() argument
2426 handler.onTdlsStatus(macAddr, status, reason); in onTdlsStatus()
/frameworks/opt/net/wifi/service/jni/
Dcom_android_server_wifi_WifiNative.cpp2340 char macAddr[32]; in android_net_wifi_start_sending_offloaded_packet() local
2341 sprintf(macAddr, "%0x:%0x:%0x:%0x:%0x:%0x", src_mac_addr[0], src_mac_addr[1], in android_net_wifi_start_sending_offloaded_packet()
2343 ALOGD("src_mac_addr %s", macAddr); in android_net_wifi_start_sending_offloaded_packet()
2344 sprintf(macAddr, "%0x:%0x:%0x:%0x:%0x:%0x", dst_mac_addr[0], dst_mac_addr[1], in android_net_wifi_start_sending_offloaded_packet()
2346 ALOGD("dst_mac_addr %s", macAddr); in android_net_wifi_start_sending_offloaded_packet()