Searched refs:STRNEQU (Results 1 – 13 of 13) sorted by relevance
/titanic_50/usr/src/cmd/lp/cmd/lpadmin/ |
H A D | options.c | 634 } 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)) {
|
/titanic_50/usr/src/cmd/lp/cmd/lpsched/ |
H A D | files.c | 55 if (STRNEQU(Lp_Temp, file, strlen(Lp_Temp)) || in chfiles() 56 STRNEQU(Lp_Tmp, file, strlen(Lp_Tmp))) in chfiles() 68 if (STRNEQU(Lp_Temp, file, strlen(Lp_Temp))) in chfiles() 205 if ((STRNEQU(Lp_Temp, *file, strlen(Lp_Temp)) || in rmfiles() 206 STRNEQU(Lp_Tmp, *file, strlen(Lp_Tmp))) && in rmfiles()
|
H A D | validate.c | 185 if (STRNEQU(*pl, "cpi=", 4)) in _validate() 187 else if (STRNEQU(*pl, "lpi=", 4)) in _validate() 189 else if (STRNEQU(*pl, "width=", 6)) in _validate() 191 else if (STRNEQU(*pl, "length=", 7)) in _validate()
|
H A D | exec.c | 770 if (STRNEQU(options, "job-id-requested=", 17)) { in exec() 915 !STRNEQU(*listp, "cpi=", 4) in exec() 916 && !STRNEQU(*listp, "lpi=", 4) in exec() 917 && !STRNEQU(*listp, "width=", 6) in exec() 918 && !STRNEQU(*listp, "length=", 7) in exec()
|
H A D | disp1.c | 1108 if (STRNEQU(file, Lp_Spooldir, strlen(Lp_Spooldir))) in reqpath() 1111 if (STRNEQU(file, "/usr/spool/lp", 13)) in reqpath() 1119 if (STRNEQU(cp, "temp", 4)) { in reqpath()
|
H A D | status.c | 37 #define NCMP(X,Y) (STRNEQU((X), (Y), sizeof(Y)-1))
|
/titanic_50/usr/src/cmd/lp/lib/requests/ |
H A D | getrequest.c | 78 if (!STRNEQU(file, Lp_Tmp, strlen(Lp_Tmp))) { 121 && STRNEQU(
|
H A D | putrequest.c | 96 if (!STRNEQU(file, Lp_Tmp, strlen(Lp_Tmp))) {
|
/titanic_50/usr/src/cmd/lp/lib/lp/ |
H A D | sop.c | 63 if (endsop && STRNEQU(endsop, buf, lenendsop)) in sop_up_rest()
|
H A D | alerts.c | 175 if (STRNEQU( in putalert() 317 !STRNEQU(buf, ALRT_CMDSTART, sizeof(ALRT_CMDSTART)-1)) in getalert()
|
/titanic_50/usr/src/cmd/lp/lib/printers/ |
H A D | getpentry.c | 134 STRNEQU( in getpentry()
|
H A D | getprinter.c | 162 && STRNEQU( in getprinter()
|
/titanic_50/usr/src/cmd/lp/include/ |
H A D | lp.h | 286 #define STRNEQU(A,B,N) ( (!(A) || !(B)) ? 0: (strncmp((A), (B), (N)) == 0) ) macro
|