Home
last modified time | relevance | path

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

/external/grpc-grpc/src/core/tsi/alts/zero_copy_frame_protector/
Dalts_zero_copy_grpc_protector.cc72 uint8_t frame_size_buffer[kZeroCopyFrameLengthFieldSize]; in read_frame_size() local
73 uint8_t* buf = frame_size_buffer; in read_frame_size()
90 uint32_t frame_size = (((uint32_t)frame_size_buffer[3]) << 24) | in read_frame_size()
91 (((uint32_t)frame_size_buffer[2]) << 16) | in read_frame_size()
92 (((uint32_t)frame_size_buffer[1]) << 8) | in read_frame_size()
93 ((uint32_t)frame_size_buffer[0]); in read_frame_size()
/external/grpc-grpc/src/core/tsi/
Dfake_transport_security.cc129 uint8_t frame_size_buffer[TSI_FAKE_FRAME_HEADER_SIZE]; in read_frame_size() local
130 uint8_t* buf = frame_size_buffer; in read_frame_size()
146 return load32_little_endian(frame_size_buffer); in read_frame_size()