Searched defs:ifaceName (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/services/common_time/
H A Dcommon_time_config_service.cpp64 status_t CommonTimeConfigService::getInterfaceBinding(String16& ifaceName) { argument
67 ifaceName = String16(tmp);
71 status_t CommonTimeConfigService::setInterfaceBinding(const String16& ifaceName) { argument
72 String8 tmp(ifaceName);
H A Dcommon_time_server_api.cpp143 status_t CommonTimeServer::getInterfaceBinding(String8& ifaceName) { argument
147 ifaceName = mBindIface;
151 status_t CommonTimeServer::setInterfaceBinding(const String8& ifaceName) { argument
155 if (ifaceName.size()) {
157 mBindIface = ifaceName;
/frameworks/av/media/common_time/
H A DICommonTimeConfig.cpp156 virtual status_t getInterfaceBinding(String16& ifaceName) { argument
165 ifaceName = reply.readString16();
172 virtual status_t setInterfaceBinding(const String16& ifaceName) { argument
175 data.writeString16(ifaceName);
415 String16 ifaceName; local
416 ifaceName = data.readString16();
417 status_t status = setInterfaceBinding(ifaceName);
/frameworks/base/core/java/android/os/
H A DCommonTimeConfig.java204 String ifaceName = mUtils.transactGetString(METHOD_GET_INTERFACE_BINDING, null);
206 if ((null != ifaceName) && (0 == ifaceName.length()))
209 return ifaceName;
216 * @param ifaceName The name of the network interface ("eth0", "wlan0", etc...) wich the common
222 public int setNetworkBinding(String ifaceName) { argument
227 (null == ifaceName) ? "" : ifaceName);
/frameworks/base/services/java/com/android/server/connectivity/
H A DTethering.java1374 protected void notifyTetheredOfNewUpstreamIface(String ifaceName) { argument
1375 if (DBG) Log.d(TAG, "notifying tethered with iface =" + ifaceName);
1376 mUpstreamIfaceName = ifaceName;
1379 ifaceName);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java1433 private boolean modifyRoute(String ifaceName, LinkProperties lp, RouteInfo r, int cycleCount, argument
1435 if ((ifaceName == null) || (lp == null) || (r == null)) {
1436 if (DBG) log("modifyRoute got unexpected null: " + ifaceName + ", " + lp + ", " + r);
1456 modifyRoute(ifaceName, lp, bestRoute, cycleCount+1, doAdd, toDefaultTable);
1460 if (VDBG) log("Adding " + r + " for interface " + ifaceName);
1464 mNetd.addRoute(ifaceName, r);
1466 mNetd.addSecondaryRoute(ifaceName, r);
1479 if (VDBG) log("Removing " + r + " for interface " + ifaceName);
1481 mNetd.removeRoute(ifaceName, r);
1491 if (VDBG) log("Removing " + r + " for interface " + ifaceName);
[all...]

Completed in 346 milliseconds