Home
last modified time | relevance | path

Searched refs:io_path (Results 1 – 4 of 4) sorted by relevance

/packages/providers/MediaProvider/jni/
DMediaProviderWrapper.h62 bool transforms_supported, const std::string& io_path) in FileLookupResult()
68 io_path(io_path) { in FileLookupResult()
83 const std::string io_path; member
105 const std::string& io_path, uid_t uid,
157 std::unique_ptr<FileOpenResult> OnFileOpen(const std::string& path, const std::string& io_path,
DFuseDaemon.cpp529 const string& io_path = node->GetIoPath(); in get_path() local
530 return io_path.empty() ? node->BuildPath() : io_path; in get_path()
597 const string& io_path = file_lookup_result->io_path; in validate_node_path() local
599 if (!io_path.empty() && (lstat(io_path.c_str(), &e->attr) < 0)) { in validate_node_path()
627 const string& io_path = file_lookup_result->io_path; in make_node_entry() local
636 node = ::node::Create(parent, name, io_path, transforms_complete, transforms, in make_node_entry()
1555 const string& io_path = get_path(node); in pf_open() local
1557 if (!is_app_accessible_path(fuse, io_path, ctx->uid)) { in pf_open()
1562 const OpenInfo open_info = parse_open_flags(io_path, fi->flags); in pf_open()
1574 build_path, io_path, ctx->uid, ctx->pid, node->GetTransformsReason(), in pf_open()
[all …]
Dnode-inl.h146 static node* Create(node* parent, const std::string& name, const std::string& io_path, in Create() argument
154 return new node(parent, name, io_path, transforms_complete, transforms, transforms_reason, in Create()
412 node(node* parent, const std::string& name, const std::string& io_path, in node() argument
416 io_path_(io_path), in node()
DMediaProviderWrapper.cpp302 const string& io_path, uid_t uid, in OnFileOpen() argument
313 ScopedLocalRef<jstring> j_io_path(env, env->NewStringUTF(io_path.c_str())); in OnFileOpen()