/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;
|
message_pump_glib.h | 38 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.cpp | 24 IPCManager::Delegate* delegate) 26 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...] |
/system/netd/server/ |
PhysicalNetwork.h | 25 class Delegate { 27 virtual ~Delegate(); 35 PhysicalNetwork(unsigned netId, Delegate* delegate); 50 Delegate* const mDelegate;
|
PhysicalNetwork.cpp | 27 Permission permission, PhysicalNetwork::Delegate* delegate) { 32 if (int ret = delegate->addFallthrough(interface, permission)) { 40 PhysicalNetwork::Delegate* delegate) { 46 if (int ret = delegate->removeFallthrough(interface, permission)) { 54 PhysicalNetwork::Delegate::~Delegate() { 57 PhysicalNetwork::PhysicalNetwork(unsigned netId, PhysicalNetwork::Delegate* delegate) [all...] |
/system/bt/service/test/ |
stub_ipc_handler_binder.cpp | 27 IPCManager::Delegate* delegate) 28 : IPCHandler(adapter, delegate) {
|
stub_ipc_handler_linux.cpp | 27 IPCManager::Delegate* delegate) 28 : IPCHandler(adapter, delegate),
|
/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...] |
/packages/apps/DeskClock/src/com/android/deskclock/ |
Voice.java | 31 private static Delegate sDelegate = new VoiceInteractorDelegate(); 35 public static void setDelegate(Delegate delegate) { 36 sDelegate = delegate; 39 public static Delegate getDelegate() { 55 public interface Delegate { 62 private static class VoiceInteractorDelegate implements Delegate {
|
/frameworks/support/v4/api21/android/support/v4/media/ |
VolumeProviderCompatApi21.java | 23 final Delegate delegate) { 27 delegate.onSetVolumeTo(volume); 32 delegate.onAdjustVolume(direction); 41 public interface Delegate {
|
/external/libweave/src/notification/ |
xmpp_stream_parser.h | 26 // When a top-level element starts, the parser will call Delegate::OnStreamStart 28 // if they are present) will trigger Delegate::OnStanze() callback. 29 // Finally, when top-level element is closed, Delegate::OnStreamEnd() is called. 41 // Delegate interface that interested parties implement to receive 43 class Delegate { 52 virtual ~Delegate() {} 55 explicit XmppStreamParser(Delegate* delegate); 78 Delegate* delegate_;
|
/external/pdfium/testing/ |
embedder_test_mock_delegate.h | 11 class EmbedderTestMockDelegate : public EmbedderTest::Delegate {
|
embedder_test.h | 32 class Delegate { 34 virtual ~Delegate() {} 75 void SetDelegate(Delegate* delegate) { 76 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 | 30 IPCManager::Delegate* delegate); 40 // Notify the delegate that IPC has started.
|
/external/jcommander/src/test/java/com/beust/jcommander/ |
ParametersDelegateTest.java | 25 public EmptyDelegate delegate = new EmptyDelegate(); field in class:ParametersDelegateTest.MainParams 33 Assert.assertEquals(p.delegate.nonParamString, "a"); 50 public ComplexDelegate delegate = new ComplexDelegate(); field in class:ParametersDelegateTest.MainParams 58 Assert.assertTrue(p.delegate.isC); 59 Assert.assertEquals(p.delegate.d, Integer.valueOf(123)); 124 class Delegate { 130 public Delegate delegate = new Delegate(); field in class:ParametersDelegateTest.Command 139 Assert.assertEquals(c.delegate.a, "a") 150 public Delegate delegate = new Delegate(); field in class:ParametersDelegateTest.Command 172 public ComplexDelegate delegate; field in class:ParametersDelegateTest.MainParams [all...] |
/system/bt/service/ |
low_energy_client.h | 52 // The Delegate interface is used to notify asynchronous events related to BLE 54 class Delegate { 56 Delegate() = default; 57 virtual ~Delegate() = default; 59 // Called asynchronously to notify the delegate of nearby BLE advertisers 64 // Called asynchronously to notify the delegate of connection state change 68 // Called asynchronously to notify the delegate of mtu change 73 DISALLOW_COPY_AND_ASSIGN(Delegate); 80 // Assigns a delegate to this instance. |delegate| must out-live thi [all...] |
/external/jmdns/src/javax/jmdns/ |
JmDNS.java | 25 public static interface Delegate { 418 * Returns the instance delegate 420 * @return instance delegate 422 public abstract Delegate getDelegate(); 425 * Sets the instance delegate 428 * new instance delegate 429 * @return previous instance delegate 431 public abstract Delegate setDelegate(Delegate value);
|