HomeSort by: relevance | last modified time | path
    Searched defs:quote (Results 1 - 16 of 16) sorted by relevancy

  /src/usr.bin/make/unit-tests/
modmisc.mk 19 all: mod-quote
56 mod-quote:
  /src/lib/libperfuse/
debug.c 212 const char *quote = pt->pt_path[0] != '\0' ? "\"" : ""; local in function:perfuse_trace_dump
217 quote, pt->pt_path, quote,
  /src/sys/arch/ia64/stand/common/
interp_parse.c 88 char token, tmp, quote, *buf; local in function:parse
92 quote = 0;
111 quote = quote ? 0 : *p;
114 else if (isspace(*p) && !quote) {
  /src/lib/libc/gen/
wordexp.c 256 int dquote, level, quote, squote; local in function:we_check
258 quote = squote = dquote = 0;
262 quote ^= 1;
265 if (quote + dquote == 0)
269 if (quote + squote == 0)
273 if (quote + squote == 0 && flags & WRDE_NOCMD)
283 if (quote + squote + dquote == 0)
289 else if (quote + squote == 0 && c == '(') {
304 } else if (quote + squote == 0 && c == '{') {
323 quote = 0
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_flag_parser.cc 88 char quote = buf_[pos_++]; local in function:__sanitizer::FlagParser::parse_flag
89 while (buf_[pos_] != 0 && buf_[pos_] != quote) ++pos_;
92 ++pos_; // consume the closing quote
  /src/lib/libedit/
tokenizer.c 92 quote_t quote; /* Quoting state */ local in function:TYPE
152 tok->quote = Q_none;
169 tok->quote = Q_none;
196 * 2 Unmatched double quote
197 * 1 Unmatched single quote
225 switch (tok->quote) {
227 tok->quote = Q_single; /* Enter single quote
231 case Q_single: /* Exit single quote mode */
232 tok->quote = Q_none
    [all...]
  /src/sbin/restore/
interactive.c 414 char quote; local in function:copynext
442 quote = *cp++;
443 while (*cp != quote && *cp != '\0')
446 fprintf(stderr, "missing %c\n", quote);
  /src/usr.bin/mail/
names.c 172 int quote; local in function:detract
174 quote = ntype & GSMOPTS;
188 if (quote && need_quotes(p->n_name))
200 do_quotes = (quote && need_quotes(p->n_name));
441 goto quote;
443 goto quote;
448 quote:
  /src/bin/csh/
misc.c 376 quote(Char *cp) function in typeref:typename:Char *
384 *dp++ |= QUOTE;
  /src/usr.bin/gencat/
gencat.c 344 getmsg(int fd, char *cptr, char quote)
352 if (quote && *cptr == quote) {
368 if (quote && *cptr == quote) {
373 warning(cptr, "unexpected quote character, ignoring");
434 if (quote && *cptr == quote) {
471 char quote = 0; local in function:MCParse
487 } else if (strncmp(cptr, "quote", 5) == 0)
    [all...]
  /src/sys/arch/x68k/stand/common/
start.S 341 clrb %d1 | no quote here
347 beqs quote
350 quote: moveb %d2,%d1 | save quote character label
356 clrb %d1 | quote ended
  /src/games/larn/
io.c 415 int n = LINBUFSIZE, quote = 0; local in function:lgetw
423 if ((n <= 1) || ((cc <= 32) && (quote == 0))) {
430 quote ^= 1;
  /src/usr.sbin/inetd/
parse.c 816 char quote; local in function:skip
837 quote = '\0';
838 while (*cp != '\0' && (quote != '\0' || (*cp != ' ' && *cp != '\t'))) {
840 if (quote != '\0' && *cp != quote)
843 if (quote != '\0')
844 quote = '\0';
846 quote = *cp;
parse_v2.c 384 * Uses shell-style quote parsing.
390 char quote = *cp; local in function:parse_quotes
393 while (*cp != '\0' && quote != '\0') {
394 if (*cp == quote) {
395 quote = '\0';
450 if (*cp == '\0' && quote != '\0') {
451 ERR("Unclosed quote");
  /src/bin/ksh/
eval.c 155 short quote; /* saved value of quote (for ${..[%#]..}) */ member in struct:SubType
168 int quote = 0; /* quoted */ local in function:expand
226 quote |= 2; /* temporary quote */
232 quote = 1;
235 quote = 0;
326 st->quote = quote;
336 quote = 0
    [all...]
  /src/usr.bin/ftp/
cmds.c 1633 quote(int argc, char *argv[]) function in typeref:typename:void

Completed in 20 milliseconds