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

1 2

  /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 138 virtual bool DeleteFile(const Pathname &filename) = 0;
147 // call DeleteFolderAndContents and DeleteFile on every path contained in this
164 return DeleteFile(path);
320 static bool DeleteFile(const Pathname &filename) {
321 return EnsureDefaultFilesystem()->DeleteFile(filename);
fileutils_mock.h 174 bool DeleteFile(const Pathname &filename) {
unixfilesystem.cc 143 bool UnixFilesystem::DeleteFile(const Pathname &filename) {
227 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/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 122 int VfsBackend::DeleteFile(const base::FilePath& file_path, bool sync_dir) {
125 if (!base::DeleteFile(file_path, false))
  /external/chromium_org/chrome/browser/chromeos/drive/
async_file_util.cc 342 void AsyncFileUtil::DeleteFile(
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
device_media_async_file_util.cc 195 void DeviceMediaAsyncFileUtil::DeleteFile(
native_media_file_util.cc 251 void NativeMediaFileUtil::DeleteFile(
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
fake_api_util.cc 196 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/
async_file_util_adapter.cc 297 void AsyncFileUtilAdapter::DeleteFile(
304 Bind(&FileSystemFileUtil::DeleteFile,
local_file_util.cc 223 PlatformFileError LocalFileUtil::DeleteFile(
230 return NativeFileUtil::DeleteFile(file_path);
native_file_util.cc 240 PlatformFileError NativeFileUtil::DeleteFile(const base::FilePath& path) {
245 if (!base::DeleteFile(path, false))
257 if (!base::DeleteFile(path, false))
  /external/chromium/chrome/common/extensions/
extension_file_util.cc 618 void DeleteFile(const FilePath& path, bool recursive) {
  /external/chromium/third_party/libjingle/source/talk/base/
fileutils.h 136 virtual bool DeleteFile(const Pathname &filename) = 0;
145 // call DeleteFolderAndContents and DeleteFile on every path contained in this
162 return DeleteFile(path);
318 static bool DeleteFile(const Pathname &filename) {
319 return EnsureDefaultFilesystem()->DeleteFile(filename);
unixfilesystem.cc 150 bool UnixFilesystem::DeleteFile(const Pathname &filename) {
233 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/base/files/
file_util_proxy.cc 215 if (!base::DeleteFile(file_path, recursive)) {
290 bool FileUtilProxy::DeleteFile(TaskRunner* task_runner,
  /external/chromium_org/chrome/common/extensions/
extension_file_util.cc 127 base::DeleteFile(extensions_dir.AppendASCII(id), true); // recursive.
347 base::DeleteFile(extension_path, true); // Recursive
364 base::DeleteFile(extension_path, true); // Recursive.
377 base::DeleteFile(extension_path, true); // Recursive.
398 base::DeleteFile(version_dir, true); // Recursive.
571 void DeleteFile(const base::FilePath& path, bool recursive) {
572 base::DeleteFile(path, recursive);
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv.cc 310 virtual Status DeleteFile(const std::string& fname) {
  /external/chromium_org/base/
file_util_win.cc 85 bool DeleteFile(const FilePath& path, bool recursive) {
98 // Otherwise, it's a file, wildcard or non-existant. Try DeleteFile first
99 // because it should be faster. If DeleteFile fails, then we fall through
101 if (::DeleteFile(path.value().c_str()) != 0)
747 if (DeleteFile(from_path, true))

Completed in 410 milliseconds

1 2