Home
last modified time | relevance | path

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

/aosp12/packages/providers/MediaProvider/jni/
H A DFuseDaemon.cpp705 const string child_path = parent_path + "/" + name; in do_lookup() local
942 const string child_path = parent_path + "/" + name; in pf_mknod() local
945 if (mknod(child_path.c_str(), mode, rdev) < 0) { in pf_mknod()
980 const string child_path = parent_path + "/" + name; in pf_mkdir() local
989 if (mkdir(child_path.c_str(), mode) < 0) { in pf_mkdir()
1021 const string child_path = parent_path + "/" + name; in pf_unlink() local
1057 const string child_path = parent_path + "/" + name; in pf_rmdir() local
1065 if (rmdir(child_path.c_str()) < 0) { in pf_rmdir()
1807 const string child_path = parent_path + "/" + name; in pf_create() local
1828 int fd = open(child_path.c_str(), open_flags, mode); in pf_create()
[all …]
/aosp12/system/iorap/src/inode2filename/
H A Dsearch_directories.cc404 for (std::string& child_path : children_paths) { in CreateSentinel()
410 DirectoryEntry child_entry{std::move(child_path), kInvalidIno, DT_DIR}; in CreateSentinel()
500 auto child_path = [&] { return dirpath + "/" + dp->d_name; }; in ReadDirectoryEntriesFromDirectoryPath() local
511 LOG(VERBOSE) << "Find entry " << child_path() in ReadDirectoryEntriesFromDirectoryPath()
513 results.push_back(DirectoryEntry{child_path(), in ReadDirectoryEntriesFromDirectoryPath()
518 LOG(WARNING) << "Found unknown DT entry: " << child_path(); in ReadDirectoryEntriesFromDirectoryPath()
520 results.push_back(DirectoryEntryError{kDtUnknown, /*errno*/0, child_path()}); in ReadDirectoryEntriesFromDirectoryPath()
523 results.push_back(DirectoryEntry{child_path(), in ReadDirectoryEntriesFromDirectoryPath()
528 LOG(VERBOSE) << "Skip DT entry of type: " << dp->d_type << " " << child_path(); in ReadDirectoryEntriesFromDirectoryPath()
/aosp12/art/runtime/
H A Dvdex_file.cc231 static bool CreateDirectories(const std::string& child_path, /* out */ std::string* error_msg) { in CreateDirectories() argument
232 size_t last_slash_pos = child_path.find_last_of('/'); in CreateDirectories()
233 CHECK_NE(last_slash_pos, std::string::npos) << "Invalid path: " << child_path; in CreateDirectories()
234 std::string parent_path = child_path.substr(0, last_slash_pos); in CreateDirectories()