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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/remoting/host/setup/
test_util.h 15 bool MakePipe(base::PlatformFile* read_handle,
16 base::PlatformFile* write_handle);
test_util.cc 15 bool MakePipe(base::PlatformFile* read_handle,
16 base::PlatformFile* write_handle) {
  /external/chromium_org/base/files/
scoped_platform_file_closer.h 16 void operator()(PlatformFile* file) const;
21 typedef scoped_ptr<PlatformFile, internal::PlatformFileCloser>
scoped_platform_file_closer.cc 10 void PlatformFileCloser::operator()(PlatformFile* file) const {
file_util_proxy.h 45 typedef Callback<PlatformFileError(PlatformFile*, bool*)> CreateOrOpenTask;
46 typedef Callback<PlatformFileError(PlatformFile)> CloseTask;
78 PlatformFile,
89 // Does the same as GetFileInfo but takes PlatformFile instead of FilePath.
93 PlatformFile file,
111 PlatformFile file,
125 PlatformFile file,
135 PlatformFile file,
155 PlatformFile file,
173 PlatformFile file
    [all...]
memory_mapped_file.h 35 bool Initialize(PlatformFile file);
67 PlatformFile file_;
  /external/chromium_org/base/
platform_file.h 118 typedef HANDLE PlatformFile;
119 const PlatformFile kInvalidPlatformFileValue = INVALID_HANDLE_VALUE;
122 typedef int PlatformFile;
123 const PlatformFile kInvalidPlatformFileValue = -1;
134 BASE_EXPORT PlatformFile CreatePlatformFile(const FilePath& name,
141 BASE_EXPORT PlatformFile CreatePlatformFileUnsafe(const FilePath& name,
146 BASE_EXPORT FILE* FdopenPlatformFile(PlatformFile file, const char* mode);
149 BASE_EXPORT bool ClosePlatformFile(PlatformFile file);
154 BASE_EXPORT int64 SeekPlatformFile(PlatformFile file,
163 BASE_EXPORT int ReadPlatformFile(PlatformFile file, int64 offset
    [all...]
platform_file.cc 18 PlatformFile CreatePlatformFile(const FilePath& name,
  /external/chromium_org/ppapi/shared_impl/
platform_file.h 14 PPAPI_SHARED_EXPORT base::PlatformFile IntToPlatformFile(int32_t handle);
15 PPAPI_SHARED_EXPORT int32_t PlatformFileToInt(base::PlatformFile handle);
platform_file.cc 11 base::PlatformFile IntToPlatformFile(int32_t handle) {
21 int32_t PlatformFileToInt(base::PlatformFile handle) {
  /external/chromium/base/
platform_file.h 24 typedef HANDLE PlatformFile;
25 const PlatformFile kInvalidPlatformFileValue = INVALID_HANDLE_VALUE;
27 typedef int PlatformFile;
28 const PlatformFile kInvalidPlatformFileValue = -1;
102 BASE_API PlatformFile CreatePlatformFile(const FilePath& name,
108 BASE_API bool ClosePlatformFile(PlatformFile file);
112 BASE_API int ReadPlatformFile(PlatformFile file, int64 offset,
118 BASE_API int WritePlatformFile(PlatformFile file, int64 offset,
124 BASE_API bool TruncatePlatformFile(PlatformFile file, int64 length);
127 BASE_API bool FlushPlatformFile(PlatformFile file)
    [all...]
  /external/chromium_org/content/common/
sandbox_util.h 20 base::PlatformFile handle,
  /external/chromium_org/media/base/
media_file_checker.h 24 explicit MediaFileChecker(const base::PlatformFile& file);
33 base::PlatformFile file_;
  /external/chromium_org/chrome/common/media_galleries/
picasa_types.h 45 base::PlatformFile indicator_file;
47 base::PlatformFile category_file;
48 base::PlatformFile date_file;
49 base::PlatformFile filename_file;
50 base::PlatformFile name_file;
51 base::PlatformFile token_file;
52 base::PlatformFile uid_file;
  /external/chromium_org/ipc/
ipc_platform_file.h 20 typedef base::PlatformFile PlatformFileForTransit;
33 inline base::PlatformFile PlatformFileForTransitToPlatformFile(
44 base::PlatformFile file,
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_process_launcher.h 37 base::PlatformFile read_file,
38 base::PlatformFile write_file)> LaunchedCallback;
67 base::PlatformFile* read_file,
68 base::PlatformFile* write_file);
  /external/chromium_org/chrome/common/safe_browsing/
zip_analyzer.h 24 void AnalyzeZipFile(base::PlatformFile zip_file, Results* results);
  /external/chromium/webkit/glue/
webfileutilities_impl.h 34 virtual base::PlatformFile openFile(const WebKit::WebString& path, int mode);
35 virtual void closeFile(base::PlatformFile& handle);
36 virtual long long seekFile(base::PlatformFile handle,
39 virtual bool truncateFile(base::PlatformFile handle, long long offset);
40 virtual int readFromFile(base::PlatformFile handle, char* data, int length);
41 virtual int writeToFile(base::PlatformFile handle,
  /external/chromium_org/webkit/glue/
webfileutilities_impl.h 28 virtual base::PlatformFile openFile(const WebKit::WebString& path, int mode);
29 virtual void closeFile(base::PlatformFile& handle);
30 virtual int readFromFile(base::PlatformFile handle, char* data, int length);
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
safe_audio_video_checker.h 29 const base::PlatformFile& file,
59 base::PlatformFile file_;
  /external/chromium_org/chrome/renderer/spellchecker/
hunspell_engine.h 28 virtual void Init(base::PlatformFile file) OVERRIDE;
47 base::PlatformFile file_;
cocoa_spelling_engine_mac.h 13 virtual void Init(base::PlatformFile bdict_file) OVERRIDE;
spelling_engine.h 24 virtual void Init(base::PlatformFile bdict_file) = 0;
  /external/chromium_org/webkit/browser/database/
vfs_backend.h 23 base::PlatformFile* file_handle);
27 base::PlatformFile* file_handle);
  /external/chromium/net/disk_cache/
file.h 39 explicit File(base::PlatformFile file);
46 base::PlatformFile platform_file() const;
81 base::PlatformFile platform_file_; // Regular, asynchronous IO handle.
82 base::PlatformFile sync_platform_file_; // Synchronous IO handle.

Completed in 1215 milliseconds

1 2 3 4 5 6 7 8 910