MCPcopy Create free account
hub / github.com/comaps/comaps / Seek

Method Seek

libs/coding/internal/file_data.cpp:132–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130}
131
132void FileData::Seek(uint64_t pos)
133{
134 ASSERT_NOT_EQUAL(m_Op, Op::APPEND, (m_FileName, m_Op, pos));
135 if (fseek64(m_File, static_cast<off_t>(pos), SEEK_SET))
136 MYTHROW(Writer::SeekException, (GetErrorProlog(), pos));
137}
138
139void FileData::Write(void const * p, size_t size)
140{

Callers 3

TestWriteFunction · 0.45
WriteTestData1Function · 0.45
WriteTestData2Function · 0.45

Calls

no outgoing calls

Tested by 3

TestWriteFunction · 0.36
WriteTestData1Function · 0.36
WriteTestData2Function · 0.36