Home
last modified time | relevance | path

Searched refs:STRNEQU (Results 1 – 13 of 13) sorted by relevance

/illumos-gate/usr/src/cmd/lp/cmd/lpadmin/
H A Doptions.c634 } else if (STRNEQU(optarg, "banner=", 7)) {
654 } else if (STRNEQU(optarg, "length=", 7)) {
676 } else if (STRNEQU(optarg, "width=", 6)) {
698 } else if (STRNEQU(optarg, "cpi=", 4)) {
717 } else if (STRNEQU(optarg, "lpi=", 4)) {
735 } else if (STRNEQU(optarg, "stty=", 5)) {
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dfiles.c53 if (STRNEQU(Lp_Temp, file, strlen(Lp_Temp)) || in chfiles()
54 STRNEQU(Lp_Tmp, file, strlen(Lp_Tmp))) in chfiles()
66 if (STRNEQU(Lp_Temp, file, strlen(Lp_Temp))) in chfiles()
203 if ((STRNEQU(Lp_Temp, *file, strlen(Lp_Temp)) || in rmfiles()
204 STRNEQU(Lp_Tmp, *file, strlen(Lp_Tmp))) && in rmfiles()
H A Dvalidate.c186 if (STRNEQU(*pl, "cpi=", 4)) in _validate()
188 else if (STRNEQU(*pl, "lpi=", 4)) in _validate()
190 else if (STRNEQU(*pl, "width=", 6)) in _validate()
192 else if (STRNEQU(*pl, "length=", 7)) in _validate()
H A Dexec.c664 if (STRNEQU(options, "job-id-requested=", 17)) { in exec()
809 !STRNEQU(*listp, "cpi=", 4) in exec()
810 && !STRNEQU(*listp, "lpi=", 4) in exec()
811 && !STRNEQU(*listp, "width=", 6) in exec()
812 && !STRNEQU(*listp, "length=", 7) in exec()
H A Ddisp1.c1109 if (STRNEQU(file, Lp_Spooldir, strlen(Lp_Spooldir))) in reqpath()
1112 if (STRNEQU(file, "/usr/spool/lp", 13)) in reqpath()
1120 if (STRNEQU(cp, "temp", 4)) { in reqpath()
H A Dstatus.c37 #define NCMP(X,Y) (STRNEQU((X), (Y), sizeof(Y)-1))
/illumos-gate/usr/src/cmd/lp/lib/requests/
H A Dgetrequest.c76 if (!STRNEQU(file, Lp_Tmp, strlen(Lp_Tmp))) {
119 && STRNEQU(
H A Dputrequest.c94 if (!STRNEQU(file, Lp_Tmp, strlen(Lp_Tmp))) {
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dsop.c61 if (endsop && STRNEQU(endsop, buf, lenendsop)) in sop_up_rest()
H A Dalerts.c174 if (STRNEQU( in putalert()
316 !STRNEQU(buf, ALRT_CMDSTART, sizeof(ALRT_CMDSTART)-1)) in getalert()
/illumos-gate/usr/src/cmd/lp/lib/printers/
H A Dgetpentry.c132 STRNEQU( in getpentry()
H A Dgetprinter.c160 && STRNEQU( in getprinter()
/illumos-gate/usr/src/cmd/lp/include/
H A Dlp.h288 #define STRNEQU(A, B, N) ((!(A) || !(B)) ? 0 : (strncmp((A), (B), (N)) == 0)) macro