OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:new_bool
(Results
1 - 3
of
3
) 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
);
link.c
596
cond_bool_datum_t *booldatum, *base_bool, *
new_bool
= NULL;
local
611
if ((
new_bool
=
612
(cond_bool_datum_t *) malloc(sizeof(*
new_bool
))) == NULL) {
615
new_bool
->s.value = state->base->p_bools.nprim + 1;
619
(hashtab_datum_t)
new_bool
);
624
base_bool =
new_bool
;
655
cond_destroy_bool(new_id,
new_bool
, NULL);
[
all
...]
expand.c
1049
cond_bool_datum_t *bool, *
new_bool
;
local
1069
new_bool
= (cond_bool_datum_t *) malloc(sizeof(cond_bool_datum_t));
1070
if (!
new_bool
) {
1078
free(
new_bool
);
1083
new_bool
->s.value = state->out->p_bools.nprim;
1087
(hashtab_datum_t)
new_bool
);
1090
free(
new_bool
);
1095
state->boolmap[bool->s.value - 1] =
new_bool
->s.value;
1097
new_bool
->state = bool->state;
1098
new_bool
->flags = bool->flags
[
all
...]
Completed in 678 milliseconds