MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / ReadString

Method ReadString

demangler/gnu3/demangle_gnu3.cpp:159–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157
158
159string DemangleGNU3::Reader::ReadString(size_t count)
160{
161 if (count > Length())
162 throw DemangleException();
163
164 const string out = m_data.substr(m_offset, count);
165 m_offset += count;
166 return out;
167}
168
169
170string DemangleGNU3::Reader::ReadUntil(char sentinal)

Callers 5

DemangleSourceNameMethod · 0.45
DemangleInitializerMethod · 0.45
DemangleSymbolMethod · 0.45

Calls 1

DemangleExceptionClass · 0.70

Tested by

no test coverage detected