| /src/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 | 1579 isp_handle_platform_srr(ispsoftc_t *isp, isp_notify_t *notify) in isp_handle_platform_srr() argument 1581 in_fcentry_24xx_t *inot = notify->nt_lreserved; in isp_handle_platform_srr() 1583 uint32_t tag = notify->nt_tagval & 0xffffffff; in isp_handle_platform_srr() 1585 atp = isp_find_atpd(isp, notify->nt_channel, tag); in isp_handle_platform_srr() 1779 isp_handle_platform_target_tmf(ispsoftc_t *isp, isp_notify_t *notify) in isp_handle_platform_target_tmf() argument 1788 …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() 1789 notify->nt_sid, (unsigned long long) notify->nt_tagval, notify->nt_channel, notify->nt_lun); in isp_handle_platform_target_tmf() 1790 if (notify->nt_lun == LUN_ANY) { in isp_handle_platform_target_tmf() 1791 if (notify->nt_tagval == TAG_ANY) { in isp_handle_platform_target_tmf() 1794 atp = isp_find_atpd(isp, notify->nt_channel, in isp_handle_platform_target_tmf() [all …]
|
| /src/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 …]
|
| /src/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);
|
| /src/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 …]
|
| /src/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 …]
|
| /src/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 …]
|
| /src/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()
|
| /src/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointList.cpp | 33 break_id_t BreakpointList::Add(BreakpointSP &bp_sp, bool notify) { in Add() argument 41 if (notify) in Add() 47 bool BreakpointList::Remove(break_id_t break_id, bool notify) { in Remove() argument 57 if (notify) in Remove() 84 void BreakpointList::RemoveAll(bool notify) { in RemoveAll() argument 88 if (notify) { in RemoveAll() 96 void BreakpointList::RemoveAllowed(bool notify) { in RemoveAllowed() argument 102 if (notify) in RemoveAllowed()
|
| 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() argument 174 if (notify) { in Remove() 231 void WatchpointList::RemoveAll(bool notify) { in RemoveAll() argument 233 if (notify) { in RemoveAll()
|
| /src/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);
|
| /src/lib/librtld_db/ |
| H A D | rtld_db.c | 93 rd_event_addr(rd_agent_t *rdap, rd_event_e event, rd_notify_t *notify) in rd_event_addr() argument 98 notify); in rd_event_addr() 105 notify->type = RD_NOTIFY_BPT; in rd_event_addr() 106 notify->u.bptaddr = rdap->rda_preinit_addr; in rd_event_addr() 109 notify->type = RD_NOTIFY_BPT; in rd_event_addr() 110 notify->u.bptaddr = rdap->rda_postinit_addr; in rd_event_addr() 113 notify->type = RD_NOTIFY_BPT; in rd_event_addr() 114 notify->u.bptaddr = rdap->rda_dlactivity_addr; in rd_event_addr()
|
| /src/sys/dev/acpi_support/ |
| H A D | acpi_asus.c | 139 static void acpi_asus_lcdd_notify(ACPI_HANDLE h, UINT32 notify, 436 static void acpi_asus_eeepc_notify(ACPI_HANDLE h, UINT32 notify, void *context); 514 static void acpi_asus_notify(ACPI_HANDLE h, UINT32 notify, void *context); 1182 acpi_asus_notify(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_asus_notify() argument 1193 if ((notify & ~0x10) <= 15) { in acpi_asus_notify() 1194 sc->s_brn = notify & ~0x10; in acpi_asus_notify() 1196 } else if ((notify & ~0x20) <= 15) { in acpi_asus_notify() 1197 sc->s_brn = notify & ~0x20; in acpi_asus_notify() 1199 } else if (notify == 0x33) { in acpi_asus_notify() 1202 } else if (notify == 0x34) { in acpi_asus_notify() [all …]
|
| H A D | acpi_asus_wmi.c | 290 UINT32 notify; member 383 static int acpi_asus_wmi_get_event_code(device_t wmi_dev, UINT32 notify, 385 static void acpi_asus_wmi_notify(ACPI_HANDLE h, UINT32 notify, void *context); 797 acpi_asus_wmi_get_event_code(device_t wmi_dev, UINT32 notify, int *code) in acpi_asus_wmi_get_event_code() argument 803 if (ACPI_FAILURE(ACPI_WMI_GET_EVENT_DATA(wmi_dev, notify, &response))) in acpi_asus_wmi_get_event_code() 816 acpi_asus_wmi_push_evdev_event(struct evdev_dev *evdev, UINT32 notify) in acpi_asus_wmi_push_evdev_event() argument 822 if (acpi_asus_wmi_evdev_map[i].notify == notify && in acpi_asus_wmi_push_evdev_event() 901 acpi_asus_wmi_notify(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_asus_wmi_notify() argument 907 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify); in acpi_asus_wmi_notify() 912 if (acpi_asus_wmi_get_event_code(sc->wmi_dev, notify, &code) in acpi_asus_wmi_notify() [all …]
|
| /src/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() 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) in acpi_video_vo_notify_handler() argument 791 switch (notify) { in acpi_video_vo_notify_handler() [all …]
|
| H A D | acpi_pci.c | 369 acpi_pci_bus_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_pci_bus_notify_handler() argument 375 switch (notify) { in acpi_pci_bus_notify_handler() 382 device_printf(dev, "unknown notify %#x\n", notify); in acpi_pci_bus_notify_handler() 388 acpi_pci_device_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) in acpi_pci_device_notify_handler() argument 396 switch (notify) { in acpi_pci_device_notify_handler() 433 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()
|
| /src/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";
|
| /src/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
|
| /src/sys/dev/vmgenc/ |
| H A D | vmgenc_acpi.c | 121 vmgenc_notify(ACPI_HANDLE h, UINT32 notify, void *context) in vmgenc_notify() argument 126 switch (notify) { in vmgenc_notify() 135 device_printf(dev, "unknown notify %#x\n", notify); in vmgenc_notify()
|
| /src/contrib/llvm-project/lldb/source/API/ |
| H A D | SBWatchpoint.cpp | 142 const bool notify = true; in SetEnabled() local 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()
|
| /src/libexec/comsat/ |
| H A D | comsat.c | 64 static void notify(struct utmpx *, char[], off_t, int); 133 notify(utp, buf, offset, folder); in mailfor() 140 notify(struct utmpx *utp, char file[], off_t offset, int folder) in notify() function
|