/freebsd/sys/dev/isp/ |
H A D | isp_target.c | 311 isp_notify_t notify; in isp_target_async() local 313 ISP_MEMZERO(¬ify, sizeof (isp_notify_t)); in isp_target_async() 314 notify.nt_hba = isp; in isp_target_async() 315 notify.nt_wwn = INI_ANY; in isp_target_async() 316 notify.nt_nphdl = NIL_HANDLE; in isp_target_async() 317 notify.nt_sid = PORT_ANY; in isp_target_async() 318 notify.nt_did = PORT_ANY; in isp_target_async() 319 notify.nt_tgt = TGT_ANY; in isp_target_async() 320 notify.nt_channel = bus; in isp_target_async() 321 notify.nt_lun = LUN_ANY; in isp_target_async() [all …]
|
H A D | isp_freebsd.c | 1560 isp_handle_platform_srr(ispsoftc_t *isp, isp_notify_t *notify) in isp_handle_platform_srr() argument 1562 in_fcentry_24xx_t *inot = notify->nt_lreserved; in isp_handle_platform_srr() 1564 uint32_t tag = notify->nt_tagval & 0xffffffff; in isp_handle_platform_srr() 1566 atp = isp_find_atpd(isp, notify->nt_channel, tag); in isp_handle_platform_srr() 1784 isp_handle_platform_target_tmf(ispsoftc_t *isp, isp_notify_t *notify) in isp_handle_platform_target_tmf() argument 1793 …LOGTDEBUG0, "%s: code 0x%x sid 0x%x tagval 0x%016llx chan %d lun %jx", __func__, notify->nt_ncode, in isp_handle_platform_target_tmf() 1794 notify->nt_sid, (unsigned long long) notify->nt_tagval, notify->nt_channel, notify->nt_lun); in isp_handle_platform_target_tmf() 1795 if (notify->nt_lun == LUN_ANY) { in isp_handle_platform_target_tmf() 1796 if (notify->nt_tagval == TAG_ANY) { in isp_handle_platform_target_tmf() 1799 atp = isp_find_atpd(isp, notify->nt_channel, in isp_handle_platform_target_tmf() [all …]
|
/freebsd/contrib/bsnmp/snmp_target/ |
H A D | target_snmp.c | 525 struct target_notify *notify; in op_snmp_notify() local 529 if ((notify = target_get_notify(&val->var, sub)) == NULL) in op_snmp_notify() 534 if ((notify = target_get_next_notify(&val->var, sub)) == NULL) in op_snmp_notify() 536 target_append_index(&val->var, sub, notify->name); in op_snmp_notify() 540 if ((notify = target_get_notify(&val->var, sub)) == NULL && in op_snmp_notify() 545 if (notify != NULL) { in op_snmp_notify() 547 notify->type == StorageType_readOnly) in op_snmp_notify() 555 ctx->scratch->int1 = strlen(notify->taglist) + 1; in op_snmp_notify() 559 strlcpy(ctx->scratch->ptr1, notify->taglist, in op_snmp_notify() 561 memcpy(notify->taglist, val->v.octetstring.octets, in op_snmp_notify() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | PathMappingList.h | 39 void Append(llvm::StringRef path, llvm::StringRef replacement, bool notify); 41 void Append(const PathMappingList &rhs, bool notify); 46 bool notify); 48 void Clear(bool notify); 69 uint32_t insert_idx, bool notify); 71 bool Remove(size_t index, bool notify); 73 bool Remove(ConstString path, bool notify); 75 bool Replace(llvm::StringRef path, llvm::StringRef replacement, bool notify); 78 uint32_t index, bool notify);
|
H A D | ThreadList.h | 75 bool SetSelectedThreadByID(lldb::tid_t tid, bool notify = false); 77 bool SetSelectedThreadByIndexID(uint32_t index_id, bool notify = false);
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | PathMappingList.cpp | 63 bool notify) { in Append() argument 67 if (notify && m_callback) in Append() 71 void PathMappingList::Append(const PathMappingList &rhs, bool notify) { in Append() argument 78 if (notify && m_callback) in Append() 84 llvm::StringRef replacement, bool notify) { in AppendUnique() argument 93 Append(path, replacement, notify); in AppendUnique() 98 uint32_t index, bool notify) { in Insert() argument 108 if (notify && m_callback) in Insert() 113 uint32_t index, bool notify) { in Replace() argument 119 if (notify && m_callback) in Replace() [all …]
|
/freebsd/contrib/bsnmp/snmpd/ |
H A D | trap.c | 826 target_next_notify(struct target_notify *notify) in target_next_notify() argument 828 if (notify == NULL) in target_next_notify() 831 return (SLIST_NEXT(notify, tn)); in target_next_notify() 838 struct target_notify *notify, *temp, *prev; in target_new_notify() local 840 SLIST_FOREACH(notify, &target_notifylist, tn) in target_new_notify() 841 if (strcmp(nname, notify->name) == 0) in target_new_notify() 844 if ((notify = (struct target_notify *)malloc(sizeof(*notify))) == NULL) in target_new_notify() 847 memset(notify, 0, sizeof(*notify)); in target_new_notify() 848 strlcpy(notify->name, nname, sizeof(notify->name)); in target_new_notify() 852 SLIST_INSERT_HEAD(&target_notifylist, notify, tn); in target_new_notify() [all …]
|
/freebsd/sys/dev/xen/gntdev/ |
H A D | gntdev.c | 225 static void notify(struct notify_data *notify, vm_page_t page); 237 struct notify_data *notify; member 267 if (gref->notify) { in gref_list_dtor() 268 notify(gref->notify, gref->page); in gref_list_dtor() 288 if (gref->notify) in gref_list_dtor() 289 free(gref->notify, M_GNTDEV); in gref_list_dtor() 367 grefs[i].notify = NULL; in gntdev_alloc_gref() 482 struct notify_data *notify; member 518 if (gmap->notify) in gmap_list_dtor() 519 free(gmap->notify, M_GNTDEV); in gmap_list_dtor() [all …]
|
/freebsd/usr.sbin/clear_locks/ |
H A D | clear_locks.c | 43 nlm4_notify notify; in main() local 56 notify.name = hostname; in main() 57 notify.state = 0; in main() 59 (xdrproc_t) xdr_nlm4_notify, (void *) ¬ify, in main()
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointList.cpp | 33 break_id_t BreakpointList::Add(BreakpointSP &bp_sp, bool notify) { in Add() 41 if (notify) in Add() 47 bool BreakpointList::Remove(break_id_t break_id, bool notify) { in Remove() 57 if (notify) in Remove() 84 void BreakpointList::RemoveAll(bool notify) { in RemoveAll() 88 if (notify) { in RemoveAll() 96 void BreakpointList::RemoveAllowed(bool notify) { in RemoveAllowed() 102 if (notify) in RemoveAllowed() 30 Add(BreakpointSP & bp_sp,bool notify) Add() argument 44 Remove(break_id_t break_id,bool notify) Remove() argument 81 RemoveAll(bool notify) RemoveAll() argument 93 RemoveAllowed(bool notify) RemoveAllowed() argument
|
H A D | WatchpointList.cpp | 20 lldb::watch_id_t WatchpointList::Add(const WatchpointSP &wp_sp, bool notify) { in Add() argument 24 if (notify) { in Add() 169 bool WatchpointList::Remove(lldb::watch_id_t watch_id, bool notify) { in Remove() 174 if (notify) { in Remove() 231 void WatchpointList::RemoveAll(bool notify) { in RemoveAll() 233 if (notify) { in RemoveAll() 167 Remove(lldb::watch_id_t watch_id,bool notify) Remove() argument 228 RemoveAll(bool notify) RemoveAll() argument
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | BreakpointList.h | 38 lldb::break_id_t Add(lldb::BreakpointSP &bp_sp, bool notify); 91 bool Remove(lldb::break_id_t breakID, bool notify); 113 void RemoveAll(bool notify); 118 void RemoveAllowed(bool notify);
|
H A D | WatchpointList.h | 53 lldb::watch_id_t Add(const lldb::WatchpointSP &wp_sp, bool notify); 141 bool Remove(lldb::watch_id_t watchID, bool notify); 185 void RemoveAll(bool notify);
|
/freebsd/sys/dev/acpica/ |
H A D | acpi_lid.c | 72 static void acpi_lid_notify_handler(ACPI_HANDLE h, UINT32 notify, 251 acpi_lid_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_lid_notify_handler() argument 255 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify); in acpi_lid_notify_handler() 258 switch (notify) { in acpi_lid_notify_handler() 264 device_printf(sc->lid_dev, "unknown notify %#x\n", notify); in acpi_lid_notify_handler()
|
H A D | acpi_button.c | 68 static void acpi_button_notify_handler(ACPI_HANDLE h, UINT32 notify, 265 acpi_button_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_button_notify_handler() argument 272 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify); in acpi_button_notify_handler() 275 switch (notify) { in acpi_button_notify_handler() 283 device_printf(sc->button_dev, "unknown notify %#x\n", notify); in acpi_button_notify_handler()
|
H A D | acpi_video.c | 210 UINT32 notify; member 226 acpi_video_push_evdev_event(struct evdev_dev *evdev, UINT32 notify) in acpi_video_push_evdev_event() argument 235 if (acpi_video_evdev_map[i].notify == notify) { in acpi_video_push_evdev_event() 436 acpi_video_notify_handler(ACPI_HANDLE handle, UINT32 notify, void *context) in acpi_video_notify_handler() argument 445 switch (notify) { in acpi_video_notify_handler() 488 device_printf(sc->device, "unknown notify event 0x%x\n", in acpi_video_notify_handler() 489 notify); in acpi_video_notify_handler() 492 (void *)(uintptr_t)notify); in acpi_video_notify_handler() 495 acpi_video_push_evdev_event(sc->evdev, notify); in acpi_video_notify_handler() 781 acpi_video_vo_notify_handler(ACPI_HANDLE handle,UINT32 notify,void * context) acpi_video_vo_notify_handler() argument [all...] |
H A D | acpi_pci.c | 345 acpi_pci_bus_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_pci_bus_notify_handler() argument 351 switch (notify) { in acpi_pci_bus_notify_handler() 358 device_printf(dev, "unknown notify %#x\n", notify); in acpi_pci_bus_notify_handler() 364 acpi_pci_device_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_pci_device_notify_handler() argument 372 switch (notify) { in acpi_pci_device_notify_handler() 404 device_printf(dev, "unknown notify %#x for %s\n", notify, in acpi_pci_device_notify_handler()
|
H A D | acpi_acad.c | 122 acpi_acad_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_acad_notify_handler() argument 127 switch (notify) { in acpi_acad_notify_handler() 135 device_printf(dev, "unknown notify %#x\n", notify); in acpi_acad_notify_handler()
|
/freebsd/sbin/devd/ |
H A D | devd.conf | 93 action "/etc/rc.suspend acpi $notify"; 98 action "/etc/rc.resume acpi $notify"; 128 action "/etc/acpi_ac $notify";
|
/freebsd/sys/dev/ice/ |
H A D | irdma_if.m | 36 * be called from the ice driver to notify the RDMA client driver of device 47 * Called by the ice driver during attach to notify the RDMA client driver 59 * Called by the ice driver during the if_init routine to notify the RDMA 71 * Called by the ice driver during the if_stop routine to notify the RDMA 83 * Called by the ice driver during detach to notify the RDMA client driver 97 * Called by the ice driver when link status changes to notify the RDMA client
|
/freebsd/sys/dev/vmgenc/ |
H A D | vmgenc_acpi.c | 120 vmgenc_notify(ACPI_HANDLE h, UINT32 notify, void *context) in vmgenc_notify() argument 125 switch (notify) { in vmgenc_notify() 134 device_printf(dev, "unknown notify %#x\n", notify); in vmgenc_notify()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBWatchpoint.cpp | 142 const bool notify = true; in SetEnabled() 145 process_sp->EnableWatchpoint(watchpoint_sp, notify); in SetEnabled() 147 process_sp->DisableWatchpoint(watchpoint_sp, notify); in SetEnabled() 149 watchpoint_sp->SetEnabled(enabled, notify); in SetEnabled() 148 const bool notify = true; SetEnabled() local
|
/freebsd/libexec/comsat/ |
H A D | comsat.c | 64 static void notify(struct utmpx *, char[], off_t, int); 138 notify(utp, file, offset, folder); in mailfor() 145 notify(struct utmpx *utp, char file[], off_t offset, int folder) in notify() function
|
/freebsd/contrib/unbound/contrib/ |
H A D | unbound_portable.service.in | 28 Type=notify 48 BindPaths=/run/systemd/notify
|
/freebsd/sys/dev/acpi_support/ |
H A D | acpi_panasonic.c | 91 static void acpi_panasonic_notify(ACPI_HANDLE h, UINT32 notify, 478 acpi_panasonic_notify(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_panasonic_notify() argument 485 switch (notify) { in acpi_panasonic_notify() 499 device_printf(sc->dev, "unknown notify: %#x\n", notify); in acpi_panasonic_notify()
|