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

  /system/connectivity/shill/
connection_info.h 30 int64_t time_to_expire_seconds,
48 int64_t time_to_expire_seconds() const { return time_to_expire_seconds_; } function in class:shill::ConnectionInfo
49 void set_time_to_expire_seconds(int64_t time_to_expire_seconds) {
50 time_to_expire_seconds_ = time_to_expire_seconds;
connection_info.cc 38 int64_t time_to_expire_seconds,
49 time_to_expire_seconds_(time_to_expire_seconds),
connection_info_unittest.cc 43 EXPECT_EQ(info1.time_to_expire_seconds(), info2.time_to_expire_seconds());
connection_info_reader.cc 100 int64_t time_to_expire_seconds = 0; local
101 if (!ParseTimeToExpireSeconds(tokens[++index], &time_to_expire_seconds)) {
104 info->set_time_to_expire_seconds(time_to_expire_seconds);
168 const string& input, int64_t* time_to_expire_seconds) {
169 if (!base::StringToInt64(input, time_to_expire_seconds) ||
170 *time_to_expire_seconds < 0) {
connection_info_reader.h 57 int64_t* time_to_expire_seconds);
traffic_monitor.cc 192 info.time_to_expire_seconds() > kDnsTimedOutThresholdSeconds ||
193 info.time_to_expire_seconds() <= kDnsTimedOutLowerThresholdSeconds ||
connection_info_reader_unittest.cc 85 EXPECT_EQ(info1.time_to_expire_seconds(), info2.time_to_expire_seconds());

Completed in 134 milliseconds