Home
last modified time | relevance | path

Searched refs:io_buf_alloc_cb (Results 1 – 2 of 2) sorted by relevance

/dports/devel/folly/folly-2021.12.27.00/folly/io/
H A DIOBuf.cpp202 if (io_buf_alloc_cb) { in operator new()
203 io_buf_alloc_cb(storage, fullSize); in operator new()
355 if (io_buf_alloc_cb) { in createCombined()
356 io_buf_alloc_cb(storage, mallocSize); in createCombined()
460 if (io_buf_alloc_cb && capacity) { in IOBuf()
461 io_buf_alloc_cb(buf, capacity); in IOBuf()
511 if (io_buf_alloc_cb) { in takeOwnership()
517 io_buf_alloc_cb(buf, capacity); in takeOwnership()
1103 if (io_buf_alloc_cb) { in reserveSlow()
1206 if (io_buf_alloc_cb) { in allocExtBuffer()
[all …]
/dports/devel/folly/folly-2021.12.27.00/folly/io/test/
H A DIOBufCBTest.cpp23 void io_buf_alloc_cb(void* /*ptr*/, size_t size) noexcept { in io_buf_alloc_cb() function