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

  /external/libbrillo/brillo/message_loops/
message_loop.cc 17 base::LazyInstance<base::ThreadLocalPointer<MessageLoop> >::Leaky lazy_tls_ptr =
22 const MessageLoop::TaskId MessageLoop::kTaskIdNull = 0;
24 MessageLoop* MessageLoop::current() {
26 "There isn't a MessageLoop for this thread. You need to initialize it "
31 bool MessageLoop::ThreadHasCurrent() {
35 void MessageLoop::SetAsCurrent() {
37 "There's already a MessageLoop for this thread.";
41 void MessageLoop::ReleaseFromCurrent()
    [all...]
message_loop.h 17 class BRILLO_EXPORT MessageLoop {
19 virtual ~MessageLoop();
28 // Return the MessageLoop for the current thread. It is a fatal error to
29 // request the current MessageLoop if SetAsCurrent() was not called on the
32 static MessageLoop* current();
34 // Return whether there is a MessageLoop in the current thread.
123 MessageLoop() = default;
130 DISALLOW_COPY_AND_ASSIGN(MessageLoop);
  /frameworks/base/core/java/android/speech/tts/
AudioPlaybackHandler.java 34 mHandlerThread = new Thread(new MessageLoop(), "TTS.AudioPlaybackThread");
114 * The MessageLoop is a handler like implementation that
117 private final class MessageLoop implements Runnable {
125 if (DBG) Log.d(TAG, "MessageLoop : Shutting down (interrupted)");
  /external/libchrome/base/message_loop/
message_loop.cc 45 LazyInstance<base::ThreadLocalPointer<MessageLoop> >::Leaky lazy_tls_ptr =
89 MessageLoop::MessagePumpFactory* message_pump_for_ui_factory_ = NULL;
113 MessageLoop::TaskObserver::TaskObserver() {
116 MessageLoop::TaskObserver::~TaskObserver() {
119 MessageLoop::DestructionObserver::~DestructionObserver() {
124 MessageLoop::MessageLoop(Type type)
125 : MessageLoop(type, MessagePumpFactoryCallback()) {
129 MessageLoop::MessageLoop(scoped_ptr<MessagePump> pump
    [all...]
message_loop.h 47 // A MessageLoop is used to process events for a particular thread. There is
48 // at most one MessageLoop instance per thread.
51 // variants. Depending on the type of message pump used by the MessageLoop
56 // NOTE: Unless otherwise specified, a MessageLoop's methods may only be called
57 // on the thread where the MessageLoop's Run method executes.
59 // NOTE: MessageLoop has task reentrancy protection. This means that if a
70 // MessageLoop::ScopedNestableTaskAllower allow(MessageLoop::current());
78 class BASE_EXPORT MessageLoop : public MessagePump::Delegate {
80 // A MessageLoop has a particular type, which indicates the set o
    [all...]
  /external/clang/test/SemaCXX/
new-delete.cpp 491 class MessageLoop {
493 explicit MessageLoop(int type = 0);
499 new MessageLoop;

Completed in 177 milliseconds