Home
last modified time | relevance | path

Searched refs:next_callback (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/utility/source/
Dprocess_thread_impl.cc116 m.next_callback = kCallProcessImmediately; in WakeUp()
203 if (m.next_callback == 0) in Process()
204 m.next_callback = GetNextCallbackTime(m.module, now); in Process()
206 if (m.next_callback <= now || in Process()
207 m.next_callback == kCallProcessImmediately) { in Process()
213 m.next_callback = GetNextCallbackTime(m.module, new_now); in Process()
216 if (m.next_callback < next_checkpoint) in Process()
217 next_checkpoint = m.next_callback; in Process()
Dprocess_thread_impl.h46 ModuleCallback() : module(nullptr), next_callback(0) {} in ModuleCallback()
48 : module(cb.module), next_callback(cb.next_callback) {} in ModuleCallback()
49 ModuleCallback(Module* module) : module(module), next_callback(0) {} in ModuleCallback()
55 int64_t next_callback; // Absolute timestamp. member
/external/libmojo/mojo/message_pump/
Dhandle_watcher_unittest.cc47 base::Callback<void(MojoResult)> next_callback, in DeleteWatcherAndForwardResult() argument
50 next_callback.Run(result); in DeleteWatcherAndForwardResult()