Searched refs:notify (Results 1 - 25 of 68) sorted by relevance

123

/haiku/src/kits/midi2/
H A DMidiRosterLooper.cpp279 BMessage notify; local
280 notify.AddInt32("be:op", B_MIDI_UNREGISTERED);
281 ChangeEvent(&notify, endp);
382 BMessage notify; local
384 notify.AddInt32("be:op", B_MIDI_REGISTERED);
386 notify.AddInt32("be:op", B_MIDI_UNREGISTERED);
388 ChangeEvent(&notify, endp);
407 BMessage notify; local
408 notify.AddInt32("be:op", B_MIDI_CHANGED_NAME);
409 notify
428 BMessage notify; local
451 BMessage notify; local
465 BMessage notify; local
525 BMessage notify; local
[all...]
/haiku/src/apps/icon-o-matic/generic/selection/
H A DSelection.cpp120 bool notify = false; local
128 notify = true;
142 if (notify)
/haiku/src/servers/midi/
H A DMidiServerApp.cpp278 BMessage notify; local
279 notify.what = MSG_ENDPOINT_CHANGED;
280 notify.AddInt32("midi:id", endpoint->id);
284 notify.AddBool("midi:registered", registered);
290 notify.AddString("midi:name", name);
296 notify.AddMessage("midi:properties", &properties);
302 notify.AddInt64("midi:latency", latency);
306 _NotifyAll(&notify, app);
370 BMessage notify; local
371 _MakeConnectedNotification(&notify, produce
389 BMessage notify; local
412 BMessage notify; local
446 BMessage notify; local
474 BMessage notify; local
[all...]
/haiku/src/apps/cortex/support/
H A DIObservable.h79 virtual status_t notify(
83 // released. should notify all targets with an appropriate
H A DObservableHandler.h91 virtual status_t notify(
H A DObservableLooper.h96 virtual status_t notify(
H A DObservableHandler.cpp64 // notify
138 status_t ObservableHandler::notify( function in class:ObservableHandler
153 notify(&m);
H A DObservableLooper.cpp133 status_t ObservableLooper::notify( function in class:ObservableLooper
144 notify(&m);
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DAbstractButton.cpp47 // check whether to notify the listeners depending on the button policy
48 bool notify = false; local
52 // always notify on selection changes
53 notify = true;
56 // only notify when the user interaction has been finished
57 notify = !fPressed;
61 if (notify) {
62 // notify synchronous listeners
/haiku/headers/private/wmi/
H A Dwmi.h37 status_t (*get_event_data)(wmi_device device, uint32 notify,
/haiku/src/add-ons/kernel/drivers/wmi/
H A DWMIDevice.cpp75 WMIDevice::GetEventData(uint32 notify, acpi_data* out) argument
78 return fBus->GetEventData(notify, out);
149 wmi_get_event_data(wmi_device _device, uint32 notify, acpi_data* out) argument
152 return device->GetEventData(notify, out);
H A DWMIAsus.cpp43 uint32 notify, void *context);
44 void _Notify(acpi_handle handle, uint32 notify);
173 WMIAsus::_NotifyHandler(acpi_handle handle, uint32 notify, void *context) argument
176 device->_Notify(handle, notify);
181 WMIAsus::_Notify(acpi_handle handle, uint32 notify) argument
186 wmi->get_event_data(wmi_cookie, notify, &response);
H A DWMIPrivate.h64 status_t GetEventData(uint32 notify, acpi_data* out);
120 status_t GetEventData(uint32 notify, acpi_data* out);
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DVolume.h130 bool notify);
132 PackageNode* endNode, bool notify);
135 PackageNode* node, bool notify);
138 PackageNode* endPackageNode, bool notify);
141 PackageNode* packageNode, bool notify,
145 bool notify);
/haiku/src/kits/storage/
H A DPathMonitor.cpp554 bool notify);
556 bool notify);
565 bool dryRun, bool notify, Entry** _entry);
568 bool notify, Entry** _keepEntry);
579 bool isDirectory, bool notify,
581 void _DeleteNode(Node* node, bool notify);
586 bool isDirectory, bool notify,
588 void _DeleteEntry(Entry* entry, bool notify);
590 Entry* entry, bool notify);
965 PathHandler::_StartWatchingAncestors(Ancestor* startAncestor, bool notify) argument
1012 _StopWatchingAncestors(Ancestor* ancestor, bool notify) argument
1375 _EntryCreated(const NotOwningEntryRef& entryRef, const node_ref& nodeRef, bool isDirectory, bool dryRun, bool notify, Entry** _entry) argument
1505 _EntryRemoved(const NotOwningEntryRef& entryRef, const node_ref& nodeRef, bool dryRun, bool notify, Entry** _keepEntry) argument
1643 _AddNode(const node_ref& nodeRef, bool isDirectory, bool notify, Entry* entry, Node** _node) argument
1728 _DeleteNode(Node* node, bool notify) argument
1755 _AddEntryIfNeeded(Directory* directory, const char* name, const node_ref& nodeRef, bool isDirectory, bool notify, Entry** _entry) argument
1793 _DeleteEntry(Entry* entry, bool notify) argument
1801 _DeleteEntryAlreadyRemovedFromParent(Entry* entry, bool notify) argument
[all...]
/haiku/src/apps/packageinstaller/
H A DPackageView.cpp181 BAlert* notify = new BAlert("installation_success", local
185 notify->SetFlags(notify->Flags() | B_CLOSE_ON_ESCAPE);
187 notify->Go();
202 BAlert* notify = new BAlert("installation_aborted", local
206 notify->SetFlags(notify->Flags() | B_CLOSE_ON_ESCAPE);
207 notify->Go();
219 BAlert* notify = new BAlert("installation_failed", local
228 notify
[all...]
H A DUninstallView.cpp251 BAlert* notify; local
258 notify = new BAlert("removal_success",
263 notify = new BAlert("removal_failed",
270 notify->SetFlags(notify->Flags() | B_CLOSE_ON_ESCAPE);
271 notify->Go();
/haiku/src/add-ons/kernel/network/stack/
H A Dutility.cpp147 return gNetSocketModule.notify(socket, event, value);
168 fifo->notify = create_sem(0, name);
169 if (fifo->notify < B_OK) {
171 return fifo->notify;
189 delete_sem(fifo->notify);
202 fifo_notify_one_reader(fifo->waiting, fifo->notify);
266 status = acquire_sem_etc(fifo->notify, 1,
277 fifo_notify_one_reader(fifo->waiting, fifo->notify);
423 // notify timer about the change if necessary
/haiku/src/add-ons/kernel/drivers/disk/usb/usb_disk/
H A Dusb_disk.h61 sem_id notify; member in struct:disk_device_s
/haiku/src/servers/app/
H A DBitmapManager.cpp255 BMessage notify(B_RELEASE_OVERLAY_LOCK);
256 apps.ItemAt(i)->SendMessageToClient(&notify);
284 BMessage notify(B_RELEASE_OVERLAY_LOCK);
285 apps.ItemAt(i)->SendMessageToClient(&notify);
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixStreamEndpoint.cpp437 gSocketModule->notify(peerEndpoint->socket, B_SELECT_READ, readable);
439 gSocketModule->notify(socket, B_SELECT_WRITE, writable);
537 gSocketModule->notify(socket, B_SELECT_READ, readable);
539 gSocketModule->notify(peerEndpoint->socket, B_SELECT_WRITE, writable);
692 gSocketModule->notify(socket, B_SELECT_READ, EPIPE);
693 gSocketModule->notify(fPeerEndpoint->socket, B_SELECT_WRITE, EPIPE);
696 gSocketModule->notify(socket, B_SELECT_WRITE, EPIPE);
697 gSocketModule->notify(fPeerEndpoint->socket, B_SELECT_READ, EPIPE);
737 gSocketModule->notify(socket, B_SELECT_READ, ECONNRESET);
738 gSocketModule->notify(socke
[all...]
/haiku/src/apps/powerstatus/
H A DExtendedInfoWindow.h62 virtual void Update(bool force = false, bool notify = true);
H A DPowerStatusView.h43 virtual void Update(bool force = false, bool notify = true);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DVolumeManager.cpp1067 bool notify = true;
1076 notify = !_IsRecentEvent(oldEvent);
1094 if (notify) {
1135 bool notify = true; local
1153 notify = !_IsRecentEvent(oldEvent);
1177 if (notify) {
1230 bool notify = true; local
1241 notify = !_IsRecentEvent(oldEvent);
1277 if (notify) {
1338 bool notify
[all...]
/haiku/src/add-ons/kernel/busses/virtio/virtio_pci/
H A Dvirtio_pci.cpp631 struct virtio_pci_notify_cap notify; local
647 if (virtio_pci_find_capability(bus, VIRTIO_PCI_CAP_NOTIFY_CFG, &notify,
648 sizeof(notify)) != B_OK) {
657 if (notify.cap.length > 0) {
658 bars[notify.cap.bar] = max_c(bars[notify.cap.bar], notify.cap.offset
659 + notify.cap.length);
684 bus->notifyAddr = registers[notify.cap.bar] + notify
[all...]

Completed in 352 milliseconds

123