Searched refs:notify (Results 1 - 25 of 68) sorted by last modified time

123

/haiku/headers/private/file_systems/
H A DQueryParser.h160 status_t (*notify)(port_id, int32, dev_t, ino_t,
1495 // notify query listeners
1496 status_t (*notify)(port_id, int32, dev_t, ino_t, const char*, ino_t);
1499 notify = notify_query_attr_changed;
1501 notify = notify_query_entry_created;
1503 notify = notify_query_entry_removed;
1506 _SendEntryNotification(entry, notify);
1510 _SendEntryNotification(entry, notify);
1536 // The entry stays in the query, notify query listeners about the rename
1597 status_t (*notify)(port_i
[all...]
/haiku/src/servers/app/
H A DServerApp.cpp285 // notify registrar about the active app
485 BMessage notify(kMsgDeleteServerMemoryArea);
486 notify.AddInt32("server area", serverArea);
488 SendMessageToClient(&notify);
598 // window creation failed, we need to notify the client
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/stack/
H A Dnet_socket.cpp770 // notify parent
871 bool notify = true; local
877 notify = false;
882 notify = false;
892 if (notify && socket->select_pool != NULL) {
896 // always notify read/write on error
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/network/protocols/tcp/
H A DTCPEndpoint.cpp1237 gSocketModule->notify(socket, B_SELECT_WRITE, fSendQueue.Free());
1289 gSocketModule->notify(socket, B_SELECT_WRITE, error);
1290 gSocketModule->notify(socket, B_SELECT_ERROR, error);
1372 gSocketModule->notify(socket, B_SELECT_READ, _AvailableData());
1820 bool notify = false; local
1828 notify = _AddData(segment, buffer);
1841 notify = true;
1877 if (notify)
2417 // notify threads waiting on the socket to become writable again
2419 gSocketModule->notify(socke
[all...]
/haiku/src/apps/powerstatus/
H A DPowerStatusView.cpp402 PowerStatusView::Update(bool force, bool notify) argument
515 if (!fOnline && notify && fHasBattery
H A DExtendedInfoWindow.cpp318 ExtPowerStatusView::Update(bool force, bool notify) argument
/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...]
/haiku/src/add-ons/kernel/network/devices/tunnel/
H A Dtunnel.cpp120 release_sem_etc(cookie->device->send_queue.notify, B_INTERRUPTED, B_RELEASE_ALL);
407 release_sem_etc(device->receive_queue.notify, B_INTERRUPTED, B_RELEASE_ALL);
/haiku/src/add-ons/kernel/generic/tty/
H A Dtty.cpp70 {Reader,Writer}Locker() remove the formerly enqueued Requests and notify
455 bool notify = false; local
458 notify = fRequests[1].WasNotified();
460 notify = fRequests[0].WasNotified();
465 if (notify && fConditionVariable)
531 // check the tty queues and notify the next in line, and send out select
580 // set the number of bytes we need and notify, just in case we're first in
656 // check the tty queues and notify the next in line, and send out select
925 // if nobody is waiting send select events, otherwise notify the waiter
934 // if nobody is waiting send select events, otherwise notify th
[all...]
/haiku/src/add-ons/kernel/drivers/disk/usb/usb_disk/
H A Dusb_disk.cpp110 notify(-1),
123 if (notify >= 0)
124 delete_sem(notify);
250 result = acquire_sem_etc(device->notify, 1, B_RELATIVE_TIMEOUT,
259 acquire_sem_etc(device->notify, 1, B_RELATIVE_TIMEOUT, 0);
1025 release_sem(device->notify);
1124 device->notify = create_sem(0, "usb_disk callback notify");
1125 if (device->notify < B_OK) {
1126 status_t result = device->notify;
[all...]
/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp618 bool notify = true; local
624 notify = false;
630 notify = false;
638 if (notify)
/haiku/src/kits/interface/
H A DListView.cpp265 // notify items of new width.
1316 bool notify = false; local
1317 uint32 kind = InvokeKind(&notify);
1322 if (!message && !notify)
H A DMenuItem.cpp594 bool notify = false; local
595 uint32 kind = InvokeKind(&notify);
600 if (message == NULL && !notify)
/haiku/src/add-ons/kernel/network/devices/ethernet/
H A Dethernet.cpp60 update_link_state(ethernet_device *device, bool notify = true)
95 if (notify)
/haiku/headers/private/net/
H A Dnet_socket.h91 status_t (*notify)(net_socket* socket, uint8 event, int32 value); member in struct:net_socket_module_info
/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...]
H A DUnixDatagramEndpoint.cpp298 gSocketModule->notify(targetEndpoint->socket, B_SELECT_READ, readable);
305 gSocketModule->notify(socket, B_SELECT_WRITE, writable);
392 gSocketModule->notify(socket, B_SELECT_READ, readable);
402 gSocketModule->notify(originEndpoint->socket, B_SELECT_WRITE, writable);
/haiku/src/system/kernel/debug/
H A Ddebug.cpp84 static void syslog_write(const char* text, int32 length, bool notify);
1202 // the syslog buffer without being allowed to notify us (e.g. in
1275 syslog_write(const char* text, int32 length, bool notify) argument
1304 if (notify)
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DVolume.cpp981 Volume::_AddPackageContent(Package* package, bool notify) argument
1004 error = _AddPackageContentRootNode(package, node, notify);
1006 _RemovePackageContent(package, node, notify);
1017 bool notify)
1029 _RemovePackageContentRootNode(package, node, NULL, notify);
1047 PackageNode* rootPackageNode, bool notify)
1057 status_t error = _AddPackageNode(directory, packageNode, notify, node);
1068 notify);
1118 PackageNode* rootPackageNode, PackageNode* endPackageNode, bool notify)
1158 directory->FindChild(packageNode->Name()), notify);
1016 _RemovePackageContent(Package* package, PackageNode* endNode, bool notify) argument
1046 _AddPackageContentRootNode(Package* package, PackageNode* rootPackageNode, bool notify) argument
1117 _RemovePackageContentRootNode(Package* package, PackageNode* rootPackageNode, PackageNode* endPackageNode, bool notify) argument
1178 _AddPackageNode(Directory* directory, PackageNode* packageNode, bool notify, Node*& _node) argument
1290 _RemovePackageNode(Directory* directory, PackageNode* packageNode, Node* node, bool notify) argument
[all...]
/haiku/src/libs/icon/shape/
H A DVectorPath.cpp897 bool notify = false;
904 notify = true;
919 notify = true;
935 notify = true;
939 if (notify)
/haiku/src/apps/cortex/NodeManager/
H A DNodeRef.cpp180 // notify
183 notify(&m);
314 notify(&m);
1377 notify(&m);
1641 notify(&m);
H A DNodeManager.cpp1492 notify(message);
1497 notify(message);
1502 notify(message);
1507 notify(message);
1512 notify(message);
1546 notify(&m);
2173 // find & remove any 'stuck' connections; notify any observers
2196 // +++++ don't notify if no stuck connections were found
2197 notify(&message);
H A DNodeGroup.cpp241 notify(&m);
339 notify(&m);
434 // +++++ notify [e.moon 11oct99]
516 // +++++ notify [e.moon 11oct99]
653 // notify
660 notify(&m);
859 notify(&m);
1237 // notify observers
1346 // notify observers
1353 // State transition; notify listener
[all...]

Completed in 177 milliseconds

123