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

  /system/netd/server/
LocalNetwork.cpp 38 if (int ret = RouteController::addInterfaceToLocalNetwork(mNetId, interface.c_str())) {
39 ALOGE("failed to add interface %s to local netId %u", interface.c_str(), mNetId);
50 if (int ret = RouteController::removeInterfaceFromLocalNetwork(mNetId, interface.c_str())) {
51 ALOGE("failed to remove interface %s from local netId %u", interface.c_str(), mNetId);
VirtualNetwork.cpp 45 if (int ret = RouteController::addUsersToVirtualNetwork(mNetId, interface.c_str(), mSecure,
47 ALOGE("failed to add users on interface %s of netId %u", interface.c_str(), mNetId);
57 if (int ret = RouteController::removeUsersFromVirtualNetwork(mNetId, interface.c_str(),
59 ALOGE("failed to remove users on interface %s of netId %u", interface.c_str(), mNetId);
75 if (int ret = RouteController::addInterfaceToVirtualNetwork(mNetId, interface.c_str(), mSecure,
77 ALOGE("failed to add interface %s to VPN netId %u", interface.c_str(), mNetId);
88 if (int ret = RouteController::removeInterfaceFromVirtualNetwork(mNetId, interface.c_str(),
90 ALOGE("failed to remove interface %s from VPN netId %u", interface.c_str(), mNetId);
Network.cpp 24 ALOGE("deleting network with netId %u without clearing its interfaces", mNetId);
29 return mNetId;
52 Network::Network(unsigned netId) : mNetId(netId) {
PhysicalNetwork.cpp 73 if (int ret = RouteController::modifyPhysicalNetworkPermission(mNetId, interface.c_str(),
76 interface.c_str(), mNetId, mPermission, permission);
82 if (int ret = addToDefault(mNetId, interface, permission, mDelegate)) {
85 if (int ret = removeFromDefault(mNetId, interface, mPermission, mDelegate)) {
99 if (int ret = addToDefault(mNetId, interface, mPermission, mDelegate)) {
112 if (int ret = removeFromDefault(mNetId, interface, mPermission, mDelegate)) {
128 if (int ret = RouteController::addInterfaceToPhysicalNetwork(mNetId, interface.c_str(),
130 ALOGE("failed to add interface %s to netId %u", interface.c_str(), mNetId);
134 if (int ret = addToDefault(mNetId, interface, mPermission, mDelegate)) {
147 if (int ret = removeFromDefault(mNetId, interface, mPermission, mDelegate))
    [all...]
DnsProxyListener.h 62 unsigned mNetId;
91 unsigned mNetId;
124 unsigned mNetId;
Network.h 53 const unsigned mNetId;
DnsProxyListener.cpp 61 mNetId(netId),
124 ALOGD("GetAddrInfoHandler, now for %s / %s / %u / %u", mHost, mService, mNetId, mMark);
128 uint32_t rv = android_getaddrinfofornet(mHost, mService, mHints, mNetId, mMark, &result);
283 mNetId(netId),
313 hp = android_gethostbynamefornet(mName, mAf, mNetId, mMark);
400 mNetId(netId),
430 hp = android_gethostbyaddrfornet((char*)mAddress, mAddressLen, mAddressFamily, mNetId, mMark);
  /libcore/luni/src/main/java/java/net/
AddressCache.java 45 private final int mNetId;
49 mNetId = netId;
60 return mHostname.equals(lhs.mHostname) && mNetId == lhs.mNetId;
65 result = 31 * result + mNetId;
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pGroup.java 66 private int mNetId;
122 mNetId = PERSISTENT_NET_ID;
124 mNetId = TEMPORARY_NET_ID;
128 mNetId = PERSISTENT_NET_ID;
150 mNetId = Integer.parseInt(nameValue[1]);
257 return mNetId;
262 this.mNetId = netId;
274 sbuf.append("\n networkId: ").append(mNetId);
292 mNetId = source.getNetworkId();
307 dest.writeInt(mNetId);
    [all...]
  /frameworks/base/packages/CaptivePortalLogin/src/com/android/captiveportallogin/
CaptivePortalLoginActivity.java 76 private int mNetId;
92 mNetId = Integer.parseInt(dataUri.getSchemeSpecificPart());
100 final Network network = new Network(mNetId);
168 intent.putExtra(Intent.EXTRA_TEXT, String.valueOf(mNetId));
  /frameworks/base/core/java/android/net/
Network.java 127 private final int mNetId;
131 mNetId = netId;

Completed in 290 milliseconds