Home
last modified time | relevance | path

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

12345678910>>...23

/external/tensorflow/tensorflow/core/platform/
Dnull_file_system.h40 const string& fname, std::unique_ptr<RandomAccessFile>* result) override { in NewRandomAccessFile()
44 Status NewWritableFile(const string& fname, in NewWritableFile()
49 Status NewAppendableFile(const string& fname, in NewAppendableFile()
55 const string& fname, in NewReadOnlyMemoryRegionFromFile()
61 Status FileExists(const string& fname) override { in FileExists()
74 Status DeleteFile(const string& fname) override { in DeleteFile()
86 Status GetFileSize(const string& fname, uint64* file_size) override { in GetFileSize()
94 Status Stat(const string& fname, FileStatistics* stat) override { in Stat()
Denv.cc95 Status Env::GetFileSystemForFile(const string& fname, FileSystem** result) { in GetFileSystemForFile()
132 Status Env::NewRandomAccessFile(const string& fname, in NewRandomAccessFile()
140 const string& fname, std::unique_ptr<ReadOnlyMemoryRegion>* result) { in NewReadOnlyMemoryRegionFromFile()
146 Status Env::NewWritableFile(const string& fname, in NewWritableFile()
153 Status Env::NewAppendableFile(const string& fname, in NewAppendableFile()
160 Status Env::FileExists(const string& fname) { in FileExists()
225 Status Env::DeleteFile(const string& fname) { in DeleteFile()
249 Status Env::Stat(const string& fname, FileStatistics* stat) { in Stat()
255 Status Env::IsDirectory(const string& fname) { in IsDirectory()
268 Status Env::GetFileSize(const string& fname, uint64* file_size) { in GetFileSize()
[all …]
/external/tensorflow/tensorflow/core/platform/s3/
Ds3_file_system_test.cc41 Status WriteString(const string& fname, const string& content) { in WriteString()
49 Status ReadAll(const string& fname, string* content) { in ReadAll()
71 const string fname = TmpDir("RandomAccessFile"); in TEST_F() local
96 const string fname = TmpDir("WritableFile"); in TEST_F() local
112 const string fname = TmpDir("AppendableFile"); in TEST_F() local
121 const string fname = TmpDir("MemoryFile"); in TEST_F() local
132 const string fname = TmpDir("FileExists"); in TEST_F() local
161 const string fname = TmpDir("DeleteFile"); in TEST_F() local
167 const string fname = TmpDir("GetFileSize"); in TEST_F() local
226 const string fname = TmpDir("StatFile"); in TEST_F() 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/tensorflow/tensorflow/core/lib/io/
Dbuffered_inputstream_test.cc35 string fname = testing::TmpDir() + "/buffered_inputstream_test"; in TEST() local
51 string fname = testing::TmpDir() + "/buffered_inputstream_test"; in TEST() local
76 string fname = testing::TmpDir() + "/buffered_inputstream_test"; in TEST() local
100 string fname = testing::TmpDir() + "/buffered_inputstream_test"; in TEST() local
129 string fname = testing::TmpDir() + "/buffered_inputstream_test"; in TEST() local
158 string fname = testing::TmpDir() + "/buffer_test"; in TEST() local
195 string fname = testing::TmpDir() + "/buffered_inputstream_test"; in TEST() local
232 string fname = testing::TmpDir() + "/buffer_test"; in TEST() local
267 string fname = testing::TmpDir() + "/buffered_inputstream_test"; in TEST() local
302 string fname = testing::TmpDir() + "/buffered_inputstream_test"; in TEST() local
[all …]
Dinputbuffer_test.cc40 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
54 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
77 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
99 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
126 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
153 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
226 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
261 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
297 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
335 string fname = testing::TmpDir() + "/inputbuffer_test"; in TEST() local
Drandom_inputstream_test.cc28 string fname = testing::TmpDir() + "/random_inputbuffer_test"; in TEST() local
57 string fname = testing::TmpDir() + "/random_inputbuffer_test"; in TEST() local
88 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_zlib_test"; in TEST() local
201 string fname = testing::TmpDir() + "/record_reader_writer_flush_close_test"; in TEST() local
/external/tensorflow/tensorflow/core/platform/hadoop/
Dhadoop_file_system_test.cc41 Status WriteString(const string& fname, const string& content) { in WriteString()
49 Status ReadAll(const string& fname, string* content) { in ReadAll()
71 const string fname = TmpDir("RandomAccessFile"); in TEST_F() local
98 const string fname = TmpDir("WritableFile"); in TEST_F() local
118 const string fname = TmpDir("FileExists"); in TEST_F() local
140 const string fname = TmpDir("DeleteFile"); in TEST_F() local
147 const string fname = TmpDir("GetFileSize"); in TEST_F() local
196 const string fname = TmpDir("StatFile"); in TEST_F() local
206 const string fname = TmpDir("WriteWhileReading"); in TEST_F() local
Dhadoop_file_system.cc141 Status HadoopFileSystem::Connect(StringPiece fname, hdfsFS* fs) { in Connect()
262 const string& fname, std::unique_ptr<RandomAccessFile>* result) { in NewRandomAccessFile()
278 HDFSWritableFile(const string& fname, LibHDFS* hdfs, hdfsFS fs, hdfsFile file) in HDFSWritableFile()
341 const string& fname, std::unique_ptr<WritableFile>* result) { in NewWritableFile()
355 const string& fname, std::unique_ptr<WritableFile>* result) { in NewAppendableFile()
369 const string& fname, std::unique_ptr<ReadOnlyMemoryRegion>* result) { in NewReadOnlyMemoryRegionFromFile()
379 Status HadoopFileSystem::FileExists(const string& fname) { in FileExists()
421 Status HadoopFileSystem::DeleteFile(const string& fname) { in DeleteFile()
474 Status HadoopFileSystem::GetFileSize(const string& fname, uint64* size) { in GetFileSize()
504 Status HadoopFileSystem::Stat(const string& fname, FileStatistics* stats) { in Stat()
/external/tensorflow/tensorflow/contrib/android/
Dasset_manager_filesystem.cc127 Status AssetManagerFileSystem::FileExists(const string& fname) { in FileExists()
138 const string& fname, std::unique_ptr<RandomAccessFile>* result) { in NewRandomAccessFile()
150 const string& fname, std::unique_ptr<ReadOnlyMemoryRegion>* result) { in NewReadOnlyMemoryRegionFromFile()
202 Status AssetManagerFileSystem::GetFileSize(const string& fname, uint64* s) { in GetFileSize()
219 Status AssetManagerFileSystem::Stat(const string& fname, FileStatistics* stat) { in Stat()
227 string AssetManagerFileSystem::NormalizeDirectoryPath(const string& fname) { in NormalizeDirectoryPath()
237 bool AssetManagerFileSystem::DirectoryExists(const std::string& fname) { in DirectoryExists()
252 const string& fname, std::unique_ptr<WritableFile>* result) { in NewWritableFile()
256 const string& fname, std::unique_ptr<WritableFile>* result) { in NewAppendableFile()
/external/tensorflow/tensorflow/core/platform/posix/
Dposix_file_system.cc51 PosixRandomAccessFile(const string& fname, int fd) in PosixRandomAccessFile()
89 PosixWritableFile(const string& fname, FILE* f) in PosixWritableFile()
164 const string& fname, std::unique_ptr<RandomAccessFile>* result) { in NewRandomAccessFile()
176 Status PosixFileSystem::NewWritableFile(const string& fname, in NewWritableFile()
190 const string& fname, std::unique_ptr<WritableFile>* result) { in NewAppendableFile()
203 const string& fname, std::unique_ptr<ReadOnlyMemoryRegion>* result) { in NewReadOnlyMemoryRegionFromFile()
224 Status PosixFileSystem::FileExists(const string& fname) { in FileExists()
255 Status PosixFileSystem::DeleteFile(const string& fname) { in DeleteFile()
282 Status PosixFileSystem::GetFileSize(const string& fname, uint64* size) { in GetFileSize()
294 Status PosixFileSystem::Stat(const string& fname, FileStatistics* stats) { in Stat()
/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/honggfuzz/
Dinput.c88 char fname[PATH_MAX]; in input_getDirStatsAndRewind() local
134 bool input_getNext(run_t* run, char* fname, bool rewind) { in input_getNext()
342 char fname[PATH_MAX]; in input_prepareStaticFile() local
373 char fname[PATH_MAX]; in input_prepareExternalFile() local
405 char fname[PATH_MAX]; in input_postProcessFile() local
/external/u-boot/tools/binman/
Delf.py22 def GetSymbols(fname, patterns): argument
62 def GetSymbolAddress(fname, sym_name): argument
Dfdt_test.py24 def TestFile(self, fname): argument
27 def GetCompiled(self, fname): argument
/external/u-boot/tools/patman/
Dcheckpatch.py39 def CheckPatch(fname, verbose=False): argument
125 def GetWarningMsg(col, msg_type, fname, line, msg): argument
/external/elfutils/src/
Dstrings.c190 const char *fname = print_file_name ? argv[remaining] : NULL; in main() local
314 process_chunk_mb (const char *fname, const unsigned char *buf, off_t to, in process_chunk_mb()
391 process_chunk (const char *fname, const unsigned char *buf, off_t to, in process_chunk()
503 read_block_no_mmap (int fd, const char *fname, off_t from, off_t fdlen) in read_block_no_mmap()
565 read_block (int fd, const char *fname, off_t fdlen, off_t from, off_t to) in read_block()
688 read_fd (int fd, const char *fname, off_t fdlen) in read_fd()
695 read_elf (Elf *elf, int fd, const char *fname, off_t fdlen) in read_elf()
/external/dtc/
Dsrcpos.c71 static char *try_open(const char *dirname, const char *fname, FILE **fp) in try_open()
98 static char *fopen_any_on_path(const char *fname, FILE **fp) in fopen_any_on_path()
117 FILE *srcfile_relative_open(const char *fname, char **fullnamep) in srcfile_relative_open()
143 void srcfile_push(const char *fname) in srcfile_push()
252 const char *fname = "<no-file>"; in srcpos_string() local
/external/u-boot/scripts/dtc/
Dsrcpos.c71 static char *try_open(const char *dirname, const char *fname, FILE **fp) in try_open()
98 static char *fopen_any_on_path(const char *fname, FILE **fp) in fopen_any_on_path()
117 FILE *srcfile_relative_open(const char *fname, char **fullnamep) in srcfile_relative_open()
143 void srcfile_push(const char *fname) in srcfile_push()
247 const char *fname = "<no-file>"; in srcpos_string() local
/external/tensorflow/tensorflow/compiler/xla/tests/
Dround_trip_packed_literal_test.cc54 string fname = tensorflow::testing::TmpDir() + "/RoundTripsR1F32Length2.data"; in TEST_F() local
79 string fname = in TEST_F() local
112 string fname = in TEST_F() local
/external/ppp/pppd/plugins/radius/
Dradattr.c70 char fname[512]; in print_attributes() local
106 char fname[512]; in cleanup() local
/external/u-boot/test/
Dut.c14 void ut_fail(struct unit_test_state *uts, const char *fname, int line, in ut_fail()
22 void ut_failf(struct unit_test_state *uts, const char *fname, int line, in ut_failf()
/external/tensorflow/tensorflow/core/platform/windows/
Dwindows_file_system.cc107 WindowsRandomAccessFile(const string& fname, HANDLE hfile) in WindowsRandomAccessFile()
149 WindowsWritableFile(const string& fname, HANDLE hFile) in WindowsWritableFile()
241 const string& fname, std::unique_ptr<RandomAccessFile>* result) { in NewRandomAccessFile()
268 const string& fname, std::unique_ptr<WritableFile>* result) { in NewWritableFile()
288 const string& fname, std::unique_ptr<WritableFile>* result) { in NewAppendableFile()
318 const string& fname, std::unique_ptr<ReadOnlyMemoryRegion>* result) { in NewReadOnlyMemoryRegionFromFile()
395 Status WindowsFileSystem::FileExists(const string& fname) { in FileExists()
440 Status WindowsFileSystem::DeleteFile(const string& fname) { in DeleteFile()
470 Status WindowsFileSystem::GetFileSize(const string& fname, uint64* size) { in GetFileSize()
520 Status WindowsFileSystem::Stat(const string& fname, FileStatistics* stat) { in Stat()

12345678910>>...23