Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/frontend/gcastv2/https/
DWebSocketHandler.cpp37 const uint8_t headerByte = packet[packetOffset]; in handleRequest() local
80 bool is_control_frame = (headerByte & 0x08) != 0; in handleRequest()
82 uint8_t opcode = headerByte & 0x0f; in handleRequest()
89 err = handleMessage(headerByte, &packet[packetOffset], payloadLen); in handleRequest()
117 uint8_t headerByte, const uint8_t *msg, size_t len) { in handleMessage() argument
121 << (unsigned)headerByte in handleMessage()
128 const uint8_t opcode = headerByte & 0x0f; in handleMessage()
/device/google/cuttlefish/host/frontend/gcastv2/https/include/https/
DWebSocketHandler.h54 uint8_t headerByte, const uint8_t *msg, size_t len) = 0;