HomeSort by relevance Sort by last modified time
    Searched defs:datum (Results 1 - 13 of 13) sorted by null

  /external/libsepol/include/sepol/policydb/
hashtab.h 8 * key values and datum values. The type of the key values
9 * and the type of the datum values is arbitrary. The
23 typedef void *hashtab_datum_t; /* generic datum type */
29 hashtab_datum_t datum; member in struct:hashtab_node
57 Inserts the specified (key, datum) pair into the specified hash table.
67 Applies the specified destroy function to (key,datum,args) for
79 Insert or replace the specified (key, datum) pair in the specified
81 then the specified destroy function is applied to (key,datum,args)
96 the datum of the entry otherwise.
106 Applies the specified apply function to (key,datum,args
    [all...]
avtab.h 72 avtab_datum_t datum; member in struct:avtab_node
109 avtab_datum_t * datum);
113 avtab_datum_t * datum,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
ypupd.h 58 yp_buf datum; member in struct:ypupdate_args
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
ypupd.h 58 yp_buf datum; member in struct:ypupdate_args
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
ypupd.h 58 yp_buf datum; member in struct:ypupdate_args
  /external/libsepol/src/
genbools.c 76 struct cond_bool_datum *datum; local
96 datum = hashtab_search(policydb->p_bools.table, name);
97 if (!datum) {
102 if (datum->state != val) {
103 datum->state = val;
126 datum =
129 if (!datum) {
134 if (datum->state != val) {
135 datum->state = val;
215 struct cond_bool_datum *datum; local
    [all...]
avtab.c 60 avtab_datum_t * datum)
68 newnode->datum = *datum;
81 int avtab_insert(avtab_t * h, avtab_key_t * key, avtab_datum_t * datum)
110 newnode = avtab_insert_node(h, hvalue, prev, key, datum);
122 avtab_insert_nonunique(avtab_t * h, avtab_key_t * key, avtab_datum_t * datum)
149 newnode = avtab_insert_node(h, hvalue, prev, key, datum);
170 return &cur->datum;
285 ret = apply(&cur->key, &cur->datum, args);
376 avtab_datum_t datum; local
    [all...]