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/selinux/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
603
cond_bool_datum_t *booldatum, *base_bool, *
new_bool
= NULL;
local
618
if ((
new_bool
=
619
(cond_bool_datum_t *) malloc(sizeof(*
new_bool
))) == NULL) {
622
new_bool
->s.value = state->base->p_bools.nprim + 1;
626
(hashtab_datum_t)
new_bool
);
631
base_bool =
new_bool
;
663
cond_destroy_bool(new_id,
new_bool
, NULL);
[
all
...]
expand.c
1072
cond_bool_datum_t *bool, *
new_bool
;
local
1092
new_bool
= (cond_bool_datum_t *) malloc(sizeof(cond_bool_datum_t));
1093
if (!
new_bool
) {
1101
free(
new_bool
);
1106
new_bool
->s.value = state->out->p_bools.nprim;
1110
(hashtab_datum_t)
new_bool
);
1113
free(
new_bool
);
1118
state->boolmap[bool->s.value - 1] =
new_bool
->s.value;
1120
new_bool
->state = bool->state;
1121
new_bool
->flags = bool->flags
[
all
...]
Completed in 1549 milliseconds