HomeSort by relevance Sort by last modified time
    Searched defs:new_expr (Results 1 - 3 of 3) sorted by null

  /external/libsepol/src/
conditional.c 271 cond_expr_t *cur, *head, *tail, *new_expr; local
275 new_expr = (cond_expr_t *) malloc(sizeof(cond_expr_t));
276 if (!new_expr)
278 memset(new_expr, 0, sizeof(cond_expr_t));
280 new_expr->expr_type = cur->expr_type;
281 new_expr->bool = cur->bool;
284 head = new_expr;
286 tail->next = new_expr;
287 tail = new_expr;
expand.c 286 constraint_expr_t *new_expr = NULL; local
298 if ((new_expr = calloc(1, sizeof(*new_expr))) == NULL) {
301 if (constraint_expr_init(new_expr) == -1) {
304 new_expr->expr_type = expr->expr_type;
305 new_expr->attr = expr->attr;
306 new_expr->op = expr->op;
307 if (new_expr->expr_type == CEXPR_NAMES) {
308 if (new_expr->attr & CEXPR_TYPE) {
315 &new_expr-
    [all...]
  /external/elfutils/src/
ldscript.c 188 static struct expression *new_expr (int tag);
2267 new_expr (int tag) function
    [all...]

Completed in 125 milliseconds