Home
last modified time | relevance | path

Searched defs:fname (Results 1 – 25 of 703) sorted by relevance

12345678910>>...29

/external/tensorflow/tensorflow/core/platform/
Dnull_file_system.h42 const string& fname, TransactionToken* token, in NewRandomAccessFile()
47 Status NewWritableFile(const string& fname, TransactionToken* token, in NewWritableFile()
52 Status NewAppendableFile(const string& fname, TransactionToken* token, in NewAppendableFile()
58 const string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
64 Status FileExists(const string& fname, TransactionToken* token) override { in FileExists()
78 Status DeleteFile(const string& fname, TransactionToken* token) override { in DeleteFile()
90 Status GetFileSize(const string& fname, TransactionToken* token, in GetFileSize()
100 Status Stat(const string& fname, TransactionToken* token, in Stat()
Dfile_system.h71 const std::string& fname, std::unique_ptr<RandomAccessFile>* result) { in NewRandomAccessFile()
76 const std::string& fname, TransactionToken* token, in NewRandomAccessFile()
96 const std::string& fname, std::unique_ptr<WritableFile>* result) { in NewWritableFile()
101 const std::string& fname, TransactionToken* token, in NewWritableFile()
118 const std::string& fname, std::unique_ptr<WritableFile>* result) { in NewAppendableFile()
123 const std::string& fname, TransactionToken* token, in NewAppendableFile()
139 const std::string& fname, std::unique_ptr<ReadOnlyMemoryRegion>* result) { in NewReadOnlyMemoryRegionFromFile()
144 const std::string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
150 virtual tensorflow::Status FileExists(const std::string& fname) { in FileExists()
154 virtual tensorflow::Status FileExists(const std::string& fname, in FileExists()
[all …]
Denv.cc112 Status Env::GetFileSystemForFile(const std::string& fname, in GetFileSystemForFile()
195 Status Env::NewRandomAccessFile(const string& fname, in NewRandomAccessFile()
203 const string& fname, std::unique_ptr<ReadOnlyMemoryRegion>* result) { in NewReadOnlyMemoryRegionFromFile()
209 Status Env::NewWritableFile(const string& fname, in NewWritableFile()
216 Status Env::NewAppendableFile(const string& fname, in NewAppendableFile()
223 Status Env::FileExists(const string& fname) { in FileExists()
288 Status Env::DeleteFile(const string& fname) { in DeleteFile()
312 Status Env::Stat(const string& fname, FileStatistics* stat) { in Stat()
318 Status Env::IsDirectory(const string& fname) { in IsDirectory()
337 Status Env::GetFileSize(const string& fname, uint64* file_size) { in GetFileSize()
[all …]
Dram_file_system.h112 auto fname = StripRamFsPrefix(fname_); in NewRandomAccessFile() local
128 auto fname = StripRamFsPrefix(fname_); in NewWritableFile() local
144 auto fname = StripRamFsPrefix(fname_); in NewAppendableFile() local
158 const std::string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
166 auto fname = StripRamFsPrefix(fname_); in FileExists() local
206 auto fname = StripRamFsPrefix(fname_); in Stat() local
229 auto fname = StripRamFsPrefix(fname_); in DeleteFile() local
290 auto fname = StripRamFsPrefix(fname_); in GetFileSize() local
Denv.h127 Status NewRandomAccessFile(const std::string& fname, TransactionToken* token, in NewRandomAccessFile()
150 Status NewWritableFile(const std::string& fname, TransactionToken* token, in NewWritableFile()
170 Status NewAppendableFile(const std::string& fname, TransactionToken* token, in NewAppendableFile()
189 const std::string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
197 Status FileExists(const std::string& fname, TransactionToken* token) { in FileExists()
243 Status DeleteFile(const std::string& fname, TransactionToken* token) { in DeleteFile()
310 Status Stat(const std::string& fname, TransactionToken* token, in Stat()
339 Status GetFileSize(const std::string& fname, TransactionToken* token, in GetFileSize()
507 Status GetFileSystemForFile(const std::string& fname, in GetFileSystemForFile()
/external/leveldb/util/
Denv.cc21 Status Env::NewAppendableFile(const std::string& fname, WritableFile** result) { in NewAppendableFile()
28 Status Env::RemoveFile(const std::string& fname) { return DeleteFile(fname); } in RemoveFile()
29 Status Env::DeleteFile(const std::string& fname) { return RemoveFile(fname); } in DeleteFile()
51 const std::string& fname, bool should_sync) { in DoWriteStringToFile()
72 const std::string& fname) { in WriteStringToFile()
77 const std::string& fname) { in WriteStringToFileSync()
81 Status ReadFileToString(Env* env, const std::string& fname, std::string* data) { in ReadFileToString()
/external/tensorflow/tensorflow/core/lib/io/
Dbuffered_inputstream_test.cc66 string fname; in TEST() local
83 string fname; in TEST() local
109 string fname; in TEST() local
134 string fname; in TEST() local
164 string fname; in TEST() local
194 string fname; in TEST() local
218 string fname; in TEST() local
241 string fname; in TEST() local
263 string fname; in TEST() local
327 string fname; in TEST() local
[all …]
Dinputbuffer_test.cc40 string fname; in TEST() local
55 string fname; in TEST() local
79 string fname; in TEST() local
102 string fname; in TEST() local
130 string fname; in TEST() local
158 string fname; in TEST() local
232 string fname; in TEST() local
268 string fname; in TEST() local
304 string fname; in TEST() local
343 string fname; in TEST() local
[all …]
Drandom_inputstream_test.cc28 string fname = testing::TmpDir() + "/random_inputbuffer_test"; in TEST() local
58 string fname = testing::TmpDir() + "/random_inputbuffer_test"; in TEST() local
90 string fname = testing::TmpDir() + "/random_inputbuffer_test"; in TEST() local
121 string fname = testing::TmpDir() + "/random_inputbuffer_seek_test"; in TEST() local
Drecord_reader_writer_test.cc47 uint64 GetFileSize(const string& fname) { in GetFileSize()
63 string fname = testing::TmpDir() + "/record_reader_writer_flush_test"; in VerifyFlush() local
122 string fname = testing::TmpDir() + "/record_reader_writer_test"; in TEST() local
163 string fname = testing::TmpDir() + "/record_reader_writer_skip_basic_test"; in TEST() local
199 string fname = in TEST() local
234 string fname = testing::TmpDir() + "/record_reader_writer_snappy_test"; in TEST() local
272 string fname = testing::TmpDir() + "/record_reader_writer_zlib_test"; in TEST() local
310 string fname = testing::TmpDir() + "/record_reader_writer_flush_close_test"; in TEST() local
/external/apache-commons-bcel/src/examples/Mini/
DASTFunAppl.java83 String fname = name.getName(); in traverse() local
90 "Applying unknown function " + fname + "."); in traverse() local
94 "Applying non-function " + fname + "."); in traverse() local
127 String fname = name.getName(); in eval() local
166 String fname = name.getName(); in code() local
205 String fname = name.getName(); in byte_code() local
/external/leveldb/helpers/memenv/
Dmemenv.cc232 Status NewSequentialFile(const std::string& fname, in NewSequentialFile()
244 Status NewRandomAccessFile(const std::string& fname, in NewRandomAccessFile()
256 Status NewWritableFile(const std::string& fname, in NewWritableFile()
276 Status NewAppendableFile(const std::string& fname, in NewAppendableFile()
289 bool FileExists(const std::string& fname) override { in FileExists()
311 void RemoveFileInternal(const std::string& fname) in RemoveFileInternal()
321 Status RemoveFile(const std::string& fname) override { in RemoveFile()
335 Status GetFileSize(const std::string& fname, uint64_t* file_size) override { in GetFileSize()
358 Status LockFile(const std::string& fname, FileLock** lock) override { in LockFile()
373 Status NewLogger(const std::string& fname, Logger** result) override { in NewLogger()
/external/tensorflow/tensorflow/tools/android/inference_interface/
Dasset_manager_filesystem.cc127 Status AssetManagerFileSystem::FileExists(const string& fname, in FileExists()
139 const string& fname, TransactionToken* token, in NewRandomAccessFile()
152 const string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
206 Status AssetManagerFileSystem::GetFileSize(const string& fname, in GetFileSize()
224 Status AssetManagerFileSystem::Stat(const string& fname, in Stat()
234 string AssetManagerFileSystem::NormalizeDirectoryPath(const string& fname) { in NormalizeDirectoryPath()
244 bool AssetManagerFileSystem::DirectoryExists(const std::string& fname) { in DirectoryExists()
260 const string& fname, TransactionToken* token, in NewWritableFile()
265 const string& fname, TransactionToken* token, in NewAppendableFile()
/external/dtc/
Dsrcpos.c47 static void set_initial_path(char *fname) in set_initial_path()
58 static char *shorten_to_initial_path(char *fname) in shorten_to_initial_path()
100 static char *try_open(const char *dirname, const char *fname, FILE **fp) in try_open()
127 static char *fopen_any_on_path(const char *fname, FILE **fp) in fopen_any_on_path()
146 FILE *srcfile_relative_open(const char *fname, char **fullnamep) in srcfile_relative_open()
172 void srcfile_push(const char *fname) in srcfile_push()
289 const char *fname = "<no-file>"; in srcpos_string() local
314 char *pos_str, *fname, *first, *rest; in srcpos_string_comment() local
/external/python/cpython2/Lib/test/
Dtest_dircache.py21 def writeTemp(self, fname): argument
25 def mkdirTemp(self, fname): argument
28 def delTemp(self, fname): argument
Dtest_mhlib.py34 def writeFile(fname, contents): argument
42 def readFile(fname): argument
79 def mkdirs(fname): argument
86 def deltree(fname): argument
/external/elfutils/tests/
Delfstrmerge.c96 fail (const char *msg, const char *fname) in fail()
107 fail_errno (const char *msg, const char *fname) in fail_errno()
118 fail_idx (const char *msg, const char *fname, size_t idx) in fail_idx()
129 fail_elf (const char *msg, const char *fname) in fail_elf()
140 fail_elf_idx (const char *msg, const char *fname, size_t idx) in fail_elf_idx()
153 const char *fname, in newsecndx()
178 new_data_buf (Elf_Data *d, const char *fname, in new_data_buf()
203 const char *fname; in main() local
/external/tensorflow/tensorflow/core/util/
Dtensor_slice_reader_test.cc75 const string fname = strings::StrCat(fname_base, "_0"); in SimpleFloatHelper() local
97 const string fname = strings::StrCat(fname_base, "_1"); in SimpleFloatHelper() local
200 const string fname = strings::StrCat(fname_base, "_0"); in SimpleIntXHelper() local
222 const string fname = strings::StrCat(fname_base, "_1"); in SimpleIntXHelper() local
359 const string fname = io::JoinPath(testing::TmpDir(), "invalid_checkpoint"); in TEST() local
387 const string fname = io::JoinPath(testing::TmpDir(), "int32_ref_checkpoint"); in TEST() local
415 const string fname = in TEST() local
440 const string fname = in TEST() local
463 const string fname = in TEST() local
503 const string fname = strings::StrCat(fname_base, "_0"); in CachedTensorSliceReaderTesterHelper() local
[all …]
/external/leveldb/db/
Ddumpfile.cc26 bool GuessType(const std::string& fname, FileType* type) { in GuessType()
54 Status PrintLogContents(Env* env, const std::string& fname, in PrintLogContents()
122 Status DumpLog(Env* env, const std::string& fname, WritableFile* dst) { in DumpLog()
143 Status DumpDescriptor(Env* env, const std::string& fname, WritableFile* dst) { in DumpDescriptor()
147 Status DumpTable(Env* env, const std::string& fname, WritableFile* dst) { in DumpTable()
214 Status DumpFile(Env* env, const std::string& fname, WritableFile* dst) { in DumpFile()
/external/tensorflow/tensorflow/tsl/platform/default/
Dposix_file_system.cc55 PosixRandomAccessFile(const string& fname, int fd) in PosixRandomAccessFile()
134 PosixWritableFile(const string& fname, FILE* f) in PosixWritableFile()
225 const string& fname, TransactionToken* token, in NewRandomAccessFile()
238 Status PosixFileSystem::NewWritableFile(const string& fname, in NewWritableFile()
253 const string& fname, TransactionToken* token, in NewAppendableFile()
267 const string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
291 Status PosixFileSystem::FileExists(const string& fname, in FileExists()
326 Status PosixFileSystem::DeleteFile(const string& fname, in DeleteFile()
354 Status PosixFileSystem::GetFileSize(const string& fname, in GetFileSize()
367 Status PosixFileSystem::Stat(const string& fname, TransactionToken* token, in Stat()
/external/elfutils/src/
Dstrings.c189 const char *fname = print_file_name ? argv[remaining] : NULL; in main() local
312 process_chunk_mb (const char *fname, const unsigned char *buf, off_t to, in process_chunk_mb()
389 process_chunk (const char *fname, const unsigned char *buf, off_t to, in process_chunk()
501 read_block_no_mmap (int fd, const char *fname, off_t from, off_t fdlen) in read_block_no_mmap()
563 read_block (int fd, const char *fname, off_t fdlen, off_t from, off_t to) in read_block()
686 read_fd (int fd, const char *fname, off_t fdlen) in read_fd()
693 read_elf (Elf *elf, int fd, const char *fname, off_t fdlen) in read_elf()
/external/harfbuzz_ng/test/subset/
Dmeson.build70 fname = '@0@.tests'.format(t) variable
88 fname = '@0@.tests'.format(t) variable
/external/tensorflow/tensorflow/tsl/platform/windows/
Dwindows_file_system.cc112 WindowsRandomAccessFile(const string& fname, HANDLE hfile) in WindowsRandomAccessFile()
188 WindowsWritableFile(const string& fname, HANDLE hFile) in WindowsWritableFile()
312 const string& fname, TransactionToken* token, in NewRandomAccessFile()
340 const string& fname, TransactionToken* token, in NewWritableFile()
361 const string& fname, TransactionToken* token, in NewAppendableFile()
392 const string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
469 Status WindowsFileSystem::FileExists(const string& fname, in FileExists()
516 Status WindowsFileSystem::DeleteFile(const string& fname, in DeleteFile()
549 Status WindowsFileSystem::GetFileSize(const string& fname, in GetFileSize()
568 Status WindowsFileSystem::IsDirectory(const string& fname, in IsDirectory()
[all …]
/external/tensorflow/tensorflow/compiler/xla/tests/
Dround_trip_packed_literal_test.cc53 std::string fname = in TEST_F() local
78 std::string fname = in TEST_F() local
111 std::string fname = in TEST_F() local
/external/OpenCL-CTS/dependencies/ocl-stubs/
Dstubs.cpp10 #define FUNC_TYPES(rettype, fname, fargs, callArgs) \ argument
13 #define FUNC_SYM(rettype, fname, fargs, callArgs) … argument

12345678910>>...29