Home
last modified time | relevance | path

Searched refs:DBComponentAdData (Results 1 – 10 of 10) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/protectedaudience/src/com/android/adservices/data/customaudience/
DDBComponentAdDataTest.java36 DBComponentAdData dbComponentAdData = in testBuildDBComponentAdData_BuilderSuccess()
37 DBComponentAdData.builder() in testBuildDBComponentAdData_BuilderSuccess()
62 DBComponentAdData dbComponentAdData = in testBuildDBComponentAdData_CreateSuccess()
63 DBComponentAdData.create( in testBuildDBComponentAdData_CreateSuccess()
89 DBComponentAdData.builder() in testBuildDBComponentAdData_WithNullOwner_ThrowsException()
102 DBComponentAdData.builder() in testBuildDBComponentAdData_WithNullBuyer_ThrowsException()
115 DBComponentAdData.builder() in testBuildDBComponentAdData_WithNullName_ThrowsException()
128 DBComponentAdData.builder() in testBuildDBComponentAdData_WithNullRenderUri_ThrowsException()
141 DBComponentAdData.builder() in testBuildDBComponentAdData_WithNullRenderId_ThrowsException()
DCustomAudienceDaoTest.java1554 List<DBComponentAdData> expectedComponentAds = in testCreateOrUpdate_UpdateExistingCustomAudienceAndBackgroundFetchDataWithComponentAds()
3696 DBComponentAdData dbComponentAdData1 = in testInsertComponentAdDataRetrievesComponentAdDataCorrectly()
3702 List<DBComponentAdData> dbComponentAdDataList1 = in testInsertComponentAdDataRetrievesComponentAdDataCorrectly()
3723 DBComponentAdData dbComponentAdDataForCa1 = in testInsertComponentAdDataFiltersOnCorrectCA()
3726 DBComponentAdData dbComponentAdDataForCa2 = in testInsertComponentAdDataFiltersOnCorrectCA()
3733 List<DBComponentAdData> dbComponentAdDataList1 = in testInsertComponentAdDataFiltersOnCorrectCA()
3739 List<DBComponentAdData> dbComponentAdDataList2 = in testInsertComponentAdDataFiltersOnCorrectCA()
3756 List<DBComponentAdData> expectedDBComponentAdDataList = in testComponentAdsAreReturnedInOrderOfInsertion()
3763 List<DBComponentAdData> dbComponentAdDataList = in testComponentAdsAreReturnedInOrderOfInsertion()
3789 List<DBComponentAdData> expectedDBComponentAdDataList1 = in testGetComponentAdsByBuyers_returnsOnlyRequestedBuyers()
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/protectedaudience/src/com/android/adservices/service/customaudience/
DComponentAdsStrategyTest.java40 import com.android.adservices.data.customaudience.DBComponentAdData;
195 List<DBComponentAdData> dbComponentAds1 = in testEnabledStrategyGetCustomAudiencesWithComponentAds_multipleAudiences_multipleAds()
202 List<DBComponentAdData> dbComponentAds2 = in testEnabledStrategyGetCustomAudiencesWithComponentAds_multipleAudiences_multipleAds()
210 List<DBComponentAdData> combinedComponentAds = new ArrayList<>(dbComponentAds1); in testEnabledStrategyGetCustomAudiencesWithComponentAds_multipleAudiences_multipleAds()
226 .map(DBComponentAdData::getRenderId) in testEnabledStrategyGetCustomAudiencesWithComponentAds_multipleAudiences_multipleAds()
236 .map(DBComponentAdData::getRenderId) in testEnabledStrategyGetCustomAudiencesWithComponentAds_multipleAudiences_multipleAds()
258 List<DBComponentAdData> dbComponentAds1 = in testEnabledStrategyGetCustomAudiencesWithComponentAds_multipleAudiences_someWithNoAds()
265 List<DBComponentAdData> dbComponentAds2 = in testEnabledStrategyGetCustomAudiencesWithComponentAds_multipleAudiences_someWithNoAds()
273 List<DBComponentAdData> combinedComponentAds = new ArrayList<>(dbComponentAds1); in testEnabledStrategyGetCustomAudiencesWithComponentAds_multipleAudiences_someWithNoAds()
289 .map(DBComponentAdData::getRenderId) in testEnabledStrategyGetCustomAudiencesWithComponentAds_multipleAudiences_someWithNoAds()
[all …]
DCustomAudienceServiceEndToEndTest.java123 import com.android.adservices.data.customaudience.DBComponentAdData;
270 private static final List<DBComponentAdData> DB_COMPONENT_AD_DATA_LIST =
284 private static final List<DBComponentAdData> DB_COMPONENT_AD_DATA_LIST_LOCALHOST_BUYER =
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/customaudience/
DComponentAdsStrategyEnabled.java24 import com.android.adservices.data.customaudience.DBComponentAdData;
70 List<DBComponentAdData> onDeviceComponentAds = in extractComponentAdsThatMatchOnDevice()
75 .map(DBComponentAdData::getRenderUri) in extractComponentAdsThatMatchOnDevice()
141 List<DBComponentAdData> componentAdDataList = in getCustomAudiencesWithComponentAds()
145 Map<String, List<DBComponentAdData>> componentAdDataMap = new HashMap<>(); in getCustomAudiencesWithComponentAds()
146 for (DBComponentAdData componentAd : componentAdDataList) { in getCustomAudiencesWithComponentAds()
166 List<DBComponentAdData> matchingComponentAds = in getCustomAudiencesWithComponentAds()
168 for (DBComponentAdData componentAdData : matchingComponentAds) { in getCustomAudiencesWithComponentAds()
/packages/modules/AdServices/adservices/tests/unittest/fixtures/java/android/adservices/common/
DDBComponentAdDataFixture.java19 import com.android.adservices.data.customaudience.DBComponentAdData;
26 public static DBComponentAdData getDBComponentAdData( in getDBComponentAdData()
28 return DBComponentAdData.create( in getDBComponentAdData()
37 public static List<DBComponentAdData> getValidComponentAdsByBuyer( in getValidComponentAdsByBuyer()
43 List<DBComponentAdData> result = new ArrayList<>(); in getValidComponentAdsByBuyer()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/customaudience/
DDBComponentAdData.java33 tableName = DBComponentAdData.TABLE_NAME,
45 public abstract class DBComponentAdData { class
94 public static DBComponentAdData create( in create()
111 public static DBComponentAdData.Builder builder() { in builder()
140 public abstract DBComponentAdData build(); in build()
DCustomAudienceDao.java1036 abstract void insertComponentAdData(DBComponentAdData componentAdData); in insertComponentAdData()
1050 DBComponentAdData dbComponentAdData = in insertAndOverwriteComponentAds()
1051 DBComponentAdData.builder() in insertAndOverwriteComponentAds()
1069 public abstract List<DBComponentAdData> getComponentAdsByCustomAudienceInfo( in getComponentAdsByCustomAudienceInfo()
1077 public abstract List<DBComponentAdData> getComponentAdsByBuyers(Set<AdTechIdentifier> buyerSet); in getComponentAdsByBuyers()
DCustomAudienceDatabase.java50 DBComponentAdData.class
/packages/modules/AdServices/adservices/tests/unittest/service-core/protectedaudience/src/com/android/adservices/service/adselection/
DPersistAdSelectionResultRunnerTest.java107 import com.android.adservices.data.customaudience.DBComponentAdData;
770 DBComponentAdData dbComponentAdData1 = in testRunner_persistRemarketingResult_successWithComponentAdsEnabled()
771 DBComponentAdData.create( in testRunner_persistRemarketingResult_successWithComponentAdsEnabled()
777 DBComponentAdData dbComponentAdData2 = in testRunner_persistRemarketingResult_successWithComponentAdsEnabled()
778 DBComponentAdData.create( in testRunner_persistRemarketingResult_successWithComponentAdsEnabled()
785 List<DBComponentAdData> dbComponentAdDataList = in testRunner_persistRemarketingResult_successWithComponentAdsEnabled()
918 DBComponentAdData dbComponentAdData1 = in testRunner_persistRemarketingResult_successWithComponentAdsDisabled()
919 DBComponentAdData.create( in testRunner_persistRemarketingResult_successWithComponentAdsDisabled()
925 DBComponentAdData dbComponentAdData2 = in testRunner_persistRemarketingResult_successWithComponentAdsDisabled()
926 DBComponentAdData.create( in testRunner_persistRemarketingResult_successWithComponentAdsDisabled()
[all …]