tensorflow::EnvWrapper::SchedClosureAfter()

void tensorflow::EnvWrapper::SchedClosureAfter(int64 micros, std::function< void()> closure) override

tensorflow::EnvWrapper::SchedClosure()

void tensorflow::EnvWrapper::SchedClosure(std::function< void()> closure) override

tensorflow::EnvWrapper::RegisterFileSystem()

Status tensorflow::EnvWrapper::RegisterFileSystem(const string &scheme, FileSystemRegistry::Factory factory) override

tensorflow::EnvWrapper::NowMicros()

uint64 tensorflow::EnvWrapper::NowMicros() override Returns the number of micro-seconds since some fixed point in time. Only useful for computing deltas of time.

tensorflow::EnvWrapper::LoadLibrary()

Status tensorflow::EnvWrapper::LoadLibrary(const char *library_filename, void **handle) override

tensorflow::EnvWrapper::GetSymbolFromLibrary()

Status tensorflow::EnvWrapper::GetSymbolFromLibrary(void *handle, const char *symbol_name, void **symbol) override

tensorflow::EnvWrapper::GetRegisteredFileSystemSchemes()

Status tensorflow::EnvWrapper::GetRegisteredFileSystemSchemes(std::vector< string > *schemes) override Returns the file system schemes registered for this Env .

tensorflow::EnvWrapper::GetFileSystemForFile()

Status tensorflow::EnvWrapper::GetFileSystemForFile(const string &fname, FileSystem **result) override Returns the FileSystem object to handle operations on the file specified by 'fname'. The FileSystem object is used as the implementation for the file system related (non-virtual) functions that follow. Returned FileSystem object is still owned by the Env object and will.

tensorflow::EnvWrapper::~EnvWrapper()

tensorflow::EnvWrapper::EnvWrapper(Env *t) Initializes an EnvWrapper that delegates all calls to *t.

tensorflow::EnvWrapper

An implementation of Env that forwards all calls to another Env . May be useful to clients who wish to override just part of the functionality of another Env . Member Details tensorflow::EnvWrapper::EnvWrapper(Env *t) Initializes an EnvWrapper that delegates all calls to *t. tensorflow::EnvWrapper::~EnvWrapper() Env* tensorflow::EnvWrapper::target() const Returns the target to which this Env forwards all calls. Status tensorflow::EnvWrapper::GetFileSystemForFile(const string &fname, FileSys