Home
last modified time | relevance | path

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

/system/iorap/src/db/
Dfile_models.cc57 size_t next_end = path.find('/', prev_end + 1); in MkdirWithParents() local
59 std::string dir_path = path.substr(0, next_end); in MkdirWithParents()
78 prev_end = next_end; in MkdirWithParents()
80 if (next_end == std::string::npos) { in MkdirWithParents()
/system/extras/simpleperf/
Dutils.cpp231 size_t next_end = path.find('/', prev_end + 1); in MkdirWithParents() local
232 if (next_end == std::string::npos) { in MkdirWithParents()
235 std::string dir_path = path.substr(0, next_end); in MkdirWithParents()
247 prev_end = next_end; in MkdirWithParents()