/freebsd/contrib/nvi/common/ |
H A D | options_f.c | 100 o_set(sp, O_LINES, 0, NULL, *valp); in f_lines() 106 o_set(sp, O_WINDOW, 0, NULL, 1); in f_lines() 107 o_set(sp, O_WINDOW, OS_DEF, NULL, 1); in f_lines() 114 o_set(sp, O_WINDOW, 0, NULL, *valp - 1); in f_lines() 115 o_set(sp, O_WINDOW, OS_DEF, NULL, *valp - 1); in f_lines() 155 } else if (o_set(sp, offset, OS_STRDUP, str, 0)) in f_print()
|
H A D | options.h | 54 #define O_CLR(sp, o) o_set(sp, o, 0, NULL, 0) 55 #define O_SET(sp, o) o_set(sp, o, 0, NULL, 1) 64 #define O_D_CLR(sp, o) o_set(sp, o, OS_DEF, NULL, 0) 65 #define O_D_SET(sp, o) o_set(sp, o, OS_DEF, NULL, 1)
|
H A D | options.c | 334 if (o_set(sp, O_TERM, 0, NULL, GO_TERM)) in opts_init() 337 if (o_set(sp, O_LINES, 0, NULL, GO_LINES)) in opts_init() 340 if (o_set(sp, O_COLUMNS, 0, NULL, GO_COLUMNS)) in opts_init() 343 if (o_set(sp, O_SECURE, 0, NULL, GO_SECURE)) in opts_init() 433 o_set(sp, cnt, OS_DEF, NULL, O_VAL(sp, cnt)); in opts_init() 436 if (O_STR(sp, cnt) != NULL && o_set(sp, cnt, in opts_init() 695 if (o_set(sp, offset, 0, NULL, value)) in opts_set() 741 if (o_set(sp, offset, OS_STRDUP, np, 0)) in opts_set() 760 o_set(SCR *sp, int opt, u_int flags, char *str, u_long val) in o_set() function 1131 o_set(sp, cnt, OS_NOFREE | OS_STR, NULL, 0); in opts_copy() [all …]
|
H A D | conv.c | 354 o_set(sp, O_INPUTENCODING, OS_STRDUP, codeset(), 0); in conv_init()
|
H A D | exf.c | 1245 o_set(sp, O_FILEENCODING, OS_STRDUP, "utf-8", 0); 1248 o_set(sp, O_FILEENCODING, OS_STRDUP, codeset(), 0);
|
/freebsd/contrib/nvi/ex/ |
H A D | ex_edit.c | 136 o_set(new, O_FILEENCODING, OS_STRDUP, in ex_N_edit()
|
/freebsd/contrib/nvi/vi/ |
H A D | v_ex.c | 529 o_set(new, O_FILEENCODING, OS_STRDUP, codeset(), 0); in v_ecl()
|
/freebsd/usr.bin/vi/ |
H A D | extern.h | 386 int o_set(SCR *, int, u_int, char *, u_long);
|