Searched refs:networkMisc (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/net/
H A DNetworkMisc.java98 NetworkMisc networkMisc = new NetworkMisc();
99 networkMisc.allowBypass = in.readInt() != 0;
100 networkMisc.explicitlySelected = in.readInt() != 0;
101 networkMisc.acceptUnvalidated = in.readInt() != 0;
102 networkMisc.subscriberId = in.readString();
103 networkMisc.provisioningNotificationDisabled = in.readInt() != 0;
104 return networkMisc;
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkAgentInfo.java128 public final NetworkMisc networkMisc; field in class:NetworkAgentInfo
268 networkMisc = misc;
416 if (networkMisc.explicitlySelected && (networkMisc.acceptUnvalidated || pretendValidated)) {
457 final String subscriberId = (networkMisc != null) ? networkMisc.subscriberId : null;
561 "explicitlySelected{" + networkMisc.explicitlySelected + "} " +
562 "acceptUnvalidated{" + networkMisc.acceptUnvalidated + "} " +
H A DVpn.java680 NetworkMisc networkMisc = new NetworkMisc();
681 networkMisc.allowBypass = mConfig.allowBypass && !mLockdown;
686 mNetworkInfo, mNetworkCapabilities, lp, 0, networkMisc) {
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java2072 if (nai.everConnected && !nai.networkMisc.explicitlySelected) {
2075 nai.networkMisc.explicitlySelected = true;
2076 nai.networkMisc.acceptUnvalidated = (boolean) msg.obj;
2152 if (!nai.networkMisc.provisioningNotificationDisabled) {
2154 (PendingIntent) msg.obj, nai.networkMisc.explicitlySelected);
2596 if (!nai.networkMisc.explicitlySelected) {
2600 if (accept != nai.networkMisc.acceptUnvalidated) {
2602 nai.networkMisc.acceptUnvalidated = accept;
2736 !nai.networkMisc.explicitlySelected || nai.networkMisc
4315 registerNetworkAgent(Messenger messenger, NetworkInfo networkInfo, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int currentScore, NetworkMisc networkMisc) argument
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DConnectivityServiceMock.java765 int currentScore, NetworkMisc networkMisc) {
769 // mContext, mTrackerHandler, new NetworkMisc(networkMisc), mDefaultRequest, this);
763 registerNetworkAgent(Messenger messenger, NetworkInfo networkInfo, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int currentScore, NetworkMisc networkMisc) argument

Completed in 159 milliseconds