Symbol: o_set
usr.bin/vi/common/options.c
1062
o_set(sp, cnt, OS_NOFREE | OS_STR, NULL, 0);
usr.bin/vi/common/options.c
1063
o_set(sp, cnt, OS_DEF | OS_NOFREE | OS_STR, NULL, 0);
usr.bin/vi/common/options.c
1068
if (o_set(sp, cnt, OS_NOFREE | OS_STRDUP, O_STR(sp, cnt), 0)) {
usr.bin/vi/common/options.c
1069
o_set(sp, cnt, OS_DEF | OS_NOFREE | OS_STR, NULL, 0);
usr.bin/vi/common/options.c
1074
if (O_D_STR(sp, cnt) != NULL && o_set(sp, cnt,
usr.bin/vi/common/options.c
282
if (o_set(sp, O_TERM, 0, NULL, GO_TERM)) {
usr.bin/vi/common/options.c
287
if (o_set(sp, O_LINES, 0, NULL, GO_LINES)) {
usr.bin/vi/common/options.c
292
if (o_set(sp, O_COLUMNS, 0, NULL, GO_COLUMNS)) {
usr.bin/vi/common/options.c
297
if (o_set(sp, O_SECURE, 0, NULL, GO_SECURE)) {
usr.bin/vi/common/options.c
370
o_set(sp, optindx, OS_DEF, NULL, O_VAL(sp, optindx));
usr.bin/vi/common/options.c
373
if (O_STR(sp, optindx) != NULL && o_set(sp, optindx,
usr.bin/vi/common/options.c
613
if (o_set(sp, offset, 0, NULL, value)) {
usr.bin/vi/common/options.c
631
if (o_set(sp, offset, 0, NULL, value))
usr.bin/vi/common/options.c
660
if (o_set(sp, offset, OS_STRDUP, sep, 0)) {
usr.bin/vi/common/options.c
678
if (o_set(sp, offset, OS_STRDUP, sep, 0))
usr.bin/vi/common/options.h
58
#define O_CLR(sp, o) o_set((sp), (o), 0, NULL, 0)
usr.bin/vi/common/options.h
59
#define O_SET(sp, o) o_set((sp), (o), 0, NULL, 1)
usr.bin/vi/common/options.h
68
#define O_D_CLR(sp, o) o_set((sp), (o), OS_DEF, NULL, 0)
usr.bin/vi/common/options.h
69
#define O_D_SET(sp, o) o_set((sp), (o), OS_DEF, NULL, 1)
usr.bin/vi/common/options_f.c
102
o_set(sp, O_LINES, 0, NULL, *valp);
usr.bin/vi/common/options_f.c
108
o_set(sp, O_WINDOW, 0, NULL, 1);
usr.bin/vi/common/options_f.c
109
o_set(sp, O_WINDOW, OS_DEF, NULL, 1);
usr.bin/vi/common/options_f.c
116
o_set(sp, O_WINDOW, 0, NULL, *valp - 1);
usr.bin/vi/common/options_f.c
117
o_set(sp, O_WINDOW, OS_DEF, NULL, *valp - 1);
usr.bin/vi/include/com_extern.h
61
int o_set(SCR *, int, u_int, char *, u_long);