Searched defs:mOtherNetworkInfo (Results 1 - 3 of 3) sorted by relevance

/frameworks/ex/common/java/com/android/common/
H A DNetworkConnectivityListener.java56 * with another network. If so, {@code mOtherNetworkInfo} will be non-null.
58 private NetworkInfo mOtherNetworkInfo; field in class:NetworkConnectivityListener
84 mOtherNetworkInfo = (NetworkInfo)
92 Log.d(TAG, "onReceive(): mNetworkInfo=" + mNetworkInfo + " mOtherNetworkInfo = "
93 + (mOtherNetworkInfo == null ? "[none]" : mOtherNetworkInfo +
155 mOtherNetworkInfo = null;
203 return mOtherNetworkInfo;
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DConnectionUtil.java68 private NetworkInfo mOtherNetworkInfo; field in class:ConnectionUtil
163 mOtherNetworkInfo = (NetworkInfo)
169 if (mOtherNetworkInfo != null) {
170 Log.v(LOG_TAG, "mOtherNetworkInfo: " + mOtherNetworkInfo.toString());
171 recordNetworkState(mOtherNetworkInfo.getType(), mOtherNetworkInfo.getState());
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerTestActivity.java79 public NetworkInfo mOtherNetworkInfo; field in class:ConnectivityManagerTestActivity
134 mOtherNetworkInfo = (NetworkInfo)
141 if (mOtherNetworkInfo != null) {
142 log("mOtherNetworkInfo: " + mOtherNetworkInfo.toString());
145 if (mOtherNetworkInfo != null) {
146 recordNetworkState(mOtherNetworkInfo.getType(), mOtherNetworkInfo.getState());

Completed in 144 milliseconds