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

1 2

  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLib/
UefiShellLib.h 50 EFI_SHELL_DELETE_FILE DeleteFile;
  /external/tensorflow/tensorflow/core/platform/
file_system.h 34 #undef DeleteFile
151 virtual Status DeleteFile(const string& fname) = 0;
349 Status DeleteFile(const string& fname) override {
350 return errors::Unimplemented("DeleteFile unimplemented");
env.cc 223 Status Env::DeleteFile(const string& fname) {
226 return fs->DeleteFile(fname);
  /external/tensorflow/tensorflow/core/platform/windows/
windows_file_system.h 23 #undef DeleteFile
56 Status DeleteFile(const string& fname) override;
windows_file_system.cc 37 #undef DeleteFile
427 Status WindowsFileSystem::DeleteFile(const string& fname) {
  /external/webrtc/webrtc/base/
diskcache_win32.cc 83 bool DiskCacheWin32::DeleteFile(const std::string& filename) const {
84 return ::DeleteFile(ToUtf16(filename).c_str()) != 0;
fileutils.h 119 virtual bool DeleteFile(const Pathname &filename) = 0;
128 // call DeleteFolderAndContents and DeleteFile on every path contained in this
143 return DeleteFile(path);
299 static bool DeleteFile(const Pathname &filename) {
300 return EnsureDefaultFilesystem()->DeleteFile(filename);
fileutils_mock.h 157 bool DeleteFile(const Pathname &filename) {
unixfilesystem.cc 151 bool UnixFilesystem::DeleteFile(const Pathname &filename) {
235 if (!DeleteFile(old_path))
win32filesystem.cc 182 bool Win32Filesystem::DeleteFile(const Pathname &filename) {
188 return ::DeleteFile(ToUtf16(filename.pathname()).c_str()) != 0;
  /system/nvram/hal/
fake_nvram_storage.cpp 65 nvram::storage::Status DeleteFile(const char* name) {
130 DeleteFile(kTempFileName);
137 DeleteFile(kTempFileName);
147 DeleteFile(kTempFileName);
200 return DeleteFile(name);
  /external/tensorflow/tensorflow/core/platform/cloud/
retrying_file_system.cc 159 Status RetryingFileSystem::DeleteFile(const string& fname) {
161 std::bind(&FileSystem::DeleteFile, base_file_system_.get(), fname),
gcs_file_system.cc 47 #ifdef DeleteFile
48 #undef DeleteFile
    [all...]
  /external/tensorflow/tensorflow/core/util/
memmapped_file_system.cc 160 Status MemmappedFileSystem::DeleteFile(const string& filename) {
161 return errors::Unimplemented("memmapped format doesn't support DeleteFile");
  /external/tensorflow/tensorflow/contrib/android/
asset_manager_filesystem.cc 254 Status AssetManagerFileSystem::DeleteFile(const string& f) {
  /external/tensorflow/tensorflow/core/platform/posix/
posix_file_system.cc 228 Status PosixFileSystem::DeleteFile(const string& fname) {
  /external/tensorflow/tensorflow/core/platform/hadoop/
hadoop_file_system.cc 399 Status HadoopFileSystem::DeleteFile(const string& fname) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fileapi.h 177 #define DeleteFile __MINGW_NAME_AW(DeleteFile)
  /external/tensorflow/tensorflow/core/platform/s3/
s3_file_system.cc 500 Status S3FileSystem::DeleteFile(const string& fname) {
568 return DeleteFile(filename);
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Shell.h     [all...]
  /external/libchrome/base/files/
file_util_posix.cc 171 DeleteFile(path, false);
216 bool DeleteFile(const FilePath& path, bool recursive) {
1017 DeleteFile(from_path, true);
  /bootable/recovery/updater/
blockimg.cpp 711 static void DeleteFile(const std::string& fn) {
727 EnumerateStash(dirname, DeleteFile);
804 DeleteFile(fn);
945 DeleteFile(fn);
977 DeleteFile(GetStashFileName(base, id, ""));
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Nt32/Protocol/WinNtThunk/
WinNtThunk.h 1183 WinNtDeleteFile DeleteFile;
  /device/linaro/bootloader/edk2/Nt32Pkg/Include/Protocol/
WinNtThunk.h 1198 WinNtDeleteFile DeleteFile;
  /prebuilts/go/darwin-x86/src/syscall/
zsyscall_windows.go 475 func DeleteFile(path *uint16) (err error) {
    [all...]

Completed in 1066 milliseconds

1 2