Home | History | Annotate | Download | only in src

Lines Matching defs:rc

68 	int rc;
81 rc = sepol_bool_key_create(avc->handle, name, &key);
82 if (rc < 0) {
87 rc = sepol_bool_query(avc->handle,
91 if (rc < 0) {
100 rc = sepol_bool_set(avc->handle,
103 if (rc < 0) {
111 rc = sepol_compute_av_reason(avc->ssid, avc->tsid, avc->tclass,
113 if (rc < 0) {
126 rc = sepol_bool_set(avc->handle,
129 if (rc < 0) {
197 int rc;
263 rc = sepol_bool_count(avc->handle,
265 if (rc < 0) {
281 rc = sepol_sidtab_init(&sidtab);
282 if (rc < 0) {
323 int rc;
338 rc = sepol_context_to_sid(scon, strlen(scon) + 1, &ssid);
339 if (rc < 0)
342 rc = sepol_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
343 if (rc < 0)
376 rc = sepol_compute_av_reason_buffer(ssid, tsid, tclass, av, &avd, &reason, &reason_buf, 0);
377 if (rc < 0)