Home
last modified time | relevance | path

Searched refs:publishType (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Wifi/framework/java/android/net/wifi/aware/
DPublishConfig.java121 int publishType, int ttlSec, boolean enableTerminateNotification, in PublishConfig() argument
129 mPublishType = publishType; in PublishConfig()
200 int publishType = in.readInt();
214 return new PublishConfig(serviceName, ssi, matchFilter, publishType, ttlSec,
514 public Builder setPublishType(@PublishTypes int publishType) { in setPublishType() argument
515 if (publishType < PUBLISH_TYPE_UNSOLICITED || publishType > PUBLISH_TYPE_SOLICITED) { in setPublishType()
516 throw new IllegalArgumentException("Invalid publishType - " + publishType); in setPublishType()
518 mPublishType = publishType; in setPublishType()
/packages/modules/Wifi/aidl/mainline_supplicant/android/system/wifi/mainline_supplicant/
DIStaInterface.aidl229 UsdPublishType publishType;
/packages/modules/Wifi/tests/hostsidetests/multidevices/com.google.snippet.wifi/aware/
DWifiAwareJsonDeserializer.java244 int publishType = jsonObject.getInt(PUBLISH_TYPE); in jsonToPublishConfig() local
245 builder.setPublishType(publishType); in jsonToPublishConfig()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/aware/
DWifiAwareManagerTest.java984 final int publishType = PublishConfig.PUBLISH_TYPE_SOLICITED; in testPublishConfigBuilder() local
994 .setPublishType(publishType) in testPublishConfigBuilder()
1008 collector.checkThat("mPublishType", publishType, equalTo(publishConfig.mPublishType)); in testPublishConfigBuilder()
1024 final int publishType = PublishConfig.PUBLISH_TYPE_SOLICITED; in testPublishConfigParcel() local
1035 .setPublishType(publishType) in testPublishConfigParcel()
/packages/modules/Wifi/service/java/com/android/server/wifi/mainline_supplicant/
DMainlineSupplicant.java400 aidlConfig.publishType = IStaInterface.UsdPublishType.SOLICITED_AND_UNSOLICITED; in frameworkToHalUsdPublishConfig()
/packages/modules/Wifi/service/java/com/android/server/wifi/hal/
DWifiNanIfaceHidlImpl.java671 req.publishType = publishConfig.mPublishType; in publishInternal()
727 req.publishType = publishConfig.mPublishType; in publishInternal()
DWifiNanIfaceAidlImpl.java871 req.publishType = publishConfig.mPublishType; in createNanPublishRequest()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSupplicantStaIfaceHalAidlImpl.java4219 aidlConfig.publishType = UsdPublishConfig.PublishType.SOLICITED_AND_UNSOLICITED; in frameworkToHalPublishConfig()