Searched refs:mProtocolType (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/ |
D | WifiP2pServiceRequest.java | 47 private int mProtocolType; field in WifiP2pServiceRequest 81 mProtocolType = protocolType; in WifiP2pServiceRequest() 100 mProtocolType = serviceType; in WifiP2pServiceRequest() 144 sb.append(String.format(Locale.US, "%02x", mProtocolType)); in getSupplicantQuery() 232 if ((req.mProtocolType != mProtocolType) || in equals() 248 result = 31 * result + mProtocolType; in hashCode() 261 dest.writeInt(mProtocolType); in writeToParcel()
|
/frameworks/base/telephony/java/android/telephony/data/ |
D | DataCallResponse.java | 74 private final @ProtocolType int mProtocolType; field in DataCallResponse 117 mProtocolType = protocolType; in DataCallResponse() 137 mProtocolType = source.readInt(); in DataCallResponse() 175 public int getProtocolType() { return mProtocolType; } in getProtocolType() 224 .append(" protocolType=").append(mProtocolType) in toString() 248 && this.mProtocolType == other.mProtocolType in equals() 263 return Objects.hash(mCause, mSuggestedRetryTime, mId, mLinkStatus, mProtocolType, in hashCode() 279 dest.writeInt(mProtocolType); in writeToParcel() 324 private @ProtocolType int mProtocolType; field in DataCallResponse.Builder 395 mProtocolType = protocolType; in setProtocolType() [all …]
|
D | DataProfile.java | 70 private final int mProtocolType; field in DataProfile 115 this.mProtocolType = protocolType; in DataProfile() 139 mProtocolType = source.readInt(); in DataProfile() 171 public @ProtocolType int getProtocolType() { return mProtocolType; } in getProtocolType() 262 return "DataProfile=" + mProfileId + "/" + mProtocolType + "/" + mAuthType in toString() 275 dest.writeInt(mProtocolType); in writeToParcel() 311 && mProtocolType == that.mProtocolType in equals() 331 return Objects.hash(mProfileId, mApn, mProtocolType, mAuthType, mUserName, mPassword, mType, in hashCode() 357 private int mProtocolType; field in DataProfile.Builder 429 mProtocolType = protocolType; in setProtocolType() [all …]
|