Home | History | Annotate | Download | only in aware

Lines Matching defs:pmk

392         mMgr.respondToDataPathRequest(true, ndpId, nnri.interfaceName, nnri.networkSpecifier.pmk,
797 nnri.peerDiscoveryMac, nnri.interfaceName, nnri.networkSpecifier.pmk,
1061 return new CanonicalConnectionInfo(peerDiscoveryMac, networkSpecifier.pmk,
1178 // validate permission if PMK is used (SystemApi)
1179 if (ns.pmk != null && ns.pmk.length != 0) {
1183 + " -- UID doesn't have permission to use PMK API");
1188 // validate passphrase & PMK (if provided)
1196 if (ns.pmk != null && !WifiAwareUtils.validatePmk(ns.pmk)) { // non-null indicates usage
1198 + " -- invalid pmk length: " + ns.pmk.length);
1240 CanonicalConnectionInfo(byte[] peerDiscoveryMac, byte[] pmk, int sessionId,
1243 this.pmk = pmk;
1252 * - open: pmk/passphrase = null
1253 * - pmk: pmk != null, passphrase = null
1254 * - passphrase: passphrase != null, sessionId used (==0 for OOB), pmk=null
1256 public final byte[] pmk;
1264 && Arrays.equals(pmk, other.pmk)
1273 : String.valueOf(HexEncoding.encode(peerDiscoveryMac))).append(", pmk=").append(
1274 pmk == null ? "" : "*").append(", sessionId=").append(sessionId).append(