Home | History | Annotate | Download | only in lowpan

Lines Matching defs:mMasterKey

35     private byte[] mMasterKey = null;
60 mMasterKey = masterKey;
73 if (mMasterKey != null) {
74 return mMasterKey.clone();
84 return mMasterKey != null;
93 sb.append(" MasterKey:").append(HexDump.toHexString(mMasterKey));
134 return Arrays.equals(mMasterKey, rhs.mMasterKey) && mMasterKeyIndex == rhs.mMasterKeyIndex;
139 return Objects.hash(Arrays.hashCode(mMasterKey), mMasterKeyIndex);
151 dest.writeByteArray(mMasterKey);
162 credential.mMasterKey = in.createByteArray();