HomeSort by relevance Sort by last modified time
    Searched defs:Notify (Results 1 - 25 of 64) sorted by null

1 2 3

  /art/runtime/
object_lock.cc 42 void ObjectLock<T>::Notify() {
43 obj_->Notify(self_);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/PciHotPlugRequest/
PciHotPlugRequest.h 49 EFI_PCI_HOTPLUG_REQUEST_NOTIFY Notify;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
PciHotPlugRequest.h 2 Provides services to notify the PCI bus driver that some events have happened
11 protocol to notify PCI bus driver to allocate resource and create handles for
18 for example, PC Card Bus driver, to notify PCI bus driver that an event has
80 This function is used to notify PCI bus driver that some events happened in a
154 /// Provides services to notify PCI bus driver that some events have happened in
160 /// Notify the PCI bus driver that some events have happened in a hot-plug
165 EFI_PCI_HOTPLUG_REQUEST_NOTIFY Notify;
SmbusHc.h 184 @retval EFI_UNSUPPORTED ArpDevice, GetArpMap, and Notify are
213 @retval EFI_UNSUPPORTED ArpDevice, GetArpMap, and Notify are
226 The notify function does some actions.
232 Data of the SMBus host notify command that the caller wants to be called.
246 The Notify() function registers all the callback functions to
265 @retval EFI_UNSUPPORTED ArpDevice, GetArpMap, and Notify are
288 EFI_SMBUS_HC_PROTOCOL_NOTIFY Notify;
  /art/runtime/openjdkjvmti/
ti_monitor.cc 117 bool Notify(art::Thread* self) {
118 return Notify(self, [&]() { cond_.notify_one(); });
122 return Notify(self, [&]() { cond_.notify_all(); });
160 bool Notify(art::Thread* self, T how_to_notify) {
280 if (!monitor->Notify(self)) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/Smbus/
Smbus.h 96 PEI_SMBUS_PPI_NOTIFY Notify;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/Smbus2/
Smbus2.h 90 EFI_PEI_SMBUS2_PPI_NOTIFY Notify;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/Smbus/
Smbus.h 89 EFI_SMBUS_HC_PROTOCOL_NOTIFY Notify;
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Ppi/
Smbus.h 87 @param[in] Data Data of the SMBus host notify command, which denotes that
172 The Notify() function registers all the callback functions to allow the
187 @retval EFI_UNSUPPORTED Notify() are not implemented by this PEIM.
227 EFI_PEI_SMBUS_PPI_NOTIFY Notify;
  /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/
Smbus2.h 106 @retval EFI_UNSUPPORTED ArpDevice, GetArpMap, and Notify are not implemented by this PEIM.
128 @retval EFI_UNSUPPORTED ArpDevice, GetArpMap, and Notify are not implemented by this PEIM.
145 @param Data Data of the SMBus host notify command that
149 @retval EFI_UNSUPPORTED ArpDevice, GetArpMap, and Notify are not
162 The Notify() function registers all the callback functions to allow the
174 @retval EFI_UNSUPPORTED ArpDevice, GetArpMap, and Notify are not
194 EFI_PEI_SMBUS2_PPI_NOTIFY Notify;
  /external/libmojo/base/android/
application_status_listener.cc 52 void ApplicationStatusListener::Notify(ApplicationState state) {
64 g_observers.Get().Notify(FROM_HERE, &ApplicationStatusListener::Notify,
  /prebuilts/go/darwin-x86/src/os/signal/
signal.go 70 // calls to Notify for the provided signals.
76 // Notify causes package signal to relay incoming signals to c.
85 // It is allowed to call Notify multiple times with the same channel:
89 // It is allowed to call Notify multiple times with different channels
92 func Notify(c chan<- os.Signal, sig ...os.Signal) {
94 panic("os/signal: Notify using nil channel")
133 // Reset undoes the effect of any prior calls to Notify for the provided
141 // It undoes the effect of all prior calls to Notify using c.
  /prebuilts/go/linux-x86/src/os/signal/
signal.go 70 // calls to Notify for the provided signals.
76 // Notify causes package signal to relay incoming signals to c.
85 // It is allowed to call Notify multiple times with the same channel:
89 // It is allowed to call Notify multiple times with different channels
92 func Notify(c chan<- os.Signal, sig ...os.Signal) {
94 panic("os/signal: Notify using nil channel")
133 // Reset undoes the effect of any prior calls to Notify for the provided
141 // It undoes the effect of all prior calls to Notify using c.
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSOperationCode.java 29 * Notify [RFC1996]
31 Notify("Notify", 4),
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Hand/
Handle.h 53 LIST_ENTRY Notify;
105 /// Event to notify
  /device/linaro/bootloader/edk2/OvmfPkg/XenPvBlkDxe/
BlockFront.c 444 BOOLEAN Notify;
489 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY (&Dev->Ring, Notify);
491 if (Notify) {
531 BOOLEAN Notify;
544 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY (&Dev->Ring, Notify);
545 if (Notify) {
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
EventCount.h 33 // ec.Notify(true);
35 // Notify is cheap if there are no waiting threads. Prewait/CommitWait are not
129 // Notify wakes one or all waiting threads.
131 void Notify(bool all) {
  /external/libchrome/base/
callback_list.h 38 // callback_list_.Notify(foo);
214 void Notify(RunArgs&&... args) {
observer_list_threadsafe.h 36 // * Any thread may trigger a notification via Notify().
53 // will notify its regular ObserverList.
116 // If there is not a current MessageLoop, it is impossible to notify on it,
172 // Notify methods.
175 // that at the completion of the Notify call that all Observers have
178 void Notify(const tracked_objects::Location& from_here,
  /frameworks/native/libs/vr/libvrflinger/
vsync_service.cpp 95 (*first)->Notify(current_vsync_);
193 void VSyncWaiter::Notify(int64_t timestamp) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
PiSmmCore.h 147 LIST_ENTRY Notify;
423 @param Notify indicates whether notify the notification list
437 IN BOOLEAN Notify
483 @param Protocol The requested protocol to add the notify
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDeviceThreadPool.h 27 // Notify has been called a specified number of times.
37 void Notify() {
70 // but only one caller must call Notify() on the object.
76 // Runs an arbitrary function and then calls Notify() on the passed in
83 n->Notify();
93 b->Notify();
253 barrier.Notify();
  /external/webrtc/webrtc/video/
vie_channel.h 347 virtual void Notify(const BitrateStatistics& total_stats,
352 callback_->Notify(total_stats, retransmit_stats, ssrc);
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/test/
QCameraHAL3Base.cpp 96 static void Notify(
287 my_test_obj->callback_ops.notify = &Notify;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
certexit.h 68 virtual HRESULT WINAPI Notify(LONG ExitEvent,LONG Context) = 0;
82 HRESULT (WINAPI *Notify)(ICertExit *This,LONG ExitEvent,LONG Context);
98 #define ICertExit_Notify(This,ExitEvent,Context) (This)->lpVtbl->Notify(This,ExitEvent,Context)
129 HRESULT (WINAPI *Notify)(ICertExit2 *This,LONG ExitEvent,LONG Context);
146 #define ICertExit2_Notify(This,ExitEvent,Context) (This)->lpVtbl->Notify(This,ExitEvent,Context)

Completed in 806 milliseconds

1 2 3