MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / open

Method open

src/core/utils/io/FileHandler.cpp:41–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39}
40
41void FileHandler::open(const std::string &filename, std::ios_base::openmode mode)
42{
43 close();
44 _filestream.open(filename, mode);
45 ARM_COMPUTE_ERROR_ON(!_filestream.good());
46 _filename = filename;
47 _mode = mode;
48}
49
50void FileHandler::close()
51{

Callers 6

read_fileFunction · 0.45
FilePrinterMethod · 0.45
get_max_cpusFunction · 0.45
load_from_fileMethod · 0.45
save_to_fileMethod · 0.45
reload_from_fileMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected