HomeSort by relevance Sort by last modified time
    Searched refs:kOrbitSize (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/net/quic/crypto/
crypto_protocol.h 117 const size_t kOrbitSize = 8; // Number of bytes in an orbit value.
crypto_server_config.h 61 // orbit contains the kOrbitSize bytes of the orbit value for the server
213 unsigned char orbit[kOrbitSize];
crypto_server_config.cc 139 char orbit_bytes[kOrbitSize];
790 if (orbit.size() != kOrbitSize) {
792 " Got " << orbit.size() << " want " << kOrbitSize;
795 COMPILE_ASSERT(sizeof(config->orbit) == kOrbitSize, orbit_incorrect_size);
802 if (0 != memcmp(orbit, config->orbit, kOrbitSize)) {
    [all...]
crypto_server_test.cc 126 uint8 orbit_[kOrbitSize];
crypto_handshake.cc 673 if (!scfg->GetStringPiece(kORBT, &orbit) || orbit.size() != kOrbitSize) {

Completed in 610 milliseconds