HomeSort by relevance Sort by last modified time
    Searched full:out_node (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
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);
passthrough_fs.cc 140 Error PassthroughFs::Open(const Path& path, int mode, ScopedNode* out_node) {
141 out_node->reset(NULL);
147 out_node->reset(new PassthroughFsNode(this, real_fd));
151 Error PassthroughFs::OpenResource(const Path& path, ScopedNode* out_node) {
153 out_node->reset(NULL);
158 out_node->reset(new PassthroughFsNode(this, real_fd));
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
filesystem.cc 41 Error Filesystem::OpenResource(const Path& path, ScopedNode* out_node) {
42 out_node->reset(NULL);
filesystem.h 71 // Assumes that |out_node| is non-NULL.
74 ScopedNode* out_node) = 0;
78 // Assumes that |out_node| is non-NULL.
79 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
dir_node.cc 98 Error DirNode::FindChild(const std::string& name, ScopedNode* out_node) {
99 out_node->reset(NULL);
106 *out_node = it->second;
dir_node.h 50 virtual Error FindChild(const std::string& name, ScopedNode* out_node);
kernel_object.h 63 // Assumes |out_fs| and |out_node| are non-NULL.
67 ScopedNode* out_node);
kernel_object.cc 97 ScopedNode* out_node) {
100 out_node->reset(NULL);
105 error = (*out_fs)->Open(rel_parts, oflags, out_node);
node.cc 226 Error Node::FindChild(const std::string& name, ScopedNode* out_node) {
227 out_node->reset(NULL);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
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);
mem_fs.cc 41 Error MemFs::FindNode(const Path& path, int type, ScopedNode* out_node) {
42 out_node->reset(NULL);
74 *out_node = node;
95 Error MemFs::Open(const Path& path, int open_flags, ScopedNode* out_node) {
96 out_node->reset(NULL);
135 *out_node = node;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
dev_fs.h 18 virtual Error Open(const Path& path, int open_flags, ScopedNode* out_node);
dev_fs.cc 304 Error DevFs::Open(const Path& path, int open_flags, ScopedNode* out_node) {
305 out_node->reset(NULL);
309 error = fs_dir_->FindChild(path.Part(2), out_node);
313 error = root_->FindChild(path.Join(), out_node);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
http_fs.h 22 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
38 Error FindOrCreateDir(const Path& path, ScopedNode* out_node);
http_fs.cc 68 Error HttpFs::Open(const Path& path, int open_flags, ScopedNode* out_node) {
69 out_node->reset(NULL);
74 *out_node = iter->second;
99 *out_node = node;
255 Error HttpFs::FindOrCreateDir(const Path& path, ScopedNode* out_node) {
256 out_node->reset(NULL);
260 *out_node = iter->second;
284 *out_node = node;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
html5_fs.h 22 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
html5_fs.cc 38 Error Html5Fs::Open(const Path& path, int open_flags, ScopedNode* out_node) {
39 out_node->reset(NULL);
54 *out_node = node;
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
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);
fake_pepper_interface_html5_fs.cc 155 FakeHtml5FsNode** out_node) {
156 return AddFile(path, std::vector<uint8_t>(), out_node);
161 FakeHtml5FsNode** out_node) {
164 return AddFile(path, data, out_node);
169 FakeHtml5FsNode** out_node) {
172 if (out_node)
173 *out_node = NULL;
190 if (out_node)
191 *out_node = &result.first->second;
196 FakeHtml5FsNode** out_node) {
    [all...]
  /external/chromium_org/content/browser/frame_host/
frame_tree.cc 24 FrameTreeNode** out_node,
27 *out_node = node;
36 FrameTreeNode** out_node,
41 *out_node = node;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
js_fs.h 39 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
stream_fs.h 58 virtual Error Open(const Path& path, int o_flags, ScopedNode* out_node);
stream_fs.cc 91 Error StreamFs::Open(const Path& path, int o_flags, ScopedNode* out_node) {
  /external/chromium_org/chrome/browser/extensions/api/automation_internal/
automation_util.cc 143 linked_ptr<api::automation_internal::AXNodeData> out_node(
145 PopulateNodeData(event.nodes[i], out_node);
146 ax_tree_update.nodes.push_back(out_node);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
fuse_fs.h 25 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);

Completed in 372 milliseconds

1 2