Home
last modified time | relevance | path

Searched refs:out_node (Results 1 – 25 of 30) sorted by relevance

12

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
Dpassthrough_fs.cc140 Error PassthroughFs::Open(const Path& path, int mode, ScopedNode* out_node) { in Open() argument
141 out_node->reset(NULL); in Open()
147 out_node->reset(new PassthroughFsNode(this, real_fd)); in Open()
151 Error PassthroughFs::OpenResource(const Path& path, ScopedNode* out_node) { in OpenResource() argument
153 out_node->reset(NULL); in OpenResource()
158 out_node->reset(new PassthroughFsNode(this, real_fd)); in OpenResource()
Dpassthrough_fs.h23 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
24 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
Dmem_fs.cc41 Error MemFs::FindNode(const Path& path, int type, ScopedNode* out_node) { in FindNode() argument
42 out_node->reset(NULL); in FindNode()
74 *out_node = node; in FindNode()
95 Error MemFs::Open(const Path& path, int open_flags, ScopedNode* out_node) { in Open() argument
96 out_node->reset(NULL); in Open()
135 *out_node = node; in Open()
Dmem_fs.h29 virtual Error FindNode(const Path& path, int type, ScopedNode* out_node);
33 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
Dfake_pepper_interface_html5_fs.cc155 FakeHtml5FsNode** out_node) { in AddEmptyFile() argument
156 return AddFile(path, std::vector<uint8_t>(), out_node); in AddEmptyFile()
161 FakeHtml5FsNode** out_node) { in AddFile() argument
164 return AddFile(path, data, out_node); in AddFile()
169 FakeHtml5FsNode** out_node) { in AddFile() argument
172 if (out_node) in AddFile()
173 *out_node = NULL; in AddFile()
190 if (out_node) in AddFile()
191 *out_node = &result.first->second; in AddFile()
196 FakeHtml5FsNode** out_node) { in AddDirectory() argument
[all …]
Dfake_pepper_interface_html5_fs.h78 bool AddEmptyFile(const Path& path, FakeHtml5FsNode** out_node);
81 FakeHtml5FsNode** out_node);
84 FakeHtml5FsNode** out_node);
85 bool AddDirectory(const Path& path, FakeHtml5FsNode** out_node);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
Dhttp_fs.cc68 Error HttpFs::Open(const Path& path, int open_flags, ScopedNode* out_node) { in Open() argument
69 out_node->reset(NULL); in Open()
74 *out_node = iter->second; in Open()
99 *out_node = node; in Open()
255 Error HttpFs::FindOrCreateDir(const Path& path, ScopedNode* out_node) { in FindOrCreateDir() argument
256 out_node->reset(NULL); in FindOrCreateDir()
260 *out_node = iter->second; in FindOrCreateDir()
284 *out_node = node; in FindOrCreateDir()
Dhttp_fs.h22 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
38 Error FindOrCreateDir(const Path& path, ScopedNode* out_node);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
Ddir_node.cc98 Error DirNode::FindChild(const std::string& name, ScopedNode* out_node) { in FindChild() argument
99 out_node->reset(NULL); in FindChild()
106 *out_node = it->second; in FindChild()
Dfilesystem.cc41 Error Filesystem::OpenResource(const Path& path, ScopedNode* out_node) { in OpenResource() argument
42 out_node->reset(NULL); in OpenResource()
Dfilesystem.h74 ScopedNode* out_node) = 0;
79 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
Dkernel_object.cc97 ScopedNode* out_node) { in AcquireFsAndNode() argument
100 out_node->reset(NULL); in AcquireFsAndNode()
105 error = (*out_fs)->Open(rel_parts, oflags, out_node); in AcquireFsAndNode()
Dnode.cc226 Error Node::FindChild(const std::string& name, ScopedNode* out_node) { in FindChild() argument
227 out_node->reset(NULL); in FindChild()
Ddir_node.h50 virtual Error FindChild(const std::string& name, ScopedNode* out_node);
Dkernel_object.h67 ScopedNode* out_node);
/external/chromium_org/content/browser/frame_host/
Dframe_tree.cc24 FrameTreeNode** out_node, in FrameTreeNodeForId() argument
27 *out_node = node; in FrameTreeNodeForId()
36 FrameTreeNode** out_node, in FrameTreeNodeForRoutingId() argument
41 *out_node = node; in FrameTreeNodeForRoutingId()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
Ddev_fs.cc304 Error DevFs::Open(const Path& path, int open_flags, ScopedNode* out_node) { in Open() argument
305 out_node->reset(NULL); in Open()
309 error = fs_dir_->FindChild(path.Part(2), out_node); in Open()
313 error = root_->FindChild(path.Join(), out_node); in Open()
Ddev_fs.h18 virtual Error Open(const Path& path, int open_flags, ScopedNode* out_node);
/external/chromium_org/chrome/browser/extensions/api/automation_internal/
Dautomation_util.cc143 linked_ptr<api::automation_internal::AXNodeData> out_node( in DispatchAccessibilityEventsToAutomation() local
145 PopulateNodeData(event.nodes[i], out_node); in DispatchAccessibilityEventsToAutomation()
146 ax_tree_update.nodes.push_back(out_node); in DispatchAccessibilityEventsToAutomation()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
Dhtml5_fs.cc38 Error Html5Fs::Open(const Path& path, int open_flags, ScopedNode* out_node) { in Open() argument
39 out_node->reset(NULL); in Open()
54 *out_node = node; in Open()
Dhtml5_fs.h22 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
Dkernel_object_test.cc35 Error Open(const Path& path, int mode, ScopedNode* out_node) { in Open() argument
36 out_node->reset(NULL); in Open()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
Dfuse_fs.cc68 Error FuseFs::Open(const Path& path, int open_flags, ScopedNode* out_node) { in Open() argument
108 *out_node = node; in Open()
136 *out_node = node; in Open()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
Dstream_fs.h58 virtual Error Open(const Path& path, int o_flags, ScopedNode* out_node);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
Djs_fs.cc412 Error JsFs::Open(const Path& path, int open_flags, ScopedNode* out_node) { in Open() argument
413 out_node->reset(NULL); in Open()
434 out_node->reset(new JsFsNode(this, fd)); in Open()

12