Home
last modified time | relevance | path

Searched refs:ReadAllAsync (Results 1 – 5 of 5) sorted by relevance

/thrift-3.4.0/lib/netstd/Thrift/Protocol/
DTBinaryProtocol.cs363 await Trans.ReadAllAsync(PreAllocatedBuffer, 0, 1, cancellationToken); in ReadByteAsync()
371 await Trans.ReadAllAsync(PreAllocatedBuffer, 0, 2, cancellationToken); in ReadI16Async()
380 await Trans.ReadAllAsync(PreAllocatedBuffer, 0, 4, cancellationToken); in ReadI32Async()
391 await Trans.ReadAllAsync(PreAllocatedBuffer, 0, 8, cancellationToken); in ReadI64Async()
410 await Trans.ReadAllAsync(buf, 0, size, cancellationToken); in ReadBinaryAsync()
420 await Trans.ReadAllAsync(buf, 0, 16, cancellationToken); in ReadUuidAsync()
438 await Trans.ReadAllAsync(PreAllocatedBuffer, 0, size, cancellationToken); in ReadStringBodyAsync()
444 await Trans.ReadAllAsync(buf, 0, size, cancellationToken); in ReadStringBodyAsync()
DTCompactProtocol.cs600 await Trans.ReadAllAsync(PreAllocatedBuffer, 0, 1, cancellationToken); in ReadByteAsync()
629 await Trans.ReadAllAsync(PreAllocatedBuffer, 0, 8, cancellationToken); in ReadDoubleAsync()
646 await Trans.ReadAllAsync(PreAllocatedBuffer, 0, length, cancellationToken); in ReadStringAsync()
655 await Trans.ReadAllAsync(buf, 0, length, cancellationToken); in ReadStringAsync()
676 await Trans.ReadAllAsync(buf, 0, length, cancellationToken); in ReadBinaryAsync()
686 await Trans.ReadAllAsync(buf, 0, 16, cancellationToken); in ReadUuidAsync()
DTJSONProtocol.cs467 await Trans.ReadAllAsync(_tempBuffer, 0, 4, cancellationToken); in ReadJsonStringAsync()
1017 await Proto.Trans.ReadAllAsync(_data, 0, 1, cancellationToken); in ReadAsync()
1033 await Proto.Trans.ReadAllAsync(_data, 0, 1, cancellationToken); in PeekAsync()
/thrift-3.4.0/lib/netstd/Thrift/Transport/Layered/
DTFramedTransport.cs90 await InnerTransport.ReadAllAsync(HeaderBuf, 0, HeaderSize, cancellationToken); in ReadFrameAsync()
101 await InnerTransport.ReadAllAsync(bufSegment.Array, 0, size, cancellationToken); in ReadFrameAsync()
/thrift-3.4.0/lib/netstd/Thrift/Transport/
DTTransport.cs110 …public virtual async ValueTask<int> ReadAllAsync(byte[] buffer, int offset, int length, Cancellati… in ReadAllAsync() method in Thrift.Transport.TTransport