Home
last modified time | relevance | path

Searched defs:seconds (Results 1 – 25 of 233) sorted by relevance

12345678910

/external/protobuf/src/google/protobuf/util/
Dtime_util.cc62 Timestamp CreateNormalized(int64 seconds, int64 nanos) { in CreateNormalized()
82 Duration CreateNormalized(int64 seconds, int64 nanos) { in CreateNormalized()
116 string FormatTime(int64 seconds, int32 nanos) { in FormatTime()
120 bool ParseTime(const string& value, int64* seconds, int32* nanos) { in ParseTime()
124 void CurrentTime(int64* seconds, int32* nanos) { in CurrentTime()
150 int64 seconds; in FromString() local
160 int64 seconds; in GetCurrentTime() local
170 int64 seconds = duration.seconds(); in ToString() local
211 int64 seconds = strto64(seconds_part.c_str(), &end, 10); in FromString() local
247 Duration TimeUtil::SecondsToDuration(int64 seconds) { in SecondsToDuration()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DTimeValue.h89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_() argument
198 SecondsType seconds() const { return seconds_; } in seconds() function
266 void getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const { in getTimespecTime()
284 void seconds (SecondsType sec ) { in seconds() function
333 void fromEpochTime( SecondsType seconds ) { in fromEpochTime()
/external/autotest/client/cros/
Dsys_power.py97 def prepare_wakeup(seconds): argument
167 def kernel_suspend(seconds, state='mem'): argument
200 def idle_suspend(seconds): argument
224 def memory_suspend(seconds, size=0): argument
/external/llvm/include/llvm/Support/
DTimeValue.h101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_() argument
207 SecondsType seconds() const { return seconds_; } in seconds() function
267 void getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const { in getTimespecTime()
285 void seconds (SecondsType sec ) { in seconds() function
334 void fromEpochTime( SecondsType seconds ) { in fromEpochTime()
/external/webrtc/webrtc/system_wrappers/include/
Dntp_time.h24 NtpTime(uint32_t seconds, uint32_t fractions) in NtpTime()
33 void Set(uint32_t seconds, uint32_t fractions) { in Set()
47 uint32_t seconds() const { return seconds_; } in seconds() function
/external/protobuf/src/google/protobuf/stubs/
Dtime.cc211 bool SecondsToDateTime(int64 seconds, DateTime* time) { in SecondsToDateTime()
256 bool DateTimeToSeconds(const DateTime& time, int64* seconds) { in DateTimeToSeconds()
264 void GetCurrentTime(int64* seconds, int32* nanos) { in GetCurrentTime()
271 string FormatTime(int64 seconds, int32 nanos) { in FormatTime()
285 bool ParseTime(const string& value, int64* seconds, int32* nanos) { in ParseTime()
Dtime_test.cc68 int64 seconds; in TEST() local
180 int64 seconds; in TEST() local
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DDurationPartial.cs65 internal static bool IsNormalized(long seconds, int nanoseconds) in IsNormalized()
164 internal static Duration Normalize(long seconds, int nanoseconds) in Normalize()
197 internal static string ToJson(long seconds, int nanoseconds, bool diagnosticOnly) in ToJson()
DTimestampPartial.cs48 private static bool IsNormalized(long seconds, int nanoseconds) => in IsNormalized()
173 internal static Timestamp Normalize(long seconds, int nanoseconds) in Normalize()
199 internal static string ToJson(long seconds, int nanoseconds, bool diagnosticOnly) in ToJson()
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DTimeUtil.java155 long seconds = date.getTime() / MILLIS_PER_SECOND; in parseTimestamp() local
199 long seconds = duration.getSeconds(); in toString() local
243 long seconds = Long.parseLong(secondValue); in parseDuration() local
427 long seconds = (long) result; in multiply() local
469 long seconds = value.divide( in createDurationFromBigInteger() local
477 private static Duration normalizedDuration(long seconds, int nanos) { in normalizedDuration()
496 private static Timestamp normalizedTimestamp(long seconds, int nanos) { in normalizedTimestamp()
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
DDurationTest.cs106 public void ToTimeSpan_Invalid(long seconds, int nanoseconds) in ToTimeSpan_Invalid()
117 public void ToTimeSpan_Valid(long seconds, int nanoseconds) in ToTimeSpan_Valid()
DTimestampTest.cs69 public void ToDateTime_OutOfRange(long seconds, int nanoseconds) in ToDateTime_OutOfRange()
81 public void ToDateTime_ValidBoundaries(long seconds, int nanoseconds) in ToDateTime_ValidBoundaries()
/external/autotest/client/site_tests/power_Resume/
Dpower_Resume.py27 def run_once(self, max_devs_returned=10, seconds=0, argument
37 def _suspend_once(self, max_devs_returned, seconds, ignore_kernel_warns): argument
/external/vogar/src/vogar/util/
DTimeUtilities.java30 long seconds = duration % 60; in msToIsoString() local
81 long seconds = duration % 60; in nsToString() local
/external/autotest/server/site_tests/hardware_MemoryIntegrity/
Dhardware_MemoryIntegrity.py54 def _wait(self, seconds, suspend): argument
90 def run_once(self, client_ip=None, seconds=3600, size=0, suspend=True): argument
/external/protobuf/csharp/src/Google.Protobuf.Test/
DJsonFormatterTest.cs352 public void TimestampStandalone_NonNormalized(long seconds, int nanoseconds) in TimestampStandalone_NonNormalized()
389 public void DurationStandalone(long seconds, int nanoseconds, string expected) in DurationStandalone()
398 public void DurationStandalone_NonNormalized(long seconds, int nanoseconds) in DurationStandalone_NonNormalized()
/external/libchrome/base/time/
Dtime_posix.cc115 time_t seconds = 0; in ToTimeSpec() local
181 SysTime seconds; // Seconds since epoch. in Explode() local
231 SysTime seconds; in FromExploded() local
Dtime_mac.cc186 CFAbsoluteTime seconds = absolute_time + kCFAbsoluteTimeIntervalSince1970; in FromExploded() local
217 CFAbsoluteTime seconds = ((us_ - microsecond) / kMicrosecondsPerSecond) - in Explode() local
/external/junit/src/main/java/org/junit/rules/
DTimeout.java111 public static Timeout seconds(long seconds) { in seconds() method in Timeout
/external/webrtc/webrtc/system_wrappers/source/
Dclock.cc50 void CurrentNtp(uint32_t& seconds, uint32_t& fractions) const override { in CurrentNtp()
61 uint32_t seconds; in CurrentNtpInMilliseconds() local
251 void SimulatedClock::CurrentNtp(uint32_t& seconds, uint32_t& fractions) const { in CurrentNtp()
/external/kernel-headers/original/uapi/linux/netfilter/
Dxt_recent.h28 __u32 seconds; member
37 __u32 seconds; member
/external/iptables/include/linux/netfilter/
Dxt_recent.h27 __u32 seconds; member
36 __u32 seconds; member
/external/fio/
Dmutex.c95 static int mutex_timed_out(struct timeval *t, unsigned int seconds) in mutex_timed_out()
100 int fio_mutex_down_timeout(struct fio_mutex *mutex, unsigned int seconds) in fio_mutex_down_timeout()
/external/ltp/testcases/kernel/syscalls/sendmsg/
Dsendmsg02.c122 static void reproduce(int seconds) in reproduce()
199 long seconds; in main() local
/external/protobuf/src/google/protobuf/
Dtimestamp.proto104 int64 seconds = 1; field

12345678910