Lines Matching refs:wp
77 WIN *wp; in gs_new_win() local
79 CALLOC_NOMSG(NULL, wp, WIN *, 1, sizeof(*wp)); in gs_new_win()
80 if (!wp) in gs_new_win()
84 LIST_INIT(&wp->ecq); in gs_new_win()
85 LIST_INSERT_HEAD(&wp->ecq, &wp->excmd, q); in gs_new_win()
87 TAILQ_INSERT_TAIL(&gp->dq, wp, q); in gs_new_win()
88 TAILQ_INIT(&wp->scrq); in gs_new_win()
90 TAILQ_INIT(&wp->dcb_store.textq); in gs_new_win()
91 LIST_INIT(&wp->cutq); in gs_new_win()
93 wp->gp = gp; in gs_new_win()
95 return wp; in gs_new_win()
105 win_end(WIN *wp) in win_end() argument
109 TAILQ_REMOVE(&wp->gp->dq, wp, q); in win_end()
111 if (wp->ccl_sp != NULL) { in win_end()
112 (void)file_end(wp->ccl_sp, NULL, 1); in win_end()
113 (void)screen_end(wp->ccl_sp); in win_end()
115 while ((sp = TAILQ_FIRST(&wp->scrq)) != NULL) in win_end()
119 if (wp->i_event != NULL) in win_end()
120 free(wp->i_event); in win_end()
123 cut_close(wp); in win_end()
126 (void)text_lfree(&wp->dcb_store.textq); in win_end()
130 if (wp->tmp_bp != NULL) in win_end()
131 free(wp->tmp_bp); in win_end()
148 WIN *wp; in gs_end() local
151 while ((wp = TAILQ_FIRST(&gp->dq)) != NULL) in gs_end()
152 (void)win_end(wp); in gs_end()