MCPcopy Create free account
hub / github.com/apache/trafficserver / TSIOBufferWrite

Function TSIOBufferWrite

src/api/InkIOCoreAPI.cc:488–497  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

486}
487
488int64_t
489TSIOBufferWrite(TSIOBuffer bufp, const void *buf, int64_t length)
490{
491 sdk_assert(sdk_sanity_check_iocore_structure(bufp) == TS_SUCCESS);
492 sdk_assert(sdk_sanity_check_null_ptr((void *)buf) == TS_SUCCESS);
493 sdk_assert(length >= 0);
494
495 MIOBuffer *b = (MIOBuffer *)bufp;
496 return b->write(buf, length);
497}
498
499int64_t
500TSIOBufferReaderCopy(TSIOBufferReader readerp, void *buf, int64_t length)

Callers 15

InterceptTransferDataFunction · 0.85
transform_connectFunction · 0.85
handle_scanFunction · 0.85
handle_ioFunction · 0.85
doProduceMethod · 0.85
produceMethod · 0.85
_sendMethod · 0.85
GeneratorInterceptHookFunction · 0.85

Calls 3

writeMethod · 0.45