/external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/ |
D | passthrough_fs.cc | 140 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()
|
D | passthrough_fs.h | 23 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/ |
D | mem_fs.cc | 41 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()
|
D | mem_fs.h | 29 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/ |
D | fake_pepper_interface_html5_fs.cc | 155 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 …]
|
D | fake_pepper_interface_html5_fs.h | 78 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/ |
D | http_fs.cc | 68 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()
|
D | http_fs.h | 22 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/ |
D | dir_node.cc | 98 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()
|
D | filesystem.cc | 41 Error Filesystem::OpenResource(const Path& path, ScopedNode* out_node) { in OpenResource() argument 42 out_node->reset(NULL); in OpenResource()
|
D | filesystem.h | 74 ScopedNode* out_node) = 0; 79 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
|
D | kernel_object.cc | 97 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()
|
D | node.cc | 226 Error Node::FindChild(const std::string& name, ScopedNode* out_node) { in FindChild() argument 227 out_node->reset(NULL); in FindChild()
|
D | dir_node.h | 50 virtual Error FindChild(const std::string& name, ScopedNode* out_node);
|
D | kernel_object.h | 67 ScopedNode* out_node);
|
/external/chromium_org/content/browser/frame_host/ |
D | frame_tree.cc | 24 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/ |
D | dev_fs.cc | 304 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()
|
D | dev_fs.h | 18 virtual Error Open(const Path& path, int open_flags, ScopedNode* out_node);
|
/external/chromium_org/chrome/browser/extensions/api/automation_internal/ |
D | automation_util.cc | 143 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/ |
D | html5_fs.cc | 38 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()
|
D | html5_fs.h | 22 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
D | kernel_object_test.cc | 35 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/ |
D | fuse_fs.cc | 68 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/ |
D | stream_fs.h | 58 virtual Error Open(const Path& path, int o_flags, ScopedNode* out_node);
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/ |
D | js_fs.cc | 412 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()
|