Home
last modified time | relevance | path

Searched refs:mTransportProtocol (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Wifi/framework/java/android/net/wifi/aware/
DWifiAwareNetworkInfo.java55 private final int mTransportProtocol; field in WifiAwareNetworkInfo
62 mTransportProtocol = -1; // a value of -1 is considered invalid in WifiAwareNetworkInfo()
70 mTransportProtocol = -1; // a value of -1 is considered invalid in WifiAwareNetworkInfo()
79 mTransportProtocol = transportProtocol; in WifiAwareNetworkInfo()
86 mTransportProtocol = source != null ? source.mTransportProtocol : -1; in WifiAwareNetworkInfo()
125 return mTransportProtocol; in getTransportProtocol()
151 dest.writeInt(mTransportProtocol); in writeToParcel()
197 .append(", transportProtocol=").append(mTransportProtocol) in toString()
215 && mTransportProtocol == lhs.mTransportProtocol in equals()
222 return Objects.hash(mIpv6Addr, mPort, mTransportProtocol, mChannelInfos); in hashCode()
DWifiAwareNetworkSpecifier.java371 private int mTransportProtocol = -1; // invalid value field in WifiAwareNetworkSpecifier.Builder
520 mTransportProtocol = transportProtocol; in setTransportProtocol()
606 if (mPort != 0 || mTransportProtocol != -1) { in build()
623 null, mPort, mTransportProtocol, mChannel, mIsRequired, securityConfig); in build()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/sap/
DSapMessage.java182 private int mTransportProtocol = INVALID_VALUE; field in SapMessage
268 return mTransportProtocol; in getTransportProtocol()
272 this.mTransportProtocol = transportProtocol; in setTransportProtocol()
352 if (mTransportProtocol != INVALID_VALUE) { in getParamCount()
532 mTransportProtocol = is.read(); in parseParameters()
733 if (mTransportProtocol != INVALID_VALUE) { in write()
737 mTransportProtocol, in write()
802 if (mTransportProtocol == TRANS_PROTO_T0) { in send()
804 } else if (mTransportProtocol == TRANS_PROTO_T1) { in send()
811 + mTransportProtocol); in send()