Home
last modified time | relevance | path

Searched refs:DBReportingData (Results 1 – 6 of 6) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/adselection/
DDBReportingDataTest.java44 assertThrows(IllegalStateException.class, () -> DBReportingData.builder().build()); in testBuild_unsetAdSelectionId_throwsISE()
49 DBReportingData reportingData = in testBuild_success()
50 DBReportingData.builder() in testBuild_success()
63 DBReportingData reportingData = in testCreate_success()
64 DBReportingData.create( in testCreate_success()
74 DBReportingData reportingData = in testBuild_sellerEmptyUri_success()
75 DBReportingData.builder() in testBuild_sellerEmptyUri_success()
88 DBReportingData reportingData = in testBuild_buyerEmptyUri_success()
89 DBReportingData.builder() in testBuild_buyerEmptyUri_success()
102 DBReportingData reportingData = in testCreate_sellerEmptyUri_success()
[all …]
DAdSelectionEntryDaoTest.java1906 DBReportingData actualData = in test_persistReportingData_success()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/adselection/
DDBReportingData.java51 public abstract class DBReportingData { class
71 public static DBReportingData.Builder builder() { in builder()
81 public static DBReportingData create( in create()
97 public abstract DBReportingData.Builder setAdSelectionId(long adSelectionId); in setAdSelectionId()
100 public abstract DBReportingData.Builder setSellerReportingUri( in setSellerReportingUri()
104 public abstract DBReportingData.Builder setBuyerReportingUri( in setBuyerReportingUri()
108 public abstract DBReportingData build(); in build()
DAdSelectionEntryDao.java821 DBReportingData dbReportingData = in persistReportingData()
822 DBReportingData.builder() in persistReportingData()
1018 abstract void insertDBReportingData(DBReportingData dbReportingData); in insertDBReportingData()
1030 abstract DBReportingData getDBReportingDataForId(long adSelectionId); in getDBReportingDataForId()
DAdSelectionDatabase.java41 DBReportingData.class,
/packages/modules/AdServices/adservices/tests/unittest/fixtures/java/android/adservices/adselection/
DDataHandlersFixture.java29 import com.android.adservices.data.adselection.DBReportingData;
196 public static DBReportingData.Builder DB_REPORTING_DATA =
197 DBReportingData.builder()
219 public static DBReportingData getDBReportingDataWithId(long adSelectionId) { in getDBReportingDataWithId()