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

  /external/selinux/libsemanage/src/
database_activedb.c 119 dbase_activedb_t *tmp_dbase = local
122 if (!tmp_dbase)
125 tmp_dbase->ratable = ratable;
126 dbase_llist_init(&tmp_dbase->llist, rtable, &SEMANAGE_ACTIVEDB_DTABLE);
128 *dbase = tmp_dbase;
134 free(tmp_dbase);
database_file.c 167 dbase_file_t *tmp_dbase = (dbase_file_t *) malloc(sizeof(dbase_file_t)); local
169 if (!tmp_dbase)
172 tmp_dbase->path[0] = path_ro;
173 tmp_dbase->path[1] = path_rw;
174 tmp_dbase->rftable = rftable;
175 dbase_llist_init(&tmp_dbase->llist, rtable, &SEMANAGE_FILE_DTABLE);
177 *dbase = tmp_dbase;
183 free(tmp_dbase);
database_policydb.c 187 dbase_policydb_t *tmp_dbase = local
190 if (!tmp_dbase)
193 tmp_dbase->path[0] = path_ro;
194 tmp_dbase->path[1] = path_rw;
195 tmp_dbase->rtable = rtable;
196 tmp_dbase->rptable = rptable;
197 tmp_dbase->policydb = NULL;
198 tmp_dbase->cache_serial = -1;
199 tmp_dbase->modified = 0;
200 tmp_dbase->attached = 0
    [all...]
database_join.c 245 dbase_join_t *tmp_dbase = malloc(sizeof(dbase_join_t)); local
247 if (!tmp_dbase)
250 dbase_llist_init(&tmp_dbase->llist, rtable, &SEMANAGE_JOIN_DTABLE);
252 tmp_dbase->rjtable = rjtable;
253 tmp_dbase->join1 = join1;
254 tmp_dbase->join2 = join2;
256 *dbase = tmp_dbase;
262 free(tmp_dbase);

Completed in 63 milliseconds