HomeSort by relevance Sort by last modified time
    Searched refs:read_file (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium_org/remoting/host/setup/
test_util.h 14 bool MakePipe(base::File* read_file,
test_util.cc 15 bool MakePipe(base::File* read_file,
22 *read_file = base::File(read_handle);
28 *read_file = base::File(fds[0]);
me2me_native_messaging_host_main.cc 118 base::File read_file; local
142 read_file = base::File(CreateFile(
145 if (!read_file.IsValid()) {
162 read_file = base::File(GetStdHandle(STD_INPUT_HANDLE));
178 read_file = base::File(STDIN_FILENO);
245 new PipeMessagingChannel(read_file.Pass(), write_file.Pass()));
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/
read_file_unittest.cc 5 #include "chrome/browser/chromeos/file_system_provider/operations/read_file.h"
99 ReadFile read_file(NULL,
107 read_file.SetDispatchEventImplForTesting(
111 EXPECT_TRUE(read_file.Execute(kRequestId));
137 ReadFile read_file(NULL,
145 read_file.SetDispatchEventImplForTesting(
149 EXPECT_FALSE(read_file.Execute(kRequestId));
159 ReadFile read_file(NULL,
167 read_file.SetDispatchEventImplForTesting(
171 EXPECT_TRUE(read_file.Execute(kRequestId))
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_process_launcher.h 38 base::File read_file,
72 base::File* read_file,
native_process_launcher.cc 67 base::File read_file,
72 base::File read_file,
197 base::File read_file; local
200 command_line, &process_handle, &read_file, &write_file)) {
201 PostResult(callback, process_handle, read_file.Pass(), write_file.Pass());
211 base::File read_file,
217 callback.Run(result, process_handle, read_file.Pass(), write_file.Pass());
233 base::File read_file,
239 Passed(read_file.Pass()), Passed(write_file.Pass())));
native_message_process_host_unittest.cc 51 FakeLauncher(base::File read_file, base::File write_file)
52 : read_file_(read_file.Pass()),
56 static scoped_ptr<NativeProcessLauncher> Create(base::FilePath read_file,
65 base::File(read_file, read_flags),
203 base::File read_file; local
218 read_file = read_handle.Pass();
222 read_file = base::File(pipe_handles[0]);
227 FakeLauncher::CreateWithPipeInput(read_file.Pass(),
native_process_launcher_posix.cc 54 base::File* read_file,
93 *read_file = base::File(read_pipe_read_fd.release());
native_process_launcher_win.cc 93 base::File* read_file,
173 *read_file = base::File(stdout_pipe.Take());
native_message_process_host.cc 168 base::File read_file,
192 read_file_ = read_file.GetPlatformFile();
200 read_stream_.reset(new net::FileStream(read_file.Pass(), task_runner));
native_message_process_host.h 110 base::File read_file,
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
concatenate_module_descriptors.py 21 def read_file(filename): function
34 module_json = json.loads(read_file(json_filename))
50 output_contents = re.sub('var allDescriptors = \[\];', 'var allDescriptors = %s;' % build_modules(module_jsons).replace("\\", "\\\\"), read_file(input_filename), 1)
concatenate_module_scripts.py 33 def read_file(filename): function
54 output.write(read_file(file_path))
71 descriptor = json.loads(read_file(module_json_file_name))
concatenate_application_code.py 15 from modular_build import read_file, write_file, bail_error namespace
61 output.write(read_file(path.join(application_dir, 'Runtime.js')))
71 output.write(read_file(path.join(application_dir, application_loader_name)))
88 output.write(read_file(path.join(application_dir, 'Runtime.js')))
modular_build.py 20 def read_file(filename): function
42 output.write(read_file(file_path))
129 application_descriptor_json = read_file(application_descriptor_filename)
150 module_json = json.loads(read_file(json_filename))
  /external/llvm/test/Bindings/Ocaml/
bitwriter.ml 17 let read_file name = var
34 let temp_buf = read_file temp_name in
44 let file_buf = read_file Sys.argv.(1) in
  /external/chromium_org/remoting/host/it2me/
it2me_native_messaging_host_main.cc 90 base::File read_file(GetStdHandle(STD_INPUT_HANDLE));
105 base::File read_file(STDIN_FILENO);
122 new PipeMessagingChannel(read_file.Pass(), write_file.Pass()));
  /external/chromium_org/third_party/skia/tools/
skdiff_utils.h 26 SkData* read_file(const char* file_path);
  /external/skia/tools/
skdiff_utils.h 26 SkData* read_file(const char* file_path);
  /system/core/init/
util.h 30 void *read_file(const char *fn, unsigned *_sz);
  /system/core/toolbox/
insmod.c 14 static void *read_file(const char *filename, ssize_t *_size) function
63 file = read_file(argv[1], &size);
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
Test.pm 17 sub read_file { subroutine
127 my $err = read_file('err.tmp');
133 my $out = read_file('out.tmp');
  /build/tools/
product_debug.py 71 def read_file(fn): function
100 original = read_file(variables["FILE"])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 195 def read_file(): function in function:TestRefactoringTool.check_file_refactoring
199 old_contents = read_file()
205 self.assertEqual(old_contents, read_file())
210 new_contents = read_file()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 195 def read_file(): function in function:TestRefactoringTool.check_file_refactoring
199 old_contents = read_file()
205 self.assertEqual(old_contents, read_file())
210 new_contents = read_file()

Completed in 383 milliseconds

1 2