Lines Matching refs:line
76 static void create_node(struct cil_tree_node **node, struct cil_tree_node *current, uint32_t line, uint32_t hll_offset, void *value)
81 (*node)->line = line;
105 cil_log(CIL_ERR, "Invalid line mark syntax\n");
110 cil_log(CIL_ERR, "Invalid line mark syntax\n");
135 cil_log(CIL_ERR, "Number of active line marks exceeds limit of %d\n", CIL_PARSER_MAX_EXPR_DEPTH);
139 create_node(&node, *current, tok.line, *hll_offset, NULL);
143 create_node(&node, *current, tok.line, *hll_offset, CIL_KEY_SRC_INFO);
146 create_node(&node, *current, tok.line, *hll_offset, hll_type);
151 cil_log(CIL_ERR, "Invalid line mark syntax\n");
155 create_node(&node, *current, tok.line, *hll_offset, cil_strpool_add(tok.value));
160 cil_log(CIL_ERR, "Invalid line mark syntax\n");
169 create_node(&node, *current, tok.line, *hll_offset, cil_strpool_add(tok.value));
177 cil_log(CIL_ERR, "Invalid line mark syntax\n");
189 cil_log(CIL_ERR, "Problem with high-level line mark at line %u of %s\n", tok.line, path);
250 cil_log(CIL_ERR, "Number of open parenthesis exceeds limit of %d at line %d of %s\n", CIL_PARSER_MAX_EXPR_DEPTH, tok.line, path);
253 create_node(&node, current, tok.line, hll_offset, NULL);
260 cil_log(CIL_ERR, "Close parenthesis without matching open at line %d of %s\n", tok.line, path);
271 cil_log(CIL_ERR, "Symbol not inside parenthesis at line %d of %s\n", tok.line, path);
275 create_node(&node, current, tok.line, hll_offset, cil_strpool_add(tok.value));
297 cil_log(CIL_ERR, "Open parenthesis without matching close at line %d of %s\n", tok.line, path);
301 cil_log(CIL_ERR, "High-level language line marker start without close at line %d of %s\n", tok.line, path);
306 cil_log(CIL_ERR, "Invalid token '%s' at line %d of %s\n", tok.value, tok.line, path);
309 cil_log(CIL_ERR, "Unknown token type '%d' at line %d of %s\n", tok.type, tok.line, path);