Home
last modified time | relevance | path

Searched refs:InitialByteForEnvelope (Results 1 – 10 of 10) sorted by relevance

/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
Dcbor.h50 uint8_t InitialByteForEnvelope();
Dcbor.cc193 uint8_t InitialByteForEnvelope() { in InitialByteForEnvelope() function
202 return msg.size() >= 6 && msg[0] == InitialByteForEnvelope() && in IsCBORMessage()
209 if (msg[0] != InitialByteForEnvelope()) in CheckCBORMessage()
Dcbor_test.cc874 std::vector<uint8_t> bytes = {cbor::InitialByteForEnvelope(), in TEST()
/third_party/node/tools/inspector_protocol/encoding/
Dencoding.h191 uint8_t InitialByteForEnvelope();
Dencoding.cc280 uint8_t InitialByteForEnvelope() { in InitialByteForEnvelope() function
287 return msg.size() >= 6 && msg[0] == InitialByteForEnvelope() && in IsCBORMessage()
Dencoding_test.cc862 std::vector<uint8_t> bytes = {cbor::InitialByteForEnvelope(), in TEST()
/third_party/node/tools/inspector_protocol/lib/
DValues_cpp.template91 using {{"::".join(config.encoding_lib.namespace + ['cbor'])}}::InitialByteForEnvelope;
238 if (bytes[0] != cbor::InitialByteForEnvelope()) return nullptr;
Dencoding_h.template200 uint8_t InitialByteForEnvelope();
Dencoding_cpp.template288 uint8_t InitialByteForEnvelope() {
295 return msg.size() >= 6 && msg[0] == InitialByteForEnvelope() &&
/third_party/node/deps/v8/third_party/inspector_protocol/lib/
DValues_cpp.template34 using {{config.crdtp.namespace}}::cbor::InitialByteForEnvelope;