Home
last modified time | relevance | path

Searched refs:PepperFilePath (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/ppapi/proxy/
Dflash_file_resource.cc57 return OpenFileHelper(path, PepperFilePath::DOMAIN_MODULE_LOCAL, mode, file); in OpenFile()
63 PepperFilePath pepper_from(PepperFilePath::DOMAIN_MODULE_LOCAL, in RenameFile()
65 PepperFilePath pepper_to(PepperFilePath::DOMAIN_MODULE_LOCAL, in RenameFile()
77 PepperFilePath pepper_path(PepperFilePath::DOMAIN_MODULE_LOCAL, in DeleteFileOrDir()
89 PepperFilePath pepper_path(PepperFilePath::DOMAIN_MODULE_LOCAL, in CreateDir()
101 return QueryFileHelper(path, PepperFilePath::DOMAIN_MODULE_LOCAL, info); in QueryFile()
108 PepperFilePath pepper_path(PepperFilePath::DOMAIN_MODULE_LOCAL, in GetDirContents()
166 PepperFilePath::DOMAIN_ABSOLUTE, mode, file); in OpenFileRef()
173 PepperFilePath::DOMAIN_ABSOLUTE, info); in QueryFileRef()
177 PepperFilePath::Domain domain_type, in OpenFileHelper()
[all …]
Dflash_file_resource.h60 PepperFilePath::Domain domain_type,
64 PepperFilePath::Domain domain_type,
Dppapi_param_traits.cc485 void ParamTraits<ppapi::PepperFilePath>::Write(Message* m, in Write()
492 bool ParamTraits<ppapi::PepperFilePath>::Read(const Message* m, in Read()
499 if (domain > ppapi::PepperFilePath::DOMAIN_MAX_VALID) in Read()
502 *p = ppapi::PepperFilePath( in Read()
503 static_cast<ppapi::PepperFilePath::Domain>(domain), path); in Read()
508 void ParamTraits<ppapi::PepperFilePath>::Log(const param_type& p, in Log()
Dppapi_param_traits.h149 struct ParamTraits<ppapi::PepperFilePath> {
150 typedef ppapi::PepperFilePath param_type;
Dppapi_messages.h2123 ppapi::PepperFilePath /* path */,
2126 ppapi::PepperFilePath /* from_path */,
2127 ppapi::PepperFilePath /* to_path */)
2129 ppapi::PepperFilePath /* path */,
2132 ppapi::PepperFilePath /* path */)
2134 ppapi::PepperFilePath /* path */)
2138 ppapi::PepperFilePath /* path */)
/external/chromium_org/content/browser/renderer_host/pepper/
Dpepper_flash_file_message_filter.h22 class PepperFilePath; variable
56 const ppapi::PepperFilePath& path,
59 const ppapi::PepperFilePath& from_path,
60 const ppapi::PepperFilePath& to_path);
62 const ppapi::PepperFilePath& path,
65 const ppapi::PepperFilePath& path);
67 const ppapi::PepperFilePath& path);
69 const ppapi::PepperFilePath& path);
73 const ppapi::PepperFilePath& pepper_path,
Dpepper_flash_file_message_filter.cc109 const ppapi::PepperFilePath& path, in OnOpenFile()
148 const ppapi::PepperFilePath& from_path, in OnRenameFile()
149 const ppapi::PepperFilePath& to_path) { in OnRenameFile()
165 const ppapi::PepperFilePath& path, in OnDeleteFileOrDir()
179 const ppapi::PepperFilePath& path) { in OnCreateDir()
193 const ppapi::PepperFilePath& path) { in OnQueryFile()
209 const ppapi::PepperFilePath& path) { in OnGetDirContents()
235 ppapi::PepperFilePath dir_path(ppapi::PepperFilePath::DOMAIN_MODULE_LOCAL, in OnCreateTemporaryFile()
269 const ppapi::PepperFilePath& pepper_path, in ValidateAndConvertPepperFilePath()
273 case ppapi::PepperFilePath::DOMAIN_ABSOLUTE: in ValidateAndConvertPepperFilePath()
[all …]
/external/chromium_org/ppapi/shared_impl/
Dfile_path.cc9 PepperFilePath::PepperFilePath() : domain_(DOMAIN_INVALID), path_() {} in PepperFilePath() function in ppapi::PepperFilePath
11 PepperFilePath::PepperFilePath(Domain domain, const base::FilePath& path) in PepperFilePath() function in ppapi::PepperFilePath
Dfile_path.h17 class PPAPI_SHARED_EXPORT PepperFilePath {
28 PepperFilePath();
29 PepperFilePath(Domain d, const base::FilePath& p);
/external/chromium_org/tools/ipc_fuzzer/mutate/
Dgenerate.cc1095 struct GenerateTraits<ppapi::PepperFilePath> {
1096 static bool Generate(ppapi::PepperFilePath *p, Generator* generator) { in Generate()
1097 unsigned domain = RandInRange(ppapi::PepperFilePath::DOMAIN_MAX_VALID+1); in Generate()
1101 *p = ppapi::PepperFilePath( in Generate()
1102 static_cast<ppapi::PepperFilePath::Domain>(domain), path); in Generate()