HomeSort by relevance Sort by last modified time
    Searched refs:ifcg (Results 1 - 2 of 2) sorted by null

  /frameworks/base/services/java/com/android/server/connectivity/
Tethering.java 512 InterfaceConfiguration ifcg = null; local
514 ifcg = service.getInterfaceConfig(iface);
515 if (ifcg != null) {
517 ifcg.ipAddr = (Integer.parseInt(addr[0]) << 24) +
522 ifcg.netmask = (Integer.parseInt(addr[0]) << 24) +
527 ifcg.interfaceFlags = ifcg.interfaceFlags.replace("down", "up");
529 ifcg.interfaceFlags = ifcg.interfaceFlags.replace("up", "down");
531 ifcg.interfaceFlags = ifcg.interfaceFlags.replace("running", "")
1179 InterfaceConfiguration ifcg = null; local
    [all...]
  /frameworks/base/services/java/com/android/server/
WifiService.java 303 InterfaceConfiguration ifcg = null; local
305 ifcg = service.getInterfaceConfig(intf);
306 if (ifcg != null) {
308 ifcg.ipAddr = (192 << 24) + (168 << 16) + (43 << 8) + 1;
309 ifcg.netmask = (255 << 24) + (255 << 16) + (255 << 8) + 0;
310 ifcg.interfaceFlags = "up";
312 service.setInterfaceConfig(intf, ifcg);
    [all...]

Completed in 170 milliseconds