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

  /external/libchrome/base/timer/
elapsed_timer.cc 13 TimeDelta ElapsedTimer::Elapsed() const {
  /external/libmojo/mojo/edk/system/
test_utils.cc 67 MojoDeadline Stopwatch::Elapsed() {
  /external/v8/src/base/platform/
elapsed-timer.h 21 // |Elapsed()| or |HasExpired()|, and may be restarted using |Restart()|.
50 // Restarts the timer and returns the time elapsed since the previous start.
51 // This method is equivalent to obtaining the elapsed time with |Elapsed()|
58 TimeDelta elapsed = ticks - start_ticks_; local
59 DCHECK(elapsed.InMicroseconds() >= 0);
62 return elapsed;
65 // Returns the time elapsed since the previous start. This method may only
67 TimeDelta Elapsed() const {
69 TimeDelta elapsed = Now() - start_ticks_ local
    [all...]
  /external/webrtc/webrtc/p2p/base/
stunrequest.cc 184 uint32_t StunRequest::Elapsed() const {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/
Serial.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciSioSerialDxe/
SerialIo.c 1036 UINTN Elapsed;
1043 Elapsed = 0;
1100 // stall for a bit, increment time elapsed, and try again
1102 if (Elapsed >= Timeout) {
1110 Elapsed += TIMEOUT_STALL_INTERVAL;
1117 Elapsed = 0;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Io.c 25 @param[in] Elapsed The pointer to the elapsed time value in the packet.
39 IN UINT16 *Elapsed,
62 // Save pointer to elapsed-time value so we can update it on retransmits.
64 TxCb->Elapsed = Elapsed;
821 @param[in] Elapsed The pointer to the elapsed time value to fill in.
832 IN UINT16 *Elapsed
881 // Update the elapsed time value.
    [all...]
Dhcp6Impl.h 216 UINT16 *Elapsed;
253 // StartTime is used to calculate the 'elapsed-time' option. Refer to RFC3315,
254 // the elapsed-time is amount of time since the client began its current DHCP transaction.
  /external/v8/src/
counters.h 11 #include "src/base/platform/elapsed-timer.h"
362 ~AggregatedHistogramTimerScope() { histogram_->Add(timer_.Elapsed()); }
520 base::TimeDelta delta = timer_.Elapsed();
531 inline void Elapsed() {
532 base::TimeDelta delta = timer_.Elapsed();
536 parent()->Elapsed();
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 74 TimeRecord Elapsed = TimeRecord::getCurrentTime();
75 Elapsed -= Start;
77 Elapsed.print(Elapsed, llvm::errs());
    [all...]

Completed in 592 milliseconds