Searched refs:pp_open_flags (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_security_helper.h15 // open the specified |file| with the specified |pp_open_flags|.
16 CONTENT_EXPORT bool CanOpenWithPepperFlags(int pp_open_flags,
21 // open the specified file system |url| with the specified |pp_open_flags|.
23 int pp_open_flags,
H A Dpepper_security_helper.cc22 int pp_open_flags,
28 bool pp_read = !!(pp_open_flags & PP_FILEOPENFLAG_READ);
29 bool pp_write = !!(pp_open_flags & PP_FILEOPENFLAG_WRITE);
30 bool pp_create = !!(pp_open_flags & PP_FILEOPENFLAG_CREATE);
31 bool pp_truncate = !!(pp_open_flags & PP_FILEOPENFLAG_TRUNCATE);
32 bool pp_exclusive = !!(pp_open_flags & PP_FILEOPENFLAG_EXCLUSIVE);
33 bool pp_append = !!(pp_open_flags & PP_FILEOPENFLAG_APPEND);
64 bool CanOpenWithPepperFlags(int pp_open_flags, int child_id, argument
71 pp_open_flags, child_id, file);
74 bool CanOpenFileSystemURLWithPepperFlags(int pp_open_flags, in argument
18 CanOpenFileWithPepperFlags(CanRead can_read, CanWrite can_write, CanCreate can_create, CanCreateReadWrite can_create_read_write, int pp_open_flags, int child_id, const FileID& file) argument
[all...]
H A Dpepper_flash_file_message_filter.h58 int pp_open_flags);
H A Dpepper_flash_file_message_filter.cc111 int pp_open_flags) {
114 base::Bind(&CanOpenWithPepperFlags, pp_open_flags));
122 pp_open_flags, &platform_file_flags)) {
108 OnOpenFile( ppapi::host::HostMessageContext* context, const ppapi::PepperFilePath& path, int pp_open_flags) argument
/external/chromium_org/ppapi/shared_impl/
H A Dfile_type_conversion.cc38 bool PepperFileOpenFlagsToPlatformFileFlags(int32_t pp_open_flags, argument
40 bool pp_read = !!(pp_open_flags & PP_FILEOPENFLAG_READ);
41 bool pp_write = !!(pp_open_flags & PP_FILEOPENFLAG_WRITE);
42 bool pp_create = !!(pp_open_flags & PP_FILEOPENFLAG_CREATE);
43 bool pp_truncate = !!(pp_open_flags & PP_FILEOPENFLAG_TRUNCATE);
44 bool pp_exclusive = !!(pp_open_flags & PP_FILEOPENFLAG_EXCLUSIVE);
45 bool pp_append = !!(pp_open_flags & PP_FILEOPENFLAG_APPEND);
H A Dfile_type_conversion.h23 int32_t pp_open_flags,
/external/chromium_org/components/nacl/loader/
H A Dnacl_ipc_adapter.cc103 int TranslatePepperFileReadWriteOpenFlags(int32_t pp_open_flags) { argument
104 bool read = (pp_open_flags & PP_FILEOPENFLAG_READ) != 0;
105 bool write = (pp_open_flags & PP_FILEOPENFLAG_WRITE) != 0;
106 bool append = (pp_open_flags & PP_FILEOPENFLAG_APPEND) != 0;
591 int TranslatePepperFileReadWriteOpenFlagsForTesting(int32_t pp_open_flags) { argument
592 return TranslatePepperFileReadWriteOpenFlags(pp_open_flags);
H A Dnacl_ipc_adapter.h190 int TranslatePepperFileReadWriteOpenFlagsForTesting(int32_t pp_open_flags);

Completed in 366 milliseconds