Searched refs:child_path (Results 1 – 1 of 1) sorted by relevance
/packages/providers/MediaProvider/jni/ |
D | FuseDaemon.cpp | 705 const string child_path = parent_path + "/" + name; in do_lookup() local 707 std::regex_search(child_path, match, storage_emulated_regex); in do_lookup() 721 return make_node_entry(req, parent_node, name, child_path, e, error_code, op); in do_lookup() 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() 952 if (make_node_entry(req, parent_node, name, child_path, &e, &error_code, FuseOp::mknod)) { in pf_mknod() 980 const string child_path = parent_path + "/" + name; in pf_mkdir() local 982 int status = fuse->mp->IsCreatingDirAllowed(child_path, ctx->uid); in pf_mkdir() 989 if (mkdir(child_path.c_str(), mode) < 0) { in pf_mkdir() 996 if (make_node_entry(req, parent_node, name, child_path, &e, &error_code, FuseOp::mkdir)) { in pf_mkdir() [all …]
|