Home
last modified time | relevance | path

Searched refs:OdrCompilationLogEntry (Results 1 – 3 of 3) sorted by relevance

/aosp12/art/odrefresh/
H A Dodr_compilation_log.h33 struct OdrCompilationLogEntry { struct
42 std::istream& operator>>(std::istream& is, OdrCompilationLogEntry& entry);
45 std::ostream& operator<<(std::ostream& os, const OdrCompilationLogEntry& entry);
48 bool operator==(const OdrCompilationLogEntry& lhs, const OdrCompilationLogEntry& rhs);
49 bool operator!=(const OdrCompilationLogEntry& lhs, const OdrCompilationLogEntry& rhs);
77 const OdrCompilationLogEntry* Peek(size_t index) const;
97 std::vector<OdrCompilationLogEntry> entries_;
H A Dodr_compilation_log_test.cc43 TEST(OdrCompilationLogEntry, Equality) { in TEST() argument
44 OdrCompilationLogEntry a{1, 2, 3, 4, 5}; in TEST()
54 TEST(OdrCompilationLogEntry, InputOutput) { in TEST() argument
55 const OdrCompilationLogEntry entries[] = { in TEST()
73 OdrCompilationLogEntry actual; in TEST()
79 TEST(OdrCompilationLogEntry, TruncatedInput) { in TEST() argument
83 OdrCompilationLogEntry entry; in TEST()
90 TEST(OdrCompilationLogEntry, ReadMultiple) { in TEST() argument
94 OdrCompilationLogEntry entry0, entry1; in TEST()
272 OdrCompilationLogEntry& e = entries[i]; in TEST_F()
[all …]
H A Dodr_compilation_log.cc39 std::istream& operator>>(std::istream& is, OdrCompilationLogEntry& entry) { in operator >>()
56 std::ostream& operator<<(std::ostream& os, const OdrCompilationLogEntry& entry) { in operator <<()
74 bool operator==(const OdrCompilationLogEntry& lhs, const OdrCompilationLogEntry& rhs) { in operator ==()
79 bool operator!=(const OdrCompilationLogEntry& lhs, const OdrCompilationLogEntry& rhs) { in operator !=()
111 OdrCompilationLogEntry entry; in Read()
153 const OdrCompilationLogEntry* OdrCompilationLog::Peek(size_t index) const { in Peek()
174 entries_.push_back(OdrCompilationLogEntry{apex_version, in Log()