HomeSort by relevance Sort by last modified time
    Searched defs:mMasterKeyIndex (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/net/lowpan/libandroid_net_lowpan/include/android/net/lowpan/
LowpanCredential.h 63 int32_t mMasterKeyIndex;
  /frameworks/base/lowpan/java/android/net/lowpan/
LowpanCredential.java 36 private int mMasterKeyIndex = UNSPECIFIED_KEY_INDEX;
64 mMasterKeyIndex = keyIndex;
80 return mMasterKeyIndex;
94 if (mMasterKeyIndex != UNSPECIFIED_KEY_INDEX) {
95 sb.append(", Index:").append(mMasterKeyIndex);
116 if (mMasterKeyIndex != UNSPECIFIED_KEY_INDEX) {
117 sb.append(", Index:").append(mMasterKeyIndex);
134 return Arrays.equals(mMasterKey, rhs.mMasterKey) && mMasterKeyIndex == rhs.mMasterKeyIndex;
139 return Objects.hash(Arrays.hashCode(mMasterKey), mMasterKeyIndex);
    [all...]

Completed in 91 milliseconds