Home
last modified time | relevance | path

Searched refs:extra_descriptor (Results 1 – 2 of 2) sorted by relevance

/art/libprofile/profile/
Dprofile_compilation_info.cc1304 std::string_view extra_descriptor) { in AddExtraDescriptor() argument
1305 DCHECK_LE(extra_descriptor.size(), kMaxExtraDescriptorLength); in AddExtraDescriptor()
1306 DCHECK(extra_descriptors_indexes_.find(extra_descriptor) == extra_descriptors_indexes_.end()); in AddExtraDescriptor()
1313 extra_descriptors_.emplace_back(extra_descriptor); in AddExtraDescriptor()
1695 std::string_view extra_descriptor; in ReadExtraDescriptorsSection() local
1696 if (!buffer.ReadStringAndAdvance(&extra_descriptor)) { in ReadExtraDescriptorsSection()
1700 if (!IsValidDescriptor(std::string(extra_descriptor).c_str())) { in ReadExtraDescriptorsSection()
1705 auto it = extra_descriptors_indexes_.find(extra_descriptor); in ReadExtraDescriptorsSection()
1711 ExtraDescriptorIndex extra_descriptor_index = AddExtraDescriptor(extra_descriptor); in ReadExtraDescriptorsSection()
Dprofile_compilation_info.h982 ExtraDescriptorIndex AddExtraDescriptor(std::string_view extra_descriptor);