Lines Matching defs:line

69 	"%s::%s[line %d]: Insufficient token\n",		/* 1 */
70 "%s::%s[line %d]: Syntax error\n", /* 2 */
71 "%s::%s[line %d]: Unsupported or missing version\n", /* 3 */
72 "%s::%s[line %d]: Illegal use of nodepath or namepath\n", /* 4 */
73 "%s::%s[line %d]: Node and endnode mismatch\n", /* 5 */
74 "%s::%s[line %d]: General system failure\n", /* 6 */
76 "%s::%s[line %d]: Table and endtable mismatch\n", /* 8 */
77 "%s::%s[line %d]: Row and endrow mismatch\n", /* 9 */
78 "%s::%s[line %d]: Row has no entries \n" /* 10 */
213 parse_version(cmdbuf_t *cmds, char *line)
221 tok = strtok_r(line, WHITESPACE, &last);
261 parse_path(char *line, command_t *command)
267 pathtok = strtok_r(line, WHITESPACE, &last);
310 parse_node(char *line, command_t *command)
318 tok = strtok_r(line, WHITESPACE, &last);
518 * The current version won't support multiple-line string
521 get_string_token(char *line, char **valtok)
528 if (line == NULL)
532 optr = line;
545 cptr = line + strlen(line) - 1;
593 parse_prop(char *line, command_t *command)
606 tok = strtok_r(line, WHITESPACE, &last);
762 parse_refnode(char *line, command_t *command)
771 tok = strtok_r(line, WHITESPACE, &last);
854 parse_refprop(char *line, command_t *command)
862 tok = strtok_r(line, WHITESPACE, &last);
954 parse_table(char *line, command_t *command)
961 tok = strtok_r(line, WHITESPACE, &last);
1083 parse_verbose(cmdbuf_t *cmds, char *line, command_t *command)
1092 tok = strtok_r(line, WHITESPACE, &last);
1126 * parse and tokenize the line
1308 * get the line control information
1309 * return 1 if it's the line control information, else return 0
1329 * It's not the line control information
1371 * get cpp line control information, if any
1381 * skip line whose first char is a newline char
1476 /* skipped this line */