HomeSort by relevance Sort by last modified time
    Searched full:file_handle (Results 26 - 50 of 79) sorted by null

12 3 4

  /external/skia/tools/copyright/
main.py 88 with open(filepath, 'r') as file_handle:
89 contents = file_handle.read()
96 with open(filepath, 'w') as file_handle:
97 file_handle.write(string)
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
fake_provided_file_system.h 54 int file_handle,
56 virtual void ReadFile(int file_handle,
provided_file_system.h 51 int file_handle,
53 virtual void ReadFile(int file_handle,
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
file_stream_reader.cc 44 0 /* file_handle */,
62 int file_handle,
68 base::Bind(callback, file_system, file_path, file_handle, result));
74 int file_handle) {
77 file_system->CloseFile(file_handle, base::Bind(&EmptyStatusCallback));
86 int file_handle,
99 file_system->ReadFile(file_handle, buffer, offset, length, callback);
184 int file_handle,
197 file_handle_ = file_handle;
198 DCHECK_LT(0, file_handle);
    [all...]
file_stream_reader.h 30 int file_handle,
59 int file_handle,
  /external/chromium_org/sandbox/win/tools/finder/
finder_kernel.cc 101 HANDLE file_handle; local
102 NTSTATUS status_code = NtOpenDirectoryObject(&file_handle,
108 status_code = NtQueryDirectoryObject(file_handle,
119 while (NtQueryDirectoryObject(file_handle, object_directory_info,
143 NtClose(file_handle);
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
utility.cc 120 void CloseFileHandle(PP_FileHandle file_handle) {
122 CloseHandle(file_handle);
124 close(file_handle);
plugin.h 110 PP_FileHandle file_handle,
143 // Load a nacl module from the file specified in file_handle.
147 bool LoadHelperNaClModule(PP_FileHandle file_handle,
utility.h 34 void CloseFileHandle(PP_FileHandle file_handle);
plugin.cc 69 bool Plugin::LoadHelperNaClModule(PP_FileHandle file_handle,
105 info.handle = file_handle;
235 PP_FileHandle file_handle,
258 if (!LoadHelperNaClModule(file_handle, nacl_subprocess.get(), params)) {
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/
read_file.cc 47 int file_handle,
53 file_handle_(file_handle),
read_file.h 37 int file_handle,
open_file.cc 68 callback_.Run(0 /* file_handle */, error);
  /external/chromium_org/content/common/media/
aec_dump_messages.h 22 IPC::PlatformFileForTransit /* file_handle */)
  /external/qemu/android/utils/
mapfile.c 84 HANDLE file_handle = CreateFile(path, win32_desired_access, win32_share, local
86 if (file_handle == INVALID_HANDLE_VALUE) {
90 int file_handle = open(path, oflag, share_mode);
93 return (MapFile*)(ptrdiff_t)file_handle;
  /ndk/sources/host-tools/ndk-stack/elff/
mapfile.c 82 HANDLE file_handle = CreateFile(path, win32_desired_access, win32_share, local
84 if (file_handle == INVALID_HANDLE_VALUE) {
88 int file_handle = open(path, oflag, share_mode);
91 return (MapFile*)(ptrdiff_t)file_handle;
elf_file.cc 96 MapFile* file_handle = mapfile_open(path, O_RDONLY | O_BINARY, 0); local
97 if (!mapfile_is_valid(file_handle)) {
100 const ssize_t read_bytes = mapfile_read(file_handle, &header, sizeof(header));
101 mapfile_close(file_handle);
  /external/ltrace/etc/
syscalls.conf 140 typedef file_handle = struct(uint, fid_type, array(hex(char), elt1)*);
141 int name_to_handle_at(at_dirfd_t, string, file_handle, int*, hex(uint));
142 int open_by_handle_at(at_dirfd_t, file_handle, hex(uint));
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
server.py 151 with open(file_path, 'w') as file_handle:
152 file_handle.write(
157 file_handle.write('<li>Expectations vs Actuals</li><ul>')
159 file_handle.write(
165 file_handle.write('</ul>')
167 file_handle.write('<li>Comparing configs within actual results</li><ul>')
169 file_handle.write('<li>%s vs %s:' % config_pair)
171 file_handle.write(
177 file_handle.write('</li>')
178 file_handle.write('</ul>'
    [all...]
  /external/skia/gm/rebaseline_server/
server.py 151 with open(file_path, 'w') as file_handle:
152 file_handle.write(
157 file_handle.write('<li>Expectations vs Actuals</li><ul>')
159 file_handle.write(
165 file_handle.write('</ul>')
167 file_handle.write('<li>Comparing configs within actual results</li><ul>')
169 file_handle.write('<li>%s vs %s:' % config_pair)
171 file_handle.write(
177 file_handle.write('</li>')
178 file_handle.write('</ul>'
    [all...]
  /external/chromium_org/chrome_elf/create_file/
chrome_create_file.cc 152 HANDLE file_handle = INVALID_HANDLE_VALUE; local
253 result = create_file(&file_handle,
283 return file_handle;
  /external/chromium_org/content/common/
database_messages.h 41 IPC::PlatformFileForTransit /* file_handle */)
  /external/chromium_org/third_party/webrtc/voice_engine/
voe_audio_processing_impl.h 82 virtual int StartDebugRecording(FILE* file_handle);
  /external/chromium_org/chrome/browser/extensions/
external_registry_loader_win.cc 42 base::ScopedFILE file_handle(base::OpenFile(path, "rb"));
43 return file_handle.get() != NULL;
  /external/chromium_org/third_party/skia/bench/
gen_bench_expectations.py 218 with open(args.output_file, 'w') as file_handle:
219 file_handle.write('\n'.join(out_lines))

Completed in 566 milliseconds

12 3 4