Searched refs:ui (Results 1 – 4 of 4) sorted by relevance
| /xnu-11215/osfmk/kdp/ |
| H A D | kdp_udp.c | 567 bcopy((char *)&pkt.data[pkt.off], (char *)ui, sizeof(*ui)); in kdp_reply() 571 ui->ui_next = ui->ui_prev = 0; in kdp_reply() 572 ui->ui_x1 = 0; in kdp_reply() 576 ui->ui_src = ui->ui_dst; in kdp_reply() 580 ui->ui_ulen = ui->ui_len; in kdp_reply() 583 bcopy((char *)ui, (char *)&pkt.data[pkt.off], sizeof(*ui)); in kdp_reply() 645 bcopy((char *)&pkt.data[pkt.off], (char *)ui, sizeof(*ui)); in kdp_send() 649 ui->ui_next = ui->ui_prev = 0; in kdp_send() 657 ui->ui_ulen = ui->ui_len; in kdp_send() 1538 ui->ui_next = ui->ui_prev = 0; in create_panic_header() [all …]
|
| /xnu-11215/bsd/netinet/ |
| H A D | udp_usrreq.c | 1541 struct udpiphdr *ui; in udp_output() local 1870 bzero(ui->ui_x1, sizeof(ui->ui_x1)); /* XXX still needed? */ in udp_output() 1871 ui->ui_pr = IPPROTO_UDP; in udp_output() 1872 ui->ui_src = laddr; in udp_output() 1873 ui->ui_dst = faddr; in udp_output() 1874 ui->ui_sport = lport; in udp_output() 1875 ui->ui_dport = fport; in udp_output() 1909 ui->ui_sum = in_pseudo(ui->ui_src.s_addr, ui->ui_dst.s_addr, in udp_output() 1914 ui->ui_sum = 0; in udp_output() 1925 KERNEL_DEBUG(DBG_LAYER_OUT_END, ui->ui_dport, ui->ui_sport, in udp_output() [all …]
|
| H A D | ip_input.c | 1261 struct udpiphdr *__single ui; in ip_input_first_pass() local 1271 ui = mtod(m, struct udpiphdr *); in ip_input_first_pass() 1272 if (ntohs(ui->ui_dport) == IPPORT_BOOTPC) { in ip_input_first_pass() 1381 struct udpiphdr *__single ui; in ip_input_check_interface() local 1395 ui = mtod(m, struct udpiphdr *); in ip_input_check_interface() 1396 if (ntohs(ui->ui_dport) == IPPORT_BOOTPC) { in ip_input_check_interface()
|
| /xnu-11215/bsd/vfs/ |
| H A D | vfs_subr.c | 4283 struct unmount_info ui; in vfs_unmountall() local 4295 ui.u_errs = ui.u_busy = ui.u_count = 0; in vfs_unmountall() 4296 ui.u_only_non_system = only_non_system; in vfs_unmountall() 4298 vfs_iterate(VFS_ITERATE_CB_DROPREF | VFS_ITERATE_TAIL_FIRST, unmount_callback, &ui); in vfs_unmountall() 4303 if (ui.u_busy > 0) { // Busy mounts - wait & retry in vfs_unmountall() 4310 } else if (ui.u_count < mounts) { in vfs_unmountall()
|