HomeSort by relevance Sort by last modified time
    Searched refs:Delegate (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/libchrome/base/message_loop/
message_pump.h 19 // these delegate methods are used.
20 class BASE_EXPORT Delegate {
22 virtual ~Delegate() {}
52 // messages as well as for giving cycles to the delegate periodically. The
53 // message pump should take care to mix delegate callbacks with native
108 virtual void Run(Delegate* delegate) = 0;
message_pump_mac.h 12 // of the machinery necessary to dispatch events to a delegate, but does not
92 void Run(Delegate* delegate) override;
93 virtual void DoRun(Delegate* delegate) = 0;
105 // Sets this pump's delegate. Signals the appropriate sources if
106 // |delegateless_work_| is true. |delegate| can be NULL.
107 void SetDelegate(Delegate* delegate);
186 // (weak) Delegate passed as an argument to the innermost Run call
    [all...]
message_pump_default.h 22 void Run(Delegate* delegate) override;
  /system/bt/service/ipc/
ipc_manager.h 46 class Delegate {
48 Delegate() = default;
49 virtual ~Delegate() = default;
60 DISALLOW_COPY_AND_ASSIGN(Delegate);
74 // |delegate| must out-live the IPCManager and the underlying handler. Users
75 // can guarantee proper clean up by deallocating |delegate| when or after
76 // Delegate::OnIPCHandlerStopped is called. It is safe to destroy |delegate|
79 bool Start(Type type, Delegate* delegate);
    [all...]
ipc_handler.h 34 IPCHandler(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
48 IPCManager::Delegate* delegate() const { return delegate_; } function in class:ipc::IPCHandler
56 // The delegate that is interested in notifications from us.
57 IPCManager::Delegate* delegate_;
ipc_handler.cc 24 IPCManager::Delegate* delegate)
25 : adapter_(adapter), delegate_(delegate) {
  /external/libchrome/base/threading/
simple_thread.h 15 // a new thread, and execute the Delegate's virtual Run() in this new thread
21 // Start() having been called (and a thread never created). The Delegate
29 // class MyThreadRunner : public DelegateSimpleThread::Delegate { ... };
59 class BASE_EXPORT SimpleThread : public PlatformThread::Delegate {
112 // Overridden from PlatformThread::Delegate:
127 class BASE_EXPORT Delegate {
129 Delegate() { }
130 virtual ~Delegate() { }
134 DelegateSimpleThread(Delegate* delegate,
    [all...]
platform_thread.h 118 class BASE_EXPORT Delegate {
123 virtual ~Delegate() {}
155 // and |delegate|'s ThreadMain method will be executed on the newly created
159 // the Delegate object outlives the thread.
161 Delegate* delegate,
163 return CreateWithPriority(stack_size, delegate, thread_handle,
169 static bool CreateWithPriority(size_t stack_size, Delegate* delegate,
176 static bool CreateNonJoinable(size_t stack_size, Delegate* delegate)
    [all...]
  /external/sfntly/cpp/src/test/
platform_thread.h 45 class Delegate {
47 virtual ~Delegate() {}
56 // and |delegate|'s ThreadMain method will be executed on the newly created
60 // the Delegate object outlives the thread.
61 static bool Create(Delegate* delegate, PlatformThreadHandle* thread_handle);
platform_thread.cc 24 PlatformThread::Delegate* delegate = local
25 static_cast<PlatformThread::Delegate*>(params);
26 delegate->ThreadMain();
31 bool PlatformThread::Create(Delegate* delegate,
34 *thread_handle = CreateThread(NULL, 0, ThreadFunc, delegate, 0, NULL);
58 PlatformThread::Delegate* delegate =
59 static_cast<PlatformThread::Delegate*>(params)
    [all...]
  /external/pdfium/core/fxcodec/codec/
icodec_pngmodule.h 19 class Delegate {
40 Delegate* GetDelegate() const { return m_pDelegate; }
41 void SetDelegate(Delegate* delegate) { m_pDelegate = delegate; }
44 Delegate* m_pDelegate;
icodec_bmpmodule.h 19 class Delegate {
44 Delegate* GetDelegate() const { return m_pDelegate; }
45 void SetDelegate(Delegate* pDelegate) { m_pDelegate = pDelegate; }
48 Delegate* m_pDelegate;
icodec_gifmodule.h 20 class Delegate {
61 Delegate* GetDelegate() const { return m_pDelegate; }
62 void SetDelegate(Delegate* pDelegate) { m_pDelegate = pDelegate; }
65 Delegate* m_pDelegate;
  /system/bt/service/test/
stub_ipc_handler_binder.cc 26 IPCManager::Delegate* delegate)
27 : IPCHandler(adapter, delegate) {
  /system/netd/server/
PhysicalNetwork.h 28 class Delegate {
30 virtual ~Delegate();
38 PhysicalNetwork(unsigned netId, Delegate* delegate);
54 Delegate* const mDelegate;
  /external/libmojo/base/message_loop/
message_pump_android.h 28 void Run(Delegate* delegate) override;
33 virtual void Start(Delegate* delegate);
message_pump_android.cc 28 base::MessagePump::Delegate* delegate = local
29 reinterpret_cast<base::MessagePump::Delegate*>(native_delegate);
30 DCHECK(delegate);
37 bool did_work = delegate->DoWork();
62 did_work |= delegate->DoDelayedWork(&next_delayed_work_time);
83 delegate->DoIdleWork();
95 void MessagePumpForUI::Run(Delegate* delegate) {
100 void MessagePumpForUI::Start(Delegate* delegate)
    [all...]
  /external/libchrome/components/timers/
alarm_timer_chromeos.cc 25 // This class represents the IO thread that the AlarmTimer::Delegate may use for
93 class AlarmTimer::Delegate
94 : public base::RefCountedThreadSafe<AlarmTimer::Delegate>,
97 // Construct a Delegate for the AlarmTimer. It should be safe to call
99 explicit Delegate(base::Closure on_timer_fired_callback);
101 // Returns true if the system timer managed by this delegate is capable of
123 friend class base::RefCountedThreadSafe<Delegate>;
124 ~Delegate() override;
159 DISALLOW_COPY_AND_ASSIGN(Delegate);
162 AlarmTimer::Delegate::Delegate(base::Closure on_timer_fired_callback
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
CVSymbolVisitor.h 24 CVSymbolVisitor(SymbolVisitorDelegate *Delegate) : Delegate(Delegate) {}
53 uint32_t RecordOffset = Delegate ? Delegate->getRecordOffset(Data) : 0;
95 SymbolVisitorDelegate *Delegate;
  /system/bt/service/
low_energy_scanner.h 46 // The Delegate interface is used to notify asynchronous events related to LE
48 class Delegate {
50 Delegate() = default;
51 virtual ~Delegate() = default;
53 // Called asynchronously to notify the delegate of nearby BLE advertisers
59 DISALLOW_COPY_AND_ASSIGN(Delegate);
66 // Assigns a delegate to this instance. |delegate| must out-live this
68 void SetDelegate(Delegate* delegate);
    [all...]
low_energy_client.h 50 // The Delegate interface is used to notify asynchronous events related to BLE
52 class Delegate {
54 Delegate() = default;
55 virtual ~Delegate() = default;
57 // Called asynchronously to notify the delegate of connection state change
61 // Called asynchronously to notify the delegate of mtu change
66 DISALLOW_COPY_AND_ASSIGN(Delegate);
73 // Assigns a delegate to this instance. |delegate| must out-live this
75 void SetDelegate(Delegate* delegate)
    [all...]
  /frameworks/support/media-compat/api21/android/support/v4/media/
VolumeProviderCompatApi21.java 25 final Delegate delegate) {
29 delegate.onSetVolumeTo(volume);
34 delegate.onAdjustVolume(direction);
43 public interface Delegate {
  /external/pdfium/testing/
embedder_test_mock_delegate.h 11 class EmbedderTestMockDelegate : public EmbedderTest::Delegate {
embedder_test.h 32 class Delegate {
34 virtual ~Delegate() {}
72 void SetDelegate(Delegate* delegate) {
73 delegate_ = delegate ? delegate : default_delegate_.get();
117 Delegate* delegate_;
118 std::unique_ptr<Delegate> default_delegate_;
  /system/bt/service/ipc/binder/
ipc_handler_binder.h 29 IPCHandlerBinder(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
39 // Notify the delegate that IPC has started.

Completed in 753 milliseconds

1 2 3 4 5 6 7