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

1 2 3 4 5 6 7 8 91011

  /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_default.h 22 void Run(Delegate* delegate) override;
  /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 { ... };
60 class BASE_EXPORT SimpleThread : public PlatformThread::Delegate {
108 // Overridden from PlatformThread::Delegate:
123 // A SimpleThread which delegates Run() to its Delegate. Non-joinable
127 // use their Delegate's member state after its deletion).
130 class BASE_EXPORT Delegate {
132 virtual ~Delegate() = default;
136 DelegateSimpleThread(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/perfetto/src/traced/probes/filesystem/
file_scanner.h 32 class Delegate {
39 virtual ~Delegate();
43 Delegate* delegate,
48 FileScanner(std::vector<std::string> root_directories, Delegate* delegate);
62 Delegate* delegate_;
  /system/bt/service/ipc/
ipc_manager.h 47 class Delegate {
49 Delegate() = default;
50 virtual ~Delegate() = default;
61 DISALLOW_COPY_AND_ASSIGN(Delegate);
75 // |delegate| must out-live the IPCManager and the underlying handler. Users
76 // can guarantee proper clean up by deallocating |delegate| when or after
77 // Delegate::OnIPCHandlerStopped is called. It is safe to destroy |delegate|
80 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) {
  /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);
55 Delegate* const mDelegate;
  /external/pdfium/core/fxcodec/codec/
ccodec_pngmodule.h 23 class Delegate {
39 std::unique_ptr<Context> Start(Delegate* pDelegate);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
SymbolDeserializer.h 37 explicit SymbolDeserializer(SymbolVisitorDelegate *Delegate)
38 : Delegate(Delegate) {}
63 Delegate ? Delegate->getRecordOffset(Mapping->Reader) : 0;
69 SymbolVisitorDelegate *Delegate;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
SymbolDeserializer.h 37 explicit SymbolDeserializer(SymbolVisitorDelegate *Delegate)
38 : Delegate(Delegate) {}
63 Delegate ? Delegate->getRecordOffset(Mapping->Reader) : 0;
69 SymbolVisitorDelegate *Delegate;
  /external/libmojo/base/message_loop/
message_pump_android.h 33 void Run(Delegate* delegate) override;
38 virtual void Start(Delegate* delegate);
39 void StartForUnitTest(Delegate* delegate,
  /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;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
SymbolDeserializer.h 50 explicit SymbolDeserializer(SymbolVisitorDelegate *Delegate,
52 : Delegate(Delegate), Container(Container) {}
77 Delegate ? Delegate->getRecordOffset(Mapping->Reader) : 0;
83 SymbolVisitorDelegate *Delegate;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
SymbolDeserializer.h 50 explicit SymbolDeserializer(SymbolVisitorDelegate *Delegate,
52 : Delegate(Delegate), Container(Container) {}
77 Delegate ? Delegate->getRecordOffset(Mapping->Reader) : 0;
83 SymbolVisitorDelegate *Delegate;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
SymbolDeserializer.h 50 explicit SymbolDeserializer(SymbolVisitorDelegate *Delegate,
52 : Delegate(Delegate), Container(Container) {}
77 Delegate ? Delegate->getRecordOffset(Mapping->Reader) : 0;
83 SymbolVisitorDelegate *Delegate;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
SymbolDeserializer.h 50 explicit SymbolDeserializer(SymbolVisitorDelegate *Delegate,
52 : Delegate(Delegate), Container(Container) {}
77 Delegate ? Delegate->getRecordOffset(Mapping->Reader) : 0;
83 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...]
  /frameworks/support/media/api21/androidx/media/
VolumeProviderCompatApi21.java 26 final Delegate delegate) {
30 delegate.onSetVolumeTo(volume);
35 delegate.onAdjustVolume(direction);
44 public interface Delegate {
  /external/libmojo/base/android/
java_message_handler_factory.h 25 base::MessagePump::Delegate* delegate,
  /external/pdfium/testing/
embedder_test_mock_delegate.h 11 class EmbedderTestMockDelegate : public EmbedderTest::Delegate {
  /external/perfetto/include/perfetto/protozero/
scattered_stream_null_delegate.h 30 : public ScatteredStreamWriter::Delegate {
35 // protozero::ScatteredStreamWriter::Delegate implementation.

Completed in 1010 milliseconds

1 2 3 4 5 6 7 8 91011