Home
last modified time | relevance | path

Searched refs:writable_file_ops (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/c/experimental/filesystem/
Dmodular_filesystem_registration.cc61 if (ops->writable_file_ops != nullptr) in ValidateABI()
92 if (ops->writable_file_ops != nullptr) in ValidateAPI()
182 TF_RETURN_IF_ERROR(ValidateHelper(ops->writable_file_ops)); in ValidateOperations()
193 ops->writable_file_ops == nullptr) in ValidateOperations()
245 CopyToCore<TF_WritableFileOps>(info->ops[index].writable_file_ops, in RegisterFileSystem()
318 info->plugin_memory_free(info->ops[i].writable_file_ops); in RegisterFilesystemPluginImpl()
Dmodular_filesystem.h47 std::unique_ptr<const TF_WritableFileOps> writable_file_ops, in ModularFileSystem() argument
55 writable_file_ops_(std::move(writable_file_ops)), in ModularFileSystem()
Dfilesystem_interface.h1036 TF_WritableFileOps* writable_file_ops; member
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/posix/
Dposix_filesystem.cc414 ops->writable_file_ops = static_cast<TF_WritableFileOps*>( in ProvideFilesystemSupportFor()
416 ops->writable_file_ops->cleanup = tf_writable_file::Cleanup; in ProvideFilesystemSupportFor()
417 ops->writable_file_ops->append = tf_writable_file::Append; in ProvideFilesystemSupportFor()
418 ops->writable_file_ops->tell = tf_writable_file::Tell; in ProvideFilesystemSupportFor()
419 ops->writable_file_ops->flush = tf_writable_file::Flush; in ProvideFilesystemSupportFor()
420 ops->writable_file_ops->sync = tf_writable_file::Sync; in ProvideFilesystemSupportFor()
421 ops->writable_file_ops->close = tf_writable_file::Close; in ProvideFilesystemSupportFor()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/hadoop/
Dhadoop_filesystem.cc729 ops->writable_file_ops = static_cast<TF_WritableFileOps*>( in ProvideFilesystemSupportFor()
731 ops->writable_file_ops->cleanup = tf_writable_file::Cleanup; in ProvideFilesystemSupportFor()
732 ops->writable_file_ops->append = tf_writable_file::Append; in ProvideFilesystemSupportFor()
733 ops->writable_file_ops->tell = tf_writable_file::Tell; in ProvideFilesystemSupportFor()
734 ops->writable_file_ops->flush = tf_writable_file::Flush; in ProvideFilesystemSupportFor()
735 ops->writable_file_ops->sync = tf_writable_file::Sync; in ProvideFilesystemSupportFor()
736 ops->writable_file_ops->close = tf_writable_file::Close; in ProvideFilesystemSupportFor()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/s3/
Ds3_filesystem.cc1228 ops->writable_file_ops = static_cast<TF_WritableFileOps*>( in ProvideFilesystemSupportFor()
1230 ops->writable_file_ops->cleanup = tf_writable_file::Cleanup; in ProvideFilesystemSupportFor()
1231 ops->writable_file_ops->append = tf_writable_file::Append; in ProvideFilesystemSupportFor()
1232 ops->writable_file_ops->tell = tf_writable_file::Tell; in ProvideFilesystemSupportFor()
1233 ops->writable_file_ops->flush = tf_writable_file::Flush; in ProvideFilesystemSupportFor()
1234 ops->writable_file_ops->sync = tf_writable_file::Sync; in ProvideFilesystemSupportFor()
1235 ops->writable_file_ops->close = tf_writable_file::Close; in ProvideFilesystemSupportFor()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/gcs/
Dgcs_filesystem.cc1149 ops->writable_file_ops = static_cast<TF_WritableFileOps*>( in ProvideFilesystemSupportFor()
1151 ops->writable_file_ops->cleanup = tf_writable_file::Cleanup; in ProvideFilesystemSupportFor()