Home
last modified time | relevance | path

Searched refs:DBAdSelectionDebugReport (Results 1 – 9 of 9) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/adselection/
DDBAdSelectionDebugReportTest.java40 DBAdSelectionDebugReport dbAdSelectionDebugReport = in testAdSelectionDebugReport_create_success()
41 DBAdSelectionDebugReport.create( in testAdSelectionDebugReport_create_success()
43 DBAdSelectionDebugReport expected = in testAdSelectionDebugReport_create_success()
44 DBAdSelectionDebugReport.builder() in testAdSelectionDebugReport_create_success()
55 DBAdSelectionDebugReport dbAdSelectionDebugReport = in testAdSelectionDebugReport_create_adSelectionDebugReportIdNull()
56 DBAdSelectionDebugReport.create(null, DEBUG_URI, false, CREATION_TIMESTAMP); in testAdSelectionDebugReport_create_adSelectionDebugReportIdNull()
57 DBAdSelectionDebugReport expected = in testAdSelectionDebugReport_create_adSelectionDebugReportIdNull()
58 DBAdSelectionDebugReport.builder() in testAdSelectionDebugReport_create_adSelectionDebugReportIdNull()
69 DBAdSelectionDebugReport dbAdSelectionDebugReport = in testAdSelectionDebugReport_create_DebugReportUriEmpty()
70 DBAdSelectionDebugReport.create(null, Uri.EMPTY, true, CREATION_TIMESTAMP); in testAdSelectionDebugReport_create_DebugReportUriEmpty()
[all …]
DAdSelectionDebugReportDaoTest.java46 private static final DBAdSelectionDebugReport DB_AD_SELECTION_DEBUG_REPORT =
47 DBAdSelectionDebugReport.create(null, DEBUG_URI, false, FIXED_NOW.toEpochMilli());
48 private static final List<DBAdSelectionDebugReport> AD_SELECTION_DEBUG_REPORT_LIST =
70 DBAdSelectionDebugReport dbAdSelectionDebugReport = in testPersistAdSelectionDebugReportingHandlesDuplicateEntries()
71 DBAdSelectionDebugReport.create(1234L, DEBUG_URI, true, FIXED_NOW.toEpochMilli()); in testPersistAdSelectionDebugReportingHandlesDuplicateEntries()
76 List<DBAdSelectionDebugReport> debugReports = in testPersistAdSelectionDebugReportingHandlesDuplicateEntries()
88 List<DBAdSelectionDebugReport> debugReports = in testGetDebugReportsBeforeTime()
94 DBAdSelectionDebugReport actualDebugReport = debugReports.get(0); in testGetDebugReportsBeforeTime()
109 DBAdSelectionDebugReport debugReportBeforeCurrentTime = in testDeleteDebugReportsBeforeTime()
110 DBAdSelectionDebugReport.create( in testDeleteDebugReportsBeforeTime()
[all …]
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/adselection/
DDebugReportSenderStrategyBatchImpl.java28 import com.android.adservices.data.adselection.DBAdSelectionDebugReport;
50 @NonNull private final Queue<DBAdSelectionDebugReport> mDebugReportQueue;
71 DBAdSelectionDebugReport dbAdSelectionDebugReport = in enqueue()
72 DBAdSelectionDebugReport.create( in enqueue()
85 DBAdSelectionDebugReport dbAdSelectionDebugReport = in batchEnqueue()
86 DBAdSelectionDebugReport.create( in batchEnqueue()
100 List<DBAdSelectionDebugReport> adSelectionDebugReports = new ArrayList<>(mDebugReportQueue); in flush()
DDebugReportSenderWorker.java27 import com.android.adservices.data.adselection.DBAdSelectionDebugReport;
127 private FluentFuture<List<DBAdSelectionDebugReport>> getDebugReports( in getDebugReports()
139 List<DBAdSelectionDebugReport> debugReports = in getDebugReports()
168 @NonNull List<DBAdSelectionDebugReport> dbAdSelectionDebugReports) {
185 DBAdSelectionDebugReport dbAdSelectionDebugReport) {
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/adselection/
DDBAdSelectionDebugReport.java37 tableName = DBAdSelectionDebugReport.TABLE_NAME,
39 public abstract class DBAdSelectionDebugReport { class
78 public static DBAdSelectionDebugReport create( in create()
123 public abstract DBAdSelectionDebugReport build(); in build()
DAdSelectionDebugReportDao.java43 @NonNull List<DBAdSelectionDebugReport> adSelectionDebugReports); in persistAdSelectionDebugReporting()
56 public abstract List<DBAdSelectionDebugReport> getDebugReportsBeforeTime( in getDebugReportsBeforeTime()
DAdSelectionDebugReportingDatabase.java32 entities = {DBAdSelectionDebugReport.class},
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/adselection/
DDebugReportSenderWorkerTest.java36 import com.android.adservices.data.adselection.DBAdSelectionDebugReport;
248 private static List<DBAdSelectionDebugReport> createTestAdSelectionDebugReports( in createTestAdSelectionDebugReports()
250 List<DBAdSelectionDebugReport> debugReports = new ArrayList<>(); in createTestAdSelectionDebugReports()
252 DBAdSelectionDebugReport adSelectionDebugReport = in createTestAdSelectionDebugReports()
253 DBAdSelectionDebugReport.create( in createTestAdSelectionDebugReports()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/common/
DFledgeE2ETest.java119 import com.android.adservices.data.adselection.DBAdSelectionDebugReport;
2008 List<DBAdSelectionDebugReport> debugReports = in testFledgeFlowSuccessWithDebugReportingSentInBatch()
2103 List<DBAdSelectionDebugReport> debugReports = in testFledgeFlowSuccessWithDebugReportingDisabledWhenLatEnabled()
2171 List<DBAdSelectionDebugReport> debugReports = in testFledgeFlowSuccessWithDebugReportingDisabledWhenAdIdServiceDisabled()