Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A 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()
H A 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()
H A DWifiNative.java2766 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) {
2767 return mSupplicantStaIfaceHal.removeDppUri(ifaceName, bootstrapId);
2855 public int bootstrapId;
2859 bootstrapId = -1;
/aosp12/hardware/interfaces/wifi/supplicant/1.4/vts/functional/
H A Dsupplicant_sta_iface_hidl_test.cpp311 EXPECT_NE(-1, bootstrapInfo.bootstrapId); in TEST_P()
312 EXPECT_NE(0, bootstrapInfo.bootstrapId); in TEST_P()
313 bootstrap_id = bootstrapInfo.bootstrapId; in TEST_P()
/aosp12/hardware/interfaces/wifi/supplicant/1.4/
H A Dtypes.hal123 uint32_t bootstrapId;
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DDppManagerTest.java172 mBootStrapInfo.bootstrapId = TEST_BOOTSTRAP_ID; in setUp()
H A DSupplicantStaIfaceHalTest.java2063 assertEquals(-1, bootstrapInfo.bootstrapId); in testDppFailsWithOldHal()