HomeSort by relevance Sort by last modified time
    Searched refs:Clock (Results 226 - 250 of 411) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_receiver_impl.h 28 RtpReceiverImpl(Clock* clock,
77 Clock* clock_;
ssrc_database.cc 14 #include "webrtc/system_wrappers/include/clock.h"
20 return Clock::GetRealTimeClock()->TimeInMicroseconds();
rtp_sender_audio.h 24 RTPSenderAudio(Clock* clock,
74 Clock* const _clock;
  /external/webrtc/webrtc/modules/video_coding/
generic_decoder.h 35 VCMDecodedFrameCallback(VCMTiming* timing, Clock* clock);
55 Clock* _clock;
video_coding_impl.h 29 #include "webrtc/system_wrappers/include/clock.h"
40 VCMProcessTimer(int64_t periodMs, Clock* clock)
41 : _clock(clock),
49 Clock* _clock;
58 VideoSender(Clock* clock,
104 Clock* const clock_;
132 VideoReceiver(Clock* clock, EventFactory* event_factory)
    [all...]
media_optimization.h 26 class Clock;
34 explicit MediaOptimization(Clock* clock);
139 Clock* clock_ GUARDED_BY(crit_sect_);
  /external/webrtc/webrtc/modules/video_coding/test/
rtp_player.h 21 class Clock;
91 Clock* clock,
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
BitmapPreFillRunner.java 33 private static final Clock DEFAULT_CLOCK = new Clock();
59 private final Clock clock; field in class:BitmapPreFillRunner
71 BitmapPreFillRunner(BitmapPool bitmapPool, MemoryCache memoryCache, PreFillQueue allocationOrder, Clock clock,
76 this.clock = clock;
89 long start = clock.now();
113 return clock.now() - startTimeMs >= MAX_DURATION_MS
    [all...]
  /external/libcxx/test/std/utilities/time/time.point/time.point.comparisons/
op_less.pass.cpp 14 // template <class Clock, class Duration1, class Duration2>
16 // operator< (const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs);
18 // template <class Clock, class Duration1, class Duration2>
20 // operator> (const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs);
22 // template <class Clock, class Duration1, class Duration2>
24 // operator<=(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs);
26 // template <class Clock, class Duration1, class Duration2
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/include/
audio_coding_module.h 22 #include "webrtc/system_wrappers/include/clock.h"
64 Config() : id(0), neteq_config(), clock(Clock::GetRealTimeClock()) {
72 Clock* clock; member in struct:webrtc::AudioCodingModule::Config
78 // The second method is used for testing where a simulated clock can be
79 // injected into ACM. ACM will take the ownership of the object clock and
83 static AudioCodingModule* Create(int id, Clock* clock);
  /external/webrtc/webrtc/modules/video_coding/include/
video_coding.h 32 class Clock;
72 Clock* clock,
76 static VideoCodingModule* Create(Clock* clock, EventFactory* event_factory);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.comparisons/
op_less.pass.cpp 14 // template <class Clock, class Duration1, class Duration2>
16 // operator< (const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs);
18 // template <class Clock, class Duration1, class Duration2>
20 // operator> (const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs);
22 // template <class Clock, class Duration1, class Duration2>
24 // operator<=(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs);
26 // template <class Clock, class Duration1, class Duration2
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/
DvrRecordingService.java 33 import com.android.tv.util.Clock;
61 private final Clock mClock = Clock.SYSTEM;
BaseDvrDataManager.java 29 import com.android.tv.util.Clock;
43 protected final Clock mClock;
48 BaseDvrDataManager(Context context, Clock clock) {
50 mClock = clock;
Scheduler.java 33 import com.android.tv.util.Clock;
81 private final Clock mClock;
86 Context context, Clock clock,
94 mClock = clock;
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Throttle.java 46 private final Clock mClock;
80 this(name, callback, handler, minTimeout, maxTimeout, Clock.INSTANCE, TIMER);
86 int maxTimeout, Clock clock, Timer timer) {
92 mClock = clock;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java 29 import com.android.providers.contacts.util.Clock;
61 Clock.getInstance().currentTimeMillis());
95 + Clock.getInstance().currentTimeMillis()
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/include/
remote_bitrate_estimator.h 27 class Clock;
54 // kProcessIntervalMs using the clock passed to
58 // using the clock passed to RemoteBitrateEstimatorFactory::Create.
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
ANQPData.java 3 import com.android.server.wifi.Clock;
41 private final Clock mClock;
43 public ANQPData(Clock clock, NetworkDetail network,
46 mClock = clock;
62 public ANQPData(Clock clock, NetworkDetail network, ANQPData existing) {
63 mClock = clock;
  /external/libweave/src/commands/
command_queue.h 28 CommandQueue(provider::TaskRunner* task_runner, base::Clock* clock);
81 base::Clock* clock_{nullptr};
87 // (earliest first). This is done to tolerate system clock changes.
  /external/webrtc/webrtc/modules/audio_coding/acm2/
audio_coding_module.cc 17 #include "webrtc/system_wrappers/include/clock.h"
26 config.clock = Clock::GetRealTimeClock();
30 AudioCodingModule* AudioCodingModule::Create(int id, Clock* clock) {
33 config.clock = clock;
  /external/google-benchmark/src/
walltime.cc 187 typedef ChooseClockType::type Clock;
192 auto now = Clock::now().time_since_epoch();
199 VLOG(1) << "Using the CPU cycle clock to provide walltime::Now().\n";
228 typedef std::chrono::system_clock Clock;
229 std::time_t now = Clock::to_time_t(Clock::now());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
Clock.java 54 * Digital clock for the status bar.
56 public class Clock extends TextView implements DemoMode, Tunable {
75 public Clock(Context context) {
79 public Clock(Context context, AttributeSet attrs) {
83 public Clock(Context context, AttributeSet attrs, int defStyle) {
87 R.styleable.Clock,
172 setVisibility(list.contains("clock") ? View.GONE : View.VISIBLE);
  /packages/apps/Email/tests/src/com/android/email/
ThrottleTest.java 24 import com.android.mail.utils.Clock;
44 * Advance the clock.
169 * Substitute for {@link Timer} that works based on the provided {@link Clock}.
172 private final Clock mClock;
181 public MockTimer(Clock clock) {
182 mClock = clock;
198 * {@link MockTimer} can't know when the clock advances. This method must be called
  /external/libweave/src/privet/
auth_manager.h 35 base::Clock* clock = nullptr);
84 base::Clock* clock_{&default_clock_};

Completed in 1922 milliseconds

1 2 3 4 5 6 7 8 91011>>