Searched refs:lflag (Results 1 - 25 of 88) sorted by relevance

1234

/freebsd-current/usr.bin/hesinfo/
H A Dhesinfo.c34 int lflag = 0, errflg = 0, bflag = 0, c; local
40 lflag = 1;
68 if (lflag)
72 if (lflag)
82 if (lflag)
85 if (lflag)
91 if (lflag)
/freebsd-current/usr.sbin/lpr/lpd/
H A Dextern.h35 extern int lflag; /* in lpd.c */
/freebsd-current/usr.bin/number/
H A Dnumber.c69 static int lflag; variable
77 lflag = 0;
81 lflag = 1;
149 (void)printf("minus%s", lflag ? " " : "\n");
160 lflag ? " " : "",
161 lflag ? " " : "\n");
163 if (lflag)
171 (void)printf("zero%s", lflag ? "" : ".\n");
172 if (lflag)
189 name3[len / 3], lflag
[all...]
/freebsd-current/usr.bin/cmp/
H A Dextern.h44 extern bool bflag, lflag, sflag, xflag, zflag;
H A Dcmp.c50 bool bflag, lflag, sflag, xflag, zflag; variable
123 lflag = true;
136 lflag = true;
149 if (lflag && sflag)
/freebsd-current/sys/kern/
H A Dtty_compat.c275 tcflag_t lflag = tp->t_termios.c_lflag; local
299 if ((lflag&ICANON) == 0) {
301 if (iflag&(INPCK|ISTRIP|IXON) || lflag&(IEXTEN|ISIG)
315 if (lflag&ECHOE)
317 if (lflag&ECHOKE)
319 if (lflag&ECHOPRT)
321 if (lflag&ECHOCTL)
325 flags |= lflag&(ECHO|TOSTOP|FLUSHO|PENDIN|NOFLSH);
337 tcflag_t lflag = t->c_lflag; local
342 lflag
414 tcflag_t lflag = t->c_lflag; local
[all...]
/freebsd-current/tools/tools/netrate/tcpp/
H A Dtcpp.h31 extern int cflag, hflag, lflag, mflag, pflag, sflag, tflag;
H A Dtcpp.c52 int cflag, hflag, lflag, mflag, pflag, sflag, tflag, Mflag, Pflag; variable
134 lflag++;
197 /* If Mflag is specified, we must have the lflag for a local IP. */
198 if (Mflag > 1 && !lflag)
/freebsd-current/usr.bin/finger/
H A Dextern.h41 extern int lflag;
H A Dfinger.c78 int entries, gflag, lflag, pplan, oflag; variable
111 lflag = 1; /* long format */
194 if (!lflag)
207 lflag = 1; /* if -s not explicit, force -l */
210 if (lflag)
244 if (db && lflag)
/freebsd-current/bin/cp/
H A Dextern.h39 extern int Nflag, fflag, iflag, lflag, nflag, pflag, sflag, vflag;
/freebsd-current/usr.sbin/lpr/lpq/
H A Dlpq.c72 int ch, aflag, lflag; local
85 aflag = lflag = 0;
92 ++lflag;
126 displayq(pp, lflag);
152 displayq(pp, lflag);
/freebsd-current/libexec/getty/
H A Dsubr.c233 tcflag_t iflag, oflag, cflag, lflag; local
269 lflag = omode.c_lflag;
338 lflag = 0;
340 CLR(lflag, ICANON);
354 SET(lflag, ECHOE);
356 CLR(lflag, ECHOE);
359 SET(lflag, ECHOKE);
361 CLR(lflag, ECHOKE);
364 SET(lflag, ECHOPRT);
366 CLR(lflag, ECHOPR
[all...]
/freebsd-current/sbin/newfs/
H A Dnewfs.h87 extern int lflag; /* enable multilabel MAC for file system */
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_common.kshlib214 typeset is_set lflag dflag dsname gname gid uname uid opt str code tmp
226 [[ $cmd =~ "-l " ]] && lflag=1
228 if [[ -z $lflag && -z $dflag ]]; then
229 lflag=1
265 if [[ -n $lflag ]]; then
285 if [[ -n $lflag ]]; then
304 if [[ -n $lflag ]]; then
/freebsd-current/bin/kenv/
H A Dkenv.c43 static int lflag = 0; variable
74 lflag++;
109 if (lflag && sflag)
114 if (lflag)
/freebsd-current/usr.bin/morse/
H A Dmorse.c270 static int pflag, lflag, rflag, sflag, eflag; variable
323 lflag = 1;
343 if ((sflag && lflag) || (sflag && rflag) || (lflag && rflag)) {
346 if ((pflag || device) && (sflag || lflag)) {
415 if (lflag) {
474 else if (lflag)
497 if (lflag) {
/freebsd-current/crypto/openssh/
H A Dsftp.c455 parse_rename_flags(const char *cmd, char **argv, int argc, int *lflag) argument
463 *lflag = 0;
467 *lflag = 1;
479 parse_ls_flags(char **argv, int argc, int *lflag) argument
487 *lflag = LS_NAME_SORT;
491 *lflag &= ~VIEW_FLAGS;
492 *lflag |= LS_SHORT_VIEW;
495 *lflag &= ~SORT_FLAGS;
496 *lflag |= LS_SIZE_SORT;
499 *lflag |
847 do_ls_dir(struct sftp_conn *conn, const char *path, const char *strip_path, int lflag) argument
968 do_globbed_ls(struct sftp_conn *conn, const char *path, const char *strip_path, int lflag) argument
1341 parse_args(const char **cpp, int *ignore_errors, int *disable_echo, int *aflag, int *fflag, int *hflag, int *iflag, int *lflag, int *pflag, int *rflag, int *sflag, unsigned long *n_arg, char **path1, char **path2) argument
1556 int lflag = 0, pflag = 0, rflag = 0, sflag = 0; local
[all...]
/freebsd-current/bin/cpuset/
H A Dcpuset.c59 static int lflag; variable
329 lflag = 1;
367 if (argc || Cflag || lflag || nflag)
394 if (lflag) {
413 if ((!lflag && !nflag) && cflag)
415 if ((!lflag && !nflag) && !(Cflag || sflag))
442 if (lflag) {
/freebsd-current/usr.bin/ktrdump/
H A Dktrdump.c65 static int lflag; variable
137 lflag = 1;
271 if (lflag) {
358 if (lflag) {
379 if (lflag && !iflag) {
/freebsd-current/sbin/swapon/
H A Dswapon.c76 int sflag, lflag, late, hflag; local
79 sflag = lflag = late = hflag = 0;
133 lflag = 1;
215 if (lflag || sflag)
216 swaplist(lflag, sflag, hflag);
270 const char *aflag, *eflag, *lflag, *Tflag, *sflag; local
278 aflag = eflag = lflag = Tflag = "";
307 lflag = " -l ";
361 aflag, aalgo, eflag, ealgo, lflag, keylen_str, Tflag,
780 swaplist(int lflag, in argument
[all...]
/freebsd-current/sys/cddl/dev/dtrace/
H A Ddtrace_debug.c235 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
258 qflag = 0; lflag = 0; ladjust = 0; sharpflag = 0; neg = 0;
362 if (lflag) {
363 lflag = 0;
366 lflag = 1;
373 else if (lflag)
448 else if (lflag)
466 else if (lflag)
/freebsd-current/stand/libsa/
H A Dprintf.c263 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
293 qflag = 0; lflag = 0; ladjust = 0; sharpflag = 0; neg = 0;
397 if (lflag) {
398 lflag = 0;
401 lflag = 1;
408 else if (lflag)
487 else if (lflag)
505 else if (lflag)
/freebsd-current/libexec/rtld-elf/
H A Drtld_printf.c130 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
153 qflag = 0; lflag = 0; ladjust = 0; sharpflag = 0; neg = 0;
258 if (lflag) {
259 lflag = 0;
262 lflag = 1;
269 else if (lflag)
345 else if (lflag)
363 else if (lflag)
/freebsd-current/contrib/mtree/
H A Dextern.h81 extern int bflag, dflag, eflag, iflag, jflag, lflag, mflag,

Completed in 164 milliseconds

1234