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

  /external/chromium_org/net/quic/crypto/
crypto_server_config_protobuf.h 80 int64 primary_time() const { function in class:net::QuicServerConfigProtobuf
84 void set_primary_time(int64 primary_time) {
85 primary_time_ = primary_time;
quic_crypto_server_config_test.cc 199 // |primary_time| of that Config, given in epoch seconds. (Although note
205 // // a |primary_time| of 900, and another with a |primary_time| of 1000.
233 int primary_time = va_arg(ap, int); local
239 protobuf->set_primary_time(primary_time);
quic_crypto_server_config.cc 707 // Config's based on their primary_time.
712 return a->primary_time.IsBefore(b->primary_time);
727 if (config->primary_time.IsZero()) {
748 if (!config->primary_time.IsAfter(now)) {
752 // This is the first config with a primary_time in the future. Thus the
760 // We need the primary_time of the next config.
762 next_config_promotion_time_ = configs[1]->primary_time;
768 next_config_promotion_time_ = config->primary_time;
    [all...]
quic_crypto_server_config.h 114 // conjunction with |protobuf->primary_time()| to determine whether the
130 // depending on their |primary_time| and the value of |now|. Configs that are
294 // primary_time contains the timestamp when this config should become the
297 QuicWallTime primary_time; member in class:net::QuicCryptoServerConfig::Config
308 // ConfigPrimaryTimeLessThan returns true if a->primary_time <
309 // b->primary_time.
314 // "primary_time" deadlines contained in each.

Completed in 91 milliseconds