HomeSort by relevance Sort by last modified time
    Searched defs:DeleteFile (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/base/files/
file_util_proxy.cc 54 if (!base::DeleteFile(file_path, recursive)) {
80 bool FileUtilProxy::DeleteFile(TaskRunner* task_runner,
  /external/chromium_org/third_party/libjingle/source/talk/base/
diskcache_win32.cc 99 bool DiskCacheWin32::DeleteFile(const std::string& filename) const {
100 return ::DeleteFile(ToUtf16(filename).c_str()) != 0;
fileutils.h 139 virtual bool DeleteFile(const Pathname &filename) = 0;
148 // call DeleteFolderAndContents and DeleteFile on every path contained in this
165 return DeleteFile(path);
321 static bool DeleteFile(const Pathname &filename) {
322 return EnsureDefaultFilesystem()->DeleteFile(filename);
fileutils_mock.h 174 bool DeleteFile(const Pathname &filename) {
unixfilesystem.cc 167 bool UnixFilesystem::DeleteFile(const Pathname &filename) {
251 if (!DeleteFile(old_path))
win32filesystem.cc 198 bool Win32Filesystem::DeleteFile(const Pathname &filename) {
204 return ::DeleteFile(ToUtf16(filename.pathname()).c_str()) != 0;
  /external/chromium_org/third_party/webrtc/base/
diskcache_win32.cc 82 bool DiskCacheWin32::DeleteFile(const std::string& filename) const {
83 return ::DeleteFile(ToUtf16(filename).c_str()) != 0;
fileutils.h 122 virtual bool DeleteFile(const Pathname &filename) = 0;
131 // call DeleteFolderAndContents and DeleteFile on every path contained in this
148 return DeleteFile(path);
304 static bool DeleteFile(const Pathname &filename) {
305 return EnsureDefaultFilesystem()->DeleteFile(filename);
fileutils_mock.h 157 bool DeleteFile(const Pathname &filename) {
unixfilesystem.cc 150 bool UnixFilesystem::DeleteFile(const Pathname &filename) {
234 if (!DeleteFile(old_path))
win32filesystem.cc 181 bool Win32Filesystem::DeleteFile(const Pathname &filename) {
187 return ::DeleteFile(ToUtf16(filename.pathname()).c_str()) != 0;
  /external/chromium_org/chrome/browser/local_discovery/storage/
privet_filesystem_async_util.cc 139 void PrivetFileSystemAsyncUtil::DeleteFile(
  /external/chromium_org/chrome/browser/sync_file_system/
file_change_unittest.cc 19 FileChange DeleteFile() {
62 const FileChange kInput2[] = { AddOrUpdateFile(), DeleteFile() };
63 const FileChange kExpected2[] = { DeleteFile() };
73 const FileChange kInput4[] = { DeleteFile(), AddOrUpdateFile() };
94 DeleteFile(),
97 const FileChange kExpected1[] = { DeleteFile(), AddDirectory() };
103 DeleteFile(),
127 DeleteFile(),
129 DeleteFile(),
131 const FileChange kExpected4[] = { DeleteFile() };
    [all...]
  /external/chromium_org/webkit/browser/database/
vfs_backend.cc 115 int VfsBackend::DeleteFile(const base::FilePath& file_path, bool sync_dir) {
118 if (!base::DeleteFile(file_path, false))
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
provider_async_file_util.cc 193 void ProviderAsyncFileUtil::DeleteFile(
  /external/chromium_org/chrome/browser/chromeos/drive/fileapi/
async_file_util.cc 362 void AsyncFileUtil::DeleteFile(
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
fake_api_util.cc 193 void FakeAPIUtil::DeleteFile(const std::string& resource_id,
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/
testfilehandler.py 64 class DeleteFile(webapp2.RequestHandler):
  /external/chromium_org/third_party/leveldatabase/src/db/
version_edit.h 75 void DeleteFile(int level, uint64_t file) {
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
env.h 82 virtual Status DeleteFile(const std::string& fname) = 0;
296 Status DeleteFile(const std::string& f) { return target_->DeleteFile(f); }
  /external/chromium_org/webkit/browser/fileapi/
local_file_util.cc 227 base::File::Error LocalFileUtil::DeleteFile(
234 return NativeFileUtil::DeleteFile(file_path);
native_file_util.cc 293 base::File::Error NativeFileUtil::DeleteFile(const base::FilePath& path) {
298 if (!base::DeleteFile(path, false))
310 if (!base::DeleteFile(path, false))
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
device_media_async_file_util.cc 396 void DeviceMediaAsyncFileUtil::DeleteFile(
native_media_file_util.cc 263 void NativeMediaFileUtil::DeleteFile(
601 return fileapi::NativeFileUtil::DeleteFile(file_path);
  /external/chromium_org/extensions/common/
file_util.cc 119 base::DeleteFile(extensions_dir.AppendASCII(id), true); // recursive.
327 void DeleteFile(const base::FilePath& path, bool recursive) {
328 base::DeleteFile(path, recursive);

Completed in 1153 milliseconds

1 2