Home | History | Annotate | Download | only in src

Lines Matching refs:handle

21 int sepol_bool_key_create(sepol_handle_t * handle,
29 ERR(handle, "out of memory, " "could not create boolean key");
35 ERR(handle, "out of memory, " "could not create boolean key");
54 int sepol_bool_key_extract(sepol_handle_t * handle,
59 if (sepol_bool_key_create(handle, boolean->name, key_ptr) < 0) {
60 ERR(handle, "could not extract key from boolean %s",
99 int sepol_bool_set_name(sepol_handle_t * handle,
105 ERR(handle, "out of memory, could not set boolean name");
133 int sepol_bool_create(sepol_handle_t * handle, sepol_bool_t ** bool_ptr)
139 ERR(handle, "out of memory, "
154 int sepol_bool_clone(sepol_handle_t * handle,
160 if (sepol_bool_create(handle, &new_bool) < 0)
163 if (sepol_bool_set_name(handle, new_bool, boolean->name) < 0)
172 ERR(handle, "could not clone boolean record");