HomeSort by relevance Sort by last modified time
    Searched defs:first_byte (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/base/
basictypes_unittest.cc 36 uint8 first_byte = *reinterpret_cast<uint8*>(&v16); local
38 EXPECT_EQ(0x34u, first_byte);
40 EXPECT_EQ(0x12u, first_byte);
  /external/chromium_org/net/websockets/
websocket_frame.cc 100 uint8 first_byte = 0u; local
101 first_byte |= header.final ? kFinalBit : 0u;
102 first_byte |= header.reserved1 ? kReserved1Bit : 0u;
103 first_byte |= header.reserved2 ? kReserved2Bit : 0u;
104 first_byte |= header.reserved3 ? kReserved3Bit : 0u;
105 first_byte |= header.opcode & kOpCodeMask;
106 buffer[buffer_index++] = first_byte;
  /external/chromium_org/sandbox/win/src/
crosscall_server.cc 175 const char* first_byte = &backing_mem[min_declared_size]; local
187 (address < first_byte) || // Start cannot point too low.
  /system/extras/ksmutils/
ksminfo.c 418 uint8_t first_byte = data[0]; local
421 if (first_byte != data[i]) return false;
  /external/chromium_org/net/server/
web_socket.cc 283 unsigned char first_byte = *p++; local
286 bool final = (first_byte & kFinalBit) != 0;
287 bool reserved1 = (first_byte & kReserved1Bit) != 0;
288 bool reserved2 = (first_byte & kReserved2Bit) != 0;
289 bool reserved3 = (first_byte & kReserved3Bit) != 0;
290 int op_code = first_byte & kOpCodeMask;
  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding.cc 1078 unsigned char first_byte; local
1139 unsigned char first_byte = local
    [all...]
  /external/chromium/net/tools/spdyshark/
packet-spdy.c 1261 guint8 first_byte = tvb_get_guint8(tvb, 0); local
    [all...]
  /external/chromium_org/net/tools/spdyshark/
packet-spdy.c 1261 guint8 first_byte = tvb_get_guint8(tvb, 0); local
    [all...]

Completed in 436 milliseconds