HomeSort by relevance Sort by last modified time
    Searched full:new_bool (Results 1 - 4 of 4) sorted by null

  /external/libsepol/src/
boolean_record.c 150 sepol_bool_t *new_bool = NULL; local
152 if (sepol_bool_create(handle, &new_bool) < 0)
155 if (sepol_bool_set_name(handle, new_bool, boolean->name) < 0)
158 new_bool->value = boolean->value;
160 *bool_ptr = new_bool;
165 sepol_bool_free(new_bool);
expand.c 1005 cond_bool_datum_t *bool, *new_bool; local
1025 new_bool = (cond_bool_datum_t *) malloc(sizeof(cond_bool_datum_t));
1026 if (!new_bool) {
1034 free(new_bool);
1039 new_bool->s.value = state->out->p_bools.nprim;
1043 (hashtab_datum_t) new_bool);
1046 free(new_bool);
1051 state->boolmap[bool->s.value - 1] = new_bool->s.value;
1053 new_bool->state = bool->state;
1054 new_bool->flags = bool->flags
    [all...]
link.c 561 cond_bool_datum_t *booldatum, *base_bool, *new_bool = NULL; local
576 if ((new_bool =
577 (cond_bool_datum_t *) malloc(sizeof(*new_bool))) == NULL) {
580 new_bool->s.value = state->base->p_bools.nprim + 1;
584 (hashtab_datum_t) new_bool);
589 base_bool = new_bool;
620 cond_destroy_bool(new_id, new_bool, NULL);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
flags.h 49 // and int argument to New_BOOL as this appears to be safer - sigh.
52 static FlagValue New_BOOL(int b) {

Completed in 3193 milliseconds