Searched refs:esc (Results 1 - 25 of 33) sorted by relevance

12

/illumos-gate/usr/src/cmd/fm/eversholt/
H A DMakefile30 SUBDIRS = esc eftinfo files
36 files: esc
/illumos-gate/usr/src/cmd/mailwrapper/
H A Dfparseln.c42 * that starts in *sp, is escaped by the escape character esc.
45 isescaped(const char *sp, const char *p, int esc) argument
51 if (esc == '\0')
55 for (ne = 0, cp = p; --cp >= sp && *cp == esc; ne++)
78 char esc, con, nl, com; local
87 esc = str[0];
107 if (*cp == com && !isescaped(ptr, cp, esc)) {
124 if (*cp == con && !isescaped(ptr, cp, esc)) {
144 if ((flags & FPARSELN_UNESCALL) != 0 && esc && buf != NULL &&
145 strchr(buf, esc) !
[all...]
/illumos-gate/usr/src/cmd/fm/eversholt/files/
H A DMakefile.com26 .SUFFIXES: .eft .esc
28 ESC=$(SRC)/cmd/fm/eversholt/esc/$(MACH)/esc
59 %.eft: ../common/%.esc
62 %.eft: %.esc
/illumos-gate/usr/src/lib/libast/common/misc/
H A Doptesc.c28 * esc == '?' or ':' also escaped
35 optesc(Sfio_t* sp, register const char* s, int esc) argument
49 if (esc != '?' && esc != ':')
50 esc = 0;
87 if (c == ']' || c == esc)
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dparse.c92 _escape(char *s, char *esc) argument
99 if (s == NULL || esc == NULL)
104 if (strchr(esc, s[i]))
109 if (strchr(esc, s[i])) {
120 _unescape(char *s, char *esc) argument
126 if (s == NULL || esc == NULL)
133 if (s[i] == '\\' && strchr(esc, s[i + 1]))
/illumos-gate/usr/src/cmd/troff/troff.d/
H A Dt10.c251 esc = 0; /* ??? */
304 esc += j;
384 esc += j;
393 if (esc)
468 if (esc > 0 && esc < 100) {
469 oput(esc / 10 + '0');
470 oput(esc % 10 + '0');
472 hpos += esc;
473 esc
[all...]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dfriendly.c91 int esc = 0, found = 0; local
96 esc = 1;
99 if ( !esc )
103 esc = 0;
/illumos-gate/usr/src/cmd/fm/eversholt/esc/
H A DMakefile.com29 PROG = esc
31 include $(SRC)/cmd/fm/eversholt/Makefile.esc.com
/illumos-gate/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_string.c136 int esc = 0; local
140 if (esc) {
212 esc = 0;
215 if ((esc = c == '\\') == 0)
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_string.c42 int esc = 0; local
46 if (esc) {
118 esc = 0;
121 if ((esc = c == '\\') == 0)
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_string.c123 int esc = 0; local
127 if (esc) {
199 esc = 0;
202 if ((esc = c == '\\') == 0)
/illumos-gate/usr/src/cmd/picl/plugins/common/piclevent/
H A Dpicl_slm.c299 char *esc; local
310 esc = sysevent_get_subclass_name(ev);
314 ev, (ec) ? ec : "NULL", (esc) ? esc : "NULL");
315 if ((ec == NULL) || (esc == NULL)) {
318 if (strcmp(esc, ESC_DEVFS_DEVI_ADD) == 0)
320 else if (strcmp(esc, ESC_DEVFS_DEVI_REMOVE) == 0)
325 if (strcmp(esc, ESC_DR_AP_STATE_CHANGE) == 0)
327 else if (strcmp(esc, ESC_DR_REQ) == 0)
356 if (strcmp(esc, ESC_DR_RE
[all...]
/illumos-gate/usr/src/cmd/troff/nroff.d/
H A Dn10.c360 esct = esc = 0;
407 esc += j;
413 esc += t.Char;
450 if (esc || lead)
595 if (esct += esc)
625 esc = esct;
631 if (esc) {
632 if (esc < 0) {
633 esc = -esc;
[all...]
/illumos-gate/usr/src/cmd/fm/eversholt/eftinfo/
H A DMakefile.com42 include $(SRC)/cmd/fm/eversholt/Makefile.esc.com
/illumos-gate/usr/src/cmd/listen/
H A Dnstoa.c510 int esc = 0; /* Keep lookout for \\$ */ local
513 if (!esc && (*s == '\\' && *(s+1) == '$')) {
530 fprintf(stderr, "Overflow on shell esc expansion\n");
534 esc = ((scanbuf[sbp++] = *s++) == '\\');
559 int esc = 0; /* escaped escape shell */ local
574 if (!esc && *s == '\\' && *(s+1) == ec) {
579 esc = (*cmdp++ = *s++) == '\\';
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Defi_console.c48 static int esc; variable
101 esc = 0;
213 if (esc) {
215 if (esc != '\033')
216 efi_cons_rawputchar(esc);
336 switch (esc) {
340 esc = c;
350 esc = c;
522 return (0x1b); /* esc */
526 return (0x1b); /* esc */
[all...]
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dvidconsole.c71 static int esc; variable
375 esc = 0;
386 if (esc) {
388 if (esc != '\033')
389 vidc_rawputchar(esc);
421 switch (esc) {
425 esc = c;
436 esc = c;
610 return (0x1b); /* esc */
614 return (0x1b); /* esc */
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dpppdump.c224 int esc; member in struct:pkt
253 spkt.esc = rpkt.esc = 0;
281 if (pkt->esc) {
288 pkt->esc = 0;
378 if (!pkt->esc) {
379 pkt->esc = 1;
384 if (pkt->esc) {
386 pkt->esc = 0;
/illumos-gate/usr/src/cmd/mandoc/
H A Dhtml.c338 enum mandoc_esc esc; local
362 esc = mandoc_escape(&p, &seq, &len);
363 if (ESCAPE_ERROR == esc)
366 switch (esc) {
374 print_metaf(h, esc);
388 switch (esc) {
H A Dterm.c404 enum mandoc_esc esc; local
442 esc = mandoc_escape(&word, &seq, &sz);
443 if (ESCAPE_ERROR == esc)
446 switch (esc) {
665 enum mandoc_esc esc; local
685 esc = mandoc_escape(&cp, &seq, &ssz);
686 if (ESCAPE_ERROR == esc)
691 switch (esc) {
/illumos-gate/usr/src/cmd/troff/
H A Dnii.c138 int esc; variable
H A Dext.h92 extern int esc;
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dsys_bsd.c289 cc_t esc; local
503 esc = (rlogin != _POSIX_VDISABLE) ? rlogin : escape;
504 if ((tmp_tc.c_cc[VEOL] != esc)
506 (tmp_tc.c_cc[VEOL2] != esc)
509 tmp_tc.c_cc[VEOL] = esc;
511 tmp_tc.c_cc[VEOL2] = esc;
515 tc.t_brkc = esc;
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_string.c292 int esc = 0; local
295 if (esc) {
351 esc = 0;
354 if ((esc = c == '\\') == 0)
/illumos-gate/usr/src/cmd/svc/startd/
H A Dexpand.c584 char *esc; local
587 esc = strchr(sp, ESCAPE);
588 if (esc == NULL) {
595 len = esc - sp;

Completed in 125 milliseconds

12