Lines Matching refs:ovip
35 VI_PRIVATE *ovip, *nvip; in v_screen_copy() local
47 ovip = VIP(orig); in v_screen_copy()
50 if (ovip->rep_len != 0) { in v_screen_copy()
51 MALLOC_RET(orig, nvip->rep, ovip->rep_len); in v_screen_copy()
52 memmove(nvip->rep, ovip->rep, ovip->rep_len); in v_screen_copy()
53 nvip->rep_len = ovip->rep_len; in v_screen_copy()
57 if (ovip->mcs != NULL && (nvip->mcs = in v_screen_copy()
58 v_wstrdup(sp, ovip->mcs, STRLEN(ovip->mcs))) == NULL) in v_screen_copy()
62 if (ovip->ps != NULL && (nvip->ps = in v_screen_copy()
63 v_strdup(sp, ovip->ps, strlen(ovip->ps))) == NULL) in v_screen_copy()
66 nvip->lastckey = ovip->lastckey; in v_screen_copy()
67 nvip->csearchdir = ovip->csearchdir; in v_screen_copy()
69 nvip->srows = ovip->srows; in v_screen_copy()