Home
last modified time | relevance | path

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

/art/libnativeloader/
Dlibrary_namespaces.cpp120 size_t end_pos = path_list.find(':', start_pos); in GetApiDomainFromPathList() local
122 GetApiDomainFromPath(std::string_view(path_list).substr(start_pos, end_pos)); in GetApiDomainFromPathList()
133 if (end_pos == std::string::npos) { in GetApiDomainFromPathList()
136 start_pos = end_pos + 1; in GetApiDomainFromPathList()
/art/profman/
Dprofman.cc1398 size_t end_pos = maybe_annotated_line.find(kAnnotationEnd, 0); in ProcessLine() local
1399 if (end_pos == std::string::npos || end_pos == 0) { in ProcessLine()
1403 annotation_string = maybe_annotated_line.substr(1, end_pos - 1); in ProcessLine()
1405 line = maybe_annotated_line.substr(end_pos + 1); in ProcessLine()