HomeSort by: relevance | last modified time | path
    Searched defs:notify (Results 1 - 25 of 48) sorted by relevancy

1 2

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_event.c 28 #include <core/notify.h>
60 struct nvkm_notify *notify; local in function:nvkm_event_send
67 list_for_each_entry(notify, &event->list, head) {
68 if (notify->index == index && (notify->types & types)) {
70 event->func->send(data, size, notify);
73 nvkm_notify_send(notify, data, size);
nouveau_nvkm_core_notify.c 29 #include <core/notify.h>
33 nvkm_notify_put_locked(struct nvkm_notify *notify)
35 if (notify->block++ == 0)
36 nvkm_event_put(notify->event, notify->types, notify->index);
40 nvkm_notify_put(struct nvkm_notify *notify)
42 struct nvkm_event *event = notify->event;
45 test_and_clear_bit(NVKM_NOTIFY_USER, &notify->flags)) {
47 nvkm_notify_put_locked(notify);
91 struct nvkm_notify *notify = container_of(work, typeof(*notify), work); local in function:nvkm_notify_work
    [all...]
nouveau_nvkm_core_client.c 31 #include <core/notify.h>
89 struct nvkm_client_notify *notify = container_of(n, typeof(*notify), n); local in function:nvkm_client_notify
90 struct nvkm_client *client = notify->client;
91 return client->ntfy(&notify->rep, notify->size, n->data, n->size);
97 if (index < ARRAY_SIZE(client->notify)) {
98 if (client->notify[index]) {
99 nvkm_notify_put(&client->notify[index]->n);
109 if (index < ARRAY_SIZE(client->notify)) {
137 struct nvkm_client_notify *notify; local in function:nvkm_client_notify_new
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/sw/
nv50.h 10 #include <core/notify.h>
15 struct nvkm_notify notify[4]; member in struct:nv50_sw_chan::__anon06a9b8480108
  /src/games/monop/
misc.c 70 notify(void) function in typeref:typename:void
  /src/sys/dev/
midictl.h 63 * midictl from a notify handler it has called are permitted. If you are
96 * notify function will be called with MIDICTL_CTLR, MIDICTL_RPN, or
101 * be needed if the update is to half of a 14-bit value). The notify function
110 * affected. The notify function is then called with evt = MIDICTL_RESET.
154 void *cookie; /* this value will be passed to notify */
155 midictl_notify *notify; member in struct:__anona7dcc7c50208
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
client.h 15 struct nvkm_client_notify *notify[32]; member in struct:nvkm_client
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
nouveau_nvif_notify.c 32 #include <nvif/notify.h>
38 nvif_notify_put_(struct nvif_notify *notify)
40 struct nvif_object *object = notify->object;
46 .ntfy.index = notify->index,
49 if (atomic_inc_return(&notify->putcnt) != 1)
56 nvif_notify_put(struct nvif_notify *notify)
58 if (likely(notify->object) &&
59 test_and_clear_bit(NVIF_NOTIFY_USER, &notify->flags)) {
60 int ret = nvif_notify_put_(notify);
61 if (test_bit(NVIF_NOTIFY_WORK, &notify->flags)
112 struct nvif_notify *notify = container_of(work, typeof(*notify), work); local in function:nvif_notify_work
119 struct nvif_notify *notify = NULL; local in function:nvif_notify
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/menu/
rootwindow.cpp 127 NMHDR *notify = reinterpret_cast <NMHDR *>(lparam); local in function:RootWindow::proc
136 switch(notify->code) {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_fence.h 8 #include <nvif/notify.h>
49 struct nvif_notify notify; member in struct:nouveau_fence_chan
nouveau_usif.c 34 #include <nvif/notify.h>
407 struct usif_notify *notify, *ntemp; local in function:usif_client_fini
409 list_for_each_entry_safe(notify, ntemp, &cli->notifys, head) {
410 usif_notify_dtor(notify);
nouveau_svm.c 32 #include <nvif/notify.h>
57 struct nvif_notify notify; member in struct:nouveau_svm::nouveau_svm_fault_buffer
579 nouveau_svm_fault(struct nvif_notify *notify)
582 container_of(notify, typeof(*buffer), notify);
796 nvif_notify_put(&buffer->notify);
807 return nvif_notify_get(&buffer->notify);
824 nvif_notify_fini(&buffer->notify);
853 &buffer->notify);
  /src/sys/external/bsd/drm2/dist/drm/xen/
xen_drm_front_evtchnl.c 353 int notify; local in function:xen_drm_front_evtchnl_flush
356 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&evtchnl->u.req.ring, notify);
357 if (notify)
  /src/libexec/comsat/
comsat.c 93 static void notify(const struct utmpentry *, off_t);
216 notify(ep, offset);
220 notify(const struct utmpentry *ep, off_t offset) function in typeref:typename:void
242 dsyslog(LOG_DEBUG, "notify %s on %s", ep->name, tty);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
wndw.h 10 #include <nvif/notify.h>
35 struct nvif_notify notify; member in struct:nv50_wndw
  /src/usr.bin/rdist/
docmd.c 66 static void notify(char *, char *, struct namelist *, time_t);
193 if (sc->sc_type == NOTIFY)
194 notify(tempfile, rhost, sc->sc_args, 0);
426 if (sc->sc_type == NOTIFY)
427 notify(tempfile, NULL, sc->sc_args, lastmod);
520 * Notify the list of people the changes that were made.
525 notify(char *file, char *rhost, struct namelist *to, time_t lmod) function in typeref:typename:void
540 printf("notify ");
567 error("notify: \"%s\" failed\n", _PATH_SENDMAIL);
  /src/sys/netinet/
raw_ip.c 239 void (*notify)(struct inpcb *, int))
252 (*notify)(inp, errno);
264 void (*notify)(struct inpcb *, int) = inpcb_rtchange; local in function:rip_ctlinput
274 notify = inpcb_rtchange, ip = 0;
281 ip->ip_src, ip->ip_p, errno, notify);
286 notify);
  /src/sys/arch/xen/include/
xenio.h 168 /* notify action */
169 struct ioctl_gntdev_grant_notify notify; member in struct:ioctl_gntdev_mmap_grant_ref
191 /* notify action */
192 struct ioctl_gntdev_grant_notify notify; member in struct:ioctl_gntdev_alloc_grant_ref
  /src/usr.sbin/rpc.lockd/
lockd_lock.c 626 * We fail to notify remote that the lock has been granted.
812 notify(const char *hostname, int state) function in typeref:typename:void
816 syslog(LOG_DEBUG, "notify from %s, new state %d", hostname, state);
830 "notify: unlock failed for %s (%d)",
  /src/sys/arch/xen/xen/
xenevt.c 627 struct ioctl_evtchn_notify *notify = addr; local in function:xenevt_fioctl
629 if (notify->port >= NR_EVENT_CHANNELS)
632 if (devevent[notify->port] != d) {
636 hypervisor_notify_via_evtchn(notify->port);
privcmd.c 82 struct ioctl_gntdev_grant_notify notify; member in struct:privcmd_object_gntref
90 struct ioctl_gntdev_grant_notify notify; member in struct:privcmd_object_gntalloc
665 if (mgr->notify.offset < 0 || mgr->notify.offset > mgr->count)
676 memcpy(&obj->u.gr.notify, &mgr->notify,
677 sizeof(obj->u.gr.notify));
735 if (mga->notify.offset < 0 || mga->notify.offset > mga->count)
747 memcpy(&obj->u.ga.notify, &mga->notify
    [all...]
  /src/sys/kern/
sys_mqueue.c 790 struct proc *notify = NULL; local in function:mq_send1
873 /* Check for the notify */
883 notify = mq->mq_notify_proc;
899 } else if (notify) {
900 /* Send the notify, if needed */
902 kpsignal(notify, &ksi, NULL);
  /src/sys/netinet6/
raw_ip6.c 274 void (*notify)(struct inpcb *, int) = in6pcb_rtchange; local in function:rip6_ctlinput
284 notify = in6pcb_rtchange, d = NULL;
350 * we need to call in6pcb_notify(), to notify path MTU
358 sin6tocsa(sa6_src), 0, cmd, cmdarg, notify);
  /src/sys/dev/ic/
aac.c 128 int notify; member in struct:__anonbc6a797a0108
1529 /* Notify the adapter if we know how. */
1530 if (aac_qinfo[queue].notify != 0)
1531 AAC_QNOTIFY(sc, aac_qinfo[queue].notify);
1547 int notify; local in function:aac_dequeue_fib
1562 notify = 0;
1564 notify = 1;
1610 /* If we have made the queue un-full, notify the adapter. */
1611 if (notify && (aac_qinfo[queue].notify != 0)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/virtio/
virtgpu_vq.c 324 bool notify = false; local in function:virtio_gpu_queue_ctrl_buffer_locked
328 return notify;
356 notify = virtqueue_kick_prepare(vq);
358 return notify;
369 bool notify; local in function:virtio_gpu_queue_fenced_ctrl_buffer
410 notify = virtio_gpu_queue_ctrl_buffer_locked(vgdev, vbuf, vout);
412 if (notify) {
451 bool notify; local in function:virtio_gpu_queue_cursor
474 notify = virtqueue_kick_prepare(vq);
479 if (notify)
    [all...]

Completed in 121 milliseconds

1 2