Home
last modified time | relevance | path

Searched refs:bootstrapId (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/
DDppManager.java458 if (bootstrapInfo == null || bootstrapInfo.bootstrapId < 0 in startDppAsEnrolleeResponder()
465 mDppRequestInfo.bootstrapId = bootstrapInfo.bootstrapId; in startDppAsEnrolleeResponder()
466 logd("BootstrapId:" + mDppRequestInfo.bootstrapId + " URI: " + bootstrapInfo.uri); in startDppAsEnrolleeResponder()
531 if (!mWifiNative.stopDppResponder(mClientIfaceName, mDppRequestInfo.bootstrapId)) { in cleanupDppResources()
557 public int bootstrapId; field in DppManager.DppRequestInfo
566 .append(", bootstrapId=").append(bootstrapId).toString(); in toString()
DSupplicantStaIfaceHal.java3338 Mutable<Integer> bootstrapId = new Mutable<>(-1); in addDppPeerUri() local
3366 bootstrapId.value = bootstrapIdInternal; in addDppPeerUri()
3375 return bootstrapId.value; in addDppPeerUri()
3385 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) { in removeDppUri() argument
3410 SupplicantStatus status = staIfaceV12.removeDppUri(bootstrapId); in removeDppUri()
3584 bootstrapInfoOut.bootstrapId = info.bootstrapId; in generateDppBootstrapInfoForResponder()
DWifiNative.java2766 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) {
2767 return mSupplicantStaIfaceHal.removeDppUri(ifaceName, bootstrapId);
2855 public int bootstrapId;
2859 bootstrapId = -1;
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DDppManagerTest.java172 mBootStrapInfo.bootstrapId = TEST_BOOTSTRAP_ID; in setUp()
DSupplicantStaIfaceHalTest.java2063 assertEquals(-1, bootstrapInfo.bootstrapId); in testDppFailsWithOldHal()