Symbol: edit
libexec/diff3prog/diff3prog.c
126
int edit(struct diff *, int, int);
libexec/diff3prog/diff3prog.c
370
j = edit(d1, dup, j);
sbin/camcontrol/modeedit.c
811
int edit, int binary, int retry_count, int timeout)
sbin/camcontrol/modeedit.c
815
if (edit && binary)
sbin/camcontrol/modeedit.c
822
if (load_format(pagedb_path, page) != 0 && (edit || verbose)) {
sbin/camcontrol/modeedit.c
833
if (!edit) {
sbin/camcontrol/modeedit.c
844
if (edit) {
sbin/disklabel32/disklabel.c
256
error = edit(lp, f);
sbin/disklabel32/disklabel.c
96
int edit(struct disklabel32 *, int);
sbin/disklabel64/disklabel64.c
106
static int edit(struct disklabel64 *, int);
sbin/disklabel64/disklabel64.c
260
error = edit(lp, f);
usr.bin/chpass/chpass.c
203
pw = edit(pw_tempname(), old_pw);
usr.bin/chpass/chpass.h
67
struct passwd *edit(const char *, struct passwd *);
usr.bin/mail/cmd3.c
283
if (edit) {
usr.bin/mail/edit.c
134
char *edit, tempname[PATHSIZE];
usr.bin/mail/edit.c
173
if ((edit = value(type == 'e' ? "EDITOR" : "VISUAL")) == NULL)
usr.bin/mail/edit.c
174
edit = type == 'e' ? _PATH_EX : _PATH_VI;
usr.bin/mail/edit.c
175
if (run_command(edit, 0, -1, -1, tempname, NULL, NULL) < 0) {
usr.bin/mail/glob.h
48
EXTERN int edit; /* Indicates editing a file */
usr.bin/mail/lex.c
121
edit = isedit;
usr.bin/mail/lex.c
145
if ((checkmode || !edit) && msgCount == 0) {
usr.bin/mail/quit.c
87
if (edit) {
usr.sbin/pppctl/pppctl.c
395
EditLine *edit;
usr.sbin/pppctl/pppctl.c
409
edit = el_init("pppctl", stdin, stdout, stderr);
usr.sbin/pppctl/pppctl.c
410
el_source(edit, NULL);
usr.sbin/pppctl/pppctl.c
411
el_set(edit, EL_PROMPT, GetPrompt);
usr.sbin/pppctl/pppctl.c
414
el_set(edit, EL_EDITOR, "vi");
usr.sbin/pppctl/pppctl.c
416
el_set(edit, EL_EDITOR, "emacs");
usr.sbin/pppctl/pppctl.c
418
el_set(edit, EL_SIGNAL, 1);
usr.sbin/pppctl/pppctl.c
419
el_set(edit, EL_HIST, history, (const char *)hist);
usr.sbin/pppctl/pppctl.c
420
while ((l = smartgets(edit, &len, fd))) {
usr.sbin/pppctl/pppctl.c
428
el_end(edit);