Home
last modified time | relevance | path

Searched refs:EventRecordAndSystemProfile (Results 1 – 14 of 14) sorted by relevance

/packages/modules/AdServices/adservices/libraries/cobalt/tests/src/com/android/cobalt/observations/
DStringHistogramEncoderTest.java21 import com.android.cobalt.data.EventRecordAndSystemProfile;
54 private EventRecordAndSystemProfile createEvent( in createEvent()
56 return EventRecordAndSystemProfile.create( in createEvent()
102 EventRecordAndSystemProfile event1 = in multipleEventsDisjointStrings()
114 EventRecordAndSystemProfile event2 = in multipleEventsDisjointStrings()
122 EventRecordAndSystemProfile event3 = in multipleEventsDisjointStrings()
174 EventRecordAndSystemProfile event1 = in multipleEventsSameStrings()
186 EventRecordAndSystemProfile event2 = in multipleEventsSameStrings()
194 EventRecordAndSystemProfile event3 = in multipleEventsSameStrings()
242 EventRecordAndSystemProfile event = in bucketWithInvalidIndexExcluded()
[all …]
DIntegerEncoderTest.java21 import com.android.cobalt.data.EventRecordAndSystemProfile;
46 EventRecordAndSystemProfile event1 = in encodesEventsIntoOneObservation()
47 EventRecordAndSystemProfile.create( in encodesEventsIntoOneObservation()
51 EventRecordAndSystemProfile event2 = in encodesEventsIntoOneObservation()
52 EventRecordAndSystemProfile.create( in encodesEventsIntoOneObservation()
DNonPrivateObservationGeneratorTest.java23 import com.android.cobalt.data.EventRecordAndSystemProfile;
82 private static final EventRecordAndSystemProfile EVENT_1 =
84 private static final EventRecordAndSystemProfile EVENT_2 =
171 private static EventRecordAndSystemProfile createEvent( in createEvent()
174 return EventRecordAndSystemProfile.create( in createEvent()
180 private static EventRecordAndSystemProfile createEvent( in createEvent()
183 return EventRecordAndSystemProfile.create( in createEvent()
DPrivateObservationGeneratorTest.java23 import com.android.cobalt.data.EventRecordAndSystemProfile;
87 private static final EventRecordAndSystemProfile EVENT_1 =
162 private static EventRecordAndSystemProfile createEvent( in createEvent()
165 return EventRecordAndSystemProfile.create( in createEvent()
171 private static EventRecordAndSystemProfile createEvent( in createEvent()
174 return EventRecordAndSystemProfile.create( in createEvent()
/packages/modules/AdServices/adservices/libraries/cobalt/java/com/android/cobalt/observations/
DNonPrivateObservationGenerator.java23 import com.android.cobalt.data.EventRecordAndSystemProfile;
50 Observation encode(ImmutableList<EventRecordAndSystemProfile> events); in encode()
86 ImmutableListMultimap<SystemProfile, EventRecordAndSystemProfile> allEventData) { in generateObservations()
88 for (Map.Entry<SystemProfile, Collection<EventRecordAndSystemProfile>> eventData : in generateObservations()
91 ImmutableList<EventRecordAndSystemProfile> events = in generateObservations()
DIntegerEncoder.java23 import com.android.cobalt.data.EventRecordAndSystemProfile;
52 public Observation encode(ImmutableList<EventRecordAndSystemProfile> events) { in encode()
54 for (EventRecordAndSystemProfile event : events) { in encode()
DPrivateObservationGenerator.java23 import com.android.cobalt.data.EventRecordAndSystemProfile;
101 ImmutableListMultimap<SystemProfile, EventRecordAndSystemProfile> allEventData) { in generateObservations()
131 ImmutableList<EventRecordAndSystemProfile> events) { in generateObservations()
141 for (EventRecordAndSystemProfile event : events) { in generateObservations()
DStringHistogramEncoder.java23 import com.android.cobalt.data.EventRecordAndSystemProfile;
68 public Observation encode(ImmutableList<EventRecordAndSystemProfile> events) { in encode()
78 for (EventRecordAndSystemProfile event : events) { in encode()
/packages/modules/AdServices/adservices/libraries/cobalt/tests/src/com/android/cobalt/data/
DDataServiceTest.java80 private static final EventRecordAndSystemProfile EVENT_RECORD_3 =
82 private static final EventRecordAndSystemProfile EVENT_RECORD_3_2 =
84 private static final EventRecordAndSystemProfile EVENT_RECORD_4 =
86 private static final EventRecordAndSystemProfile EVENT_RECORD_4_2 =
100 private static final ImmutableListMultimap<SystemProfile, EventRecordAndSystemProfile>
136 private static EventRecordAndSystemProfile createEventRecord( in createEventRecord()
138 return EventRecordAndSystemProfile.create( in createEventRecord()
973 ImmutableListMultimap<SystemProfile, EventRecordAndSystemProfile> expectedEventRecord = in generateObservations_oneEvent_oneObservationStored()
1020 ImmutableListMultimap<SystemProfile, EventRecordAndSystemProfile> expectedEventRecord = in generateObservations_multipleEventVectors_oneObservationStored()
1067 ImmutableListMultimap<SystemProfile, EventRecordAndSystemProfile> expectedEventRecord = in generateObservations_multipleSystemProfiles_twoObservationsStored()
[all …]
DDaoBuildingBlocksTest.java208 private List<EventRecordAndSystemProfile> queryEventRecordsForDay( in queryEventRecordsForDay()
636 List<EventRecordAndSystemProfile> eventRecords = in testQueryEventRecordsForDay()
640 EventRecordAndSystemProfile.create( in testQueryEventRecordsForDay()
642 EventRecordAndSystemProfile.create( in testQueryEventRecordsForDay()
648 EventRecordAndSystemProfile.create( in testQueryEventRecordsForDay()
/packages/modules/AdServices/adservices/libraries/cobalt/java/com/android/cobalt/data/
DEventRecordAndSystemProfile.java35 public abstract class EventRecordAndSystemProfile { class
60 public static EventRecordAndSystemProfile create( in create()
DObservationGenerator.java36 ImmutableListMultimap<SystemProfile, EventRecordAndSystemProfile> eventData); in generateObservations()
DDaoBuildingBlocks.java503 List<EventRecordAndSystemProfile> queryEventRecordsForDay(ReportKey reportKey, int dayIndex) { in queryEventRecordsForDay()
538 abstract List<EventRecordAndSystemProfile> queryEventRecordsForDay( in queryEventRecordsForDay()
DDataService.java469 ImmutableListMultimap<SystemProfile, EventRecordAndSystemProfile> eventData = in generateObservationsSync()
473 EventRecordAndSystemProfile::systemProfile, e -> e)); in generateObservationsSync()