Searched refs:new_ptmx_ioctl (Results 1 - 1 of 1) sorted by relevance

/xnu-2422.115.4/bsd/kern/
H A Dtty_ptmx.c367 struct ptmx_ioctl *new_ptmx_ioctl; local
384 MALLOC(new_ptmx_ioctl, struct ptmx_ioctl *, sizeof(struct ptmx_ioctl), M_TTYS, M_WAITOK|M_ZERO);
385 if (new_ptmx_ioctl == NULL) {
389 if ((new_ptmx_ioctl->pt_tty = ttymalloc()) == NULL) {
390 FREE(new_ptmx_ioctl, M_TTYS);
409 ttyfree(new_ptmx_ioctl->pt_tty);
411 FREE(new_ptmx_ioctl, M_TTYS);
426 ttyfree(new_ptmx_ioctl->pt_tty);
428 FREE(new_ptmx_ioctl, M_TTYS);
438 _state.pis_ioctl_list[minor] = new_ptmx_ioctl;
[all...]

Completed in 18 milliseconds