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

12

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
H A Dpassthrough_fs.cc26 mode_t mode, ScopedNode* out_node) {
27 out_node->reset(NULL);
33 out_node->reset(new RealNode(this, real_fd, true));
37 Error PassthroughFs::OpenResource(const Path& path, ScopedNode* out_node) { argument
39 out_node->reset(NULL);
44 out_node->reset(new RealNode(this, real_fd));
25 OpenWithMode(const Path& path, int open_flags, mode_t mode, ScopedNode* out_node) argument
H A Dpassthrough_fs.h22 ScopedNode* out_node);
23 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dfilesystem.cc44 ScopedNode* out_node) {
45 return OpenWithMode(path, open_flags, 0666, out_node);
48 Error Filesystem::OpenResource(const Path& path, ScopedNode* out_node) { argument
49 out_node->reset(NULL);
42 Open(const Path& path, int open_flags, ScopedNode* out_node) argument
H A Dfilesystem.h67 // Assumes that |out_node| is non-NULL.
71 ScopedNode* out_node) = 0;
75 // Assumes that |out_node| is non-NULL.
78 ScopedNode* out_node);
82 // Assumes that |out_node| is non-NULL.
83 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
H A Ddir_node.cc117 Error DirNode::FindChild(const std::string& name, ScopedNode* out_node) { argument
118 out_node->reset(NULL);
125 *out_node = it->second;
H A Ddir_node.h51 virtual Error FindChild(const std::string& name, ScopedNode* out_node);
H A Dkernel_object.h63 // Assumes |out_fs| and |out_node| are non-NULL.
67 ScopedNode* out_node);
H A Dkernel_object.cc104 ScopedNode* out_node) {
107 out_node->reset(NULL);
112 error = (*out_fs)->OpenWithMode(rel_parts, oflags, mflags, out_node);
101 AcquireFsAndNode(const std::string& path, int oflags, mode_t mflags, ScopedFilesystem* out_fs, ScopedNode* out_node) argument
H A Dnode.h122 // Assumes that |out_node| is non-NULL.
123 virtual Error FindChild(const std::string& name, ScopedNode* out_node);
H A Dnode.cc240 Error Node::FindChild(const std::string& name, ScopedNode* out_node) { argument
241 out_node->reset(NULL);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
H A Dhttp_fs.h22 ScopedNode* out_node);
39 Error FindOrCreateDir(const Path& path, ScopedNode* out_node);
H A Dhttp_fs.cc45 ScopedNode* out_node) {
46 out_node->reset(NULL);
50 *out_node = node;
75 *out_node = node;
247 Error HttpFs::FindOrCreateDir(const Path& path, ScopedNode* out_node) { argument
248 out_node->reset(NULL);
252 *out_node = node;
278 *out_node = node;
44 OpenWithMode(const Path& path, int open_flags, mode_t mode, ScopedNode* out_node) argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
H A Dmem_fs.h29 virtual Error FindNode(const Path& path, int type, ScopedNode* out_node);
33 ScopedNode* out_node);
H A Dmem_fs.cc41 Error MemFs::FindNode(const Path& path, int type, ScopedNode* out_node) { argument
42 out_node->reset(NULL);
74 *out_node = node;
79 ScopedNode* out_node) {
80 out_node->reset(NULL);
120 *out_node = node;
78 OpenWithMode(const Path& path, int open_flags, mode_t mode, ScopedNode* out_node) argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Ddev_fs.h18 ScopedNode* out_node);
H A Ddev_fs.cc244 mode_t mode, ScopedNode* out_node) {
245 out_node->reset(NULL);
249 error = fs_dir_->FindChild(path.Part(2), out_node);
255 error = root_->FindChild(path.Join(), out_node);
243 OpenWithMode(const Path& path, int open_flags, mode_t mode, ScopedNode* out_node) argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
H A Dstream_fs.h58 ScopedNode* out_node);
H A Dstream_fs.cc88 ScopedNode* out_node) {
87 OpenWithMode(const Path& path, int o_flags, mode_t mode, ScopedNode* out_node) argument
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A 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);
H A Dfake_pepper_interface_html5_fs.cc155 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) {
154 AddEmptyFile(const Path& path, FakeHtml5FsNode** out_node) argument
159 AddFile(const Path& path, const std::string& contents, FakeHtml5FsNode** out_node) argument
167 AddFile(const Path& path, const std::vector<uint8_t>& contents, FakeHtml5FsNode** out_node) argument
195 AddDirectory(const Path& path, FakeHtml5FsNode** out_node) argument
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
H A Dhtml5_fs.h22 ScopedNode* out_node);
H A Dhtml5_fs.cc68 ScopedNode* out_node) {
69 out_node->reset(NULL);
88 *out_node = node;
67 OpenWithMode(const Path& path, int open_flags, mode_t mode, ScopedNode* out_node) argument
/external/chromium_org/chrome/browser/extensions/api/automation_internal/
H A Dautomation_util.cc149 linked_ptr<api::automation_internal::AXNodeData> out_node(
151 PopulateNodeData(src, out_node);
152 ax_tree_update.nodes.push_back(out_node);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
H A Djs_fs.h39 ScopedNode* out_node);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dkernel_object_test.cc36 mode_t mode, ScopedNode* out_node) {
37 out_node->reset(NULL);
35 OpenWithMode(const Path& path, int open_flags, mode_t mode, ScopedNode* out_node) argument

Completed in 949 milliseconds

12