Lines Matching refs:line

100 char		*CommandLineArgs;	/* command line args for pid file */
585 /* save command line arguments */
1212 /* If set daemon_flags on command line, don't reset it */
1221 /* If set daemon_flags on command line, don't reset it */
1433 ** Do more command line checking -- these are things that
1437 /* process authorization warnings from command line */
2192 ** want to return control to the command line. So we do an
2801 ** variable "savederrors" (declared at line 2570)
2802 ** variable "savedflags" (declared at line 2571)
3269 ** droplev -- how "deeply" we should drop the line.
3972 ** TO8BIT -- convert \octal sequences in a test mode input line
3975 ** str -- the input line.
4034 ** TESTMODELINE -- process a test mode input line
4037 ** line -- the input line.
4041 ** .X process X as a configuration line
4049 testmodeline(line, e)
4050 char *line;
4071 while (*line == ' ')
4072 line++;
4076 switch (line[0])
4087 switch (line[1])
4090 mid = macid_parse(&line[2], &delimptr);
4101 if (line[2] == '\0') /* not to call syserr() */
4104 mid = macid_parse(&line[2], &delimptr);
4138 "Unknown \".\" command %s\n", line);
4144 switch (line[1])
4147 rs = strtorwset(&line[2], NULL, ST_FIND);
4151 "Undefined ruleset %s\n", &line[2]);
4199 "Unknown \"=\" command %s\n", line);
4204 case '-': /* set command-line-like opts */
4205 switch (line[1])
4208 tTflag(&line[2]);
4218 "Unknown \"-\" command %s\n", line);
4224 if (line[1] == '=')
4226 mid = macid(&line[2]);
4231 mid = macid(&line[1]);
4247 p = &line[strlen(line)];
4248 while (--p >= line && isascii(*p) && isspace(*p))
4250 p = strpbrk(line, " \t");
4258 if (line[1] == '\0')
4264 if (sm_strcasecmp(&line[1], "quit") == 0)
4270 if (sm_strcasecmp(&line[1], "mx") == 0)
4297 else if (sm_strcasecmp(&line[1], "canon") == 0)
4319 else if (sm_strcasecmp(&line[1], "map") == 0)
4368 else if (sm_strcasecmp(&line[1], "try") == 0)
4406 else if (sm_strcasecmp(&line[1], "tryflags") == 0)
4446 else if (sm_strcasecmp(&line[1], "parse") == 0)
4481 else if (sm_strcasecmp(&line[1], "header") == 0)
4490 else if (sm_strcasecmp(&line[1], "gethostbyname") == 0)
4512 line);
4518 for (p = line; isascii(*p) && isspace(*p); p++)