MCPcopy Create free account
hub / github.com/cinit/TMoe / size

Method size

app/src/main/cpp/utils/SharedBuffer.cpp:107–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105SharedBuffer::~SharedBuffer() = default;
106
107size_t SharedBuffer::size() const noexcept {
108 const SharedBufferImpl *p = pImpl.get();
109 if (p == nullptr) {
110 return 0;
111 } else {
112 return p->size();
113 }
114}
115
116void *SharedBuffer::get() const noexcept {
117 const SharedBufferImpl *p = pImpl.get();

Callers 10

parseInt32Method · 0.45
parseUInt32Method · 0.45
parseInt64Method · 0.45
parseUInt64Method · 0.45
splitStringMethod · 0.45
getRunningProcessInfoFunction · 0.45
getProcessInfoFunction · 0.45
ensureCapacityMethod · 0.45
toVectorMethod · 0.45
readProcessMethod · 0.45

Calls 1

getMethod · 0.45

Tested by

no test coverage detected