Home
last modified time | relevance | path

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

/frameworks/opt/net/lowpan/libandroid_net_lowpan/
DLowpanCredential.cpp61 out.mMasterKey.clear(); in initMasterKey()
62 out.mMasterKey.insert(out.mMasterKey.end(), masterKeyBytes, masterKeyBytes + masterKeyLen); in initMasterKey()
84 return mMasterKey.size() > 0; in isMasterKey()
89 *masterKey = mMasterKey; in getMasterKey()
98 *masterKey = &mMasterKey.front(); in getMasterKey()
101 *masterKeyLen = mMasterKey.size(); in getMasterKey()
117 RETURN_IF_FAILED(parcel->writeByteVector(mMasterKey)); in writeToParcel()
127 RETURN_IF_FAILED(parcel->readByteVector(&mMasterKey)); in readFromParcel()
134 if (mMasterKey != rhs.mMasterKey) { in operator ==()
/frameworks/base/lowpan/java/android/net/lowpan/
DLowpanCredential.java35 private byte[] mMasterKey = null; field in LowpanCredential
60 mMasterKey = masterKey; in setMasterKey()
73 if (mMasterKey != null) { in getMasterKey()
74 return mMasterKey.clone(); in getMasterKey()
84 return mMasterKey != null; in isMasterKey()
93 sb.append(" MasterKey:").append(HexDump.toHexString(mMasterKey)); in toSensitiveString()
134 return Arrays.equals(mMasterKey, rhs.mMasterKey) && mMasterKeyIndex == rhs.mMasterKeyIndex; in equals()
139 return Objects.hash(Arrays.hashCode(mMasterKey), mMasterKeyIndex); in hashCode()
151 dest.writeByteArray(mMasterKey); in writeToParcel()
162 credential.mMasterKey = in.createByteArray();
/frameworks/opt/net/lowpan/libandroid_net_lowpan/include/android/net/lowpan/
DLowpanCredential.h62 std::vector<uint8_t> mMasterKey;