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 364 constraint_expr_t *new_expr = NULL; local
376 if ((new_expr = calloc(1, sizeof(*new_expr))) == NULL) {
379 if (constraint_expr_init(new_expr) == -1) {
382 new_expr->expr_type = expr->expr_type;
383 new_expr->attr = expr->attr;
384 new_expr->op = expr->op;
385 if (new_expr->expr_type == CEXPR_NAMES) {
386 if (new_expr->attr & CEXPR_TYPE) {
393 &new_expr->type_names->types
    [all...]
  /external/elfutils/0.153/src/
ldscript.c 126 static struct expression *new_expr (int tag);
2447 new_expr (int tag) function
    [all...]

Completed in 238 milliseconds