Searched refs:key (Results 1 - 25 of 1988) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gdbm-1.8.3/
H A Ddelete.c1 /* delete.c - Remove the key and its associated data from the database.
41 delete (key)
42 datum key;
44 return gdbm_delete (_gdbm_file, key);
H A Ddbmdelete.c1 /* dbmdelete.c - Remove the key and its associated data from the database.
41 dbm_delete (dbf,key)
43 datum key;
45 return gdbm_delete (dbf,key);
H A Dgdbmexists.c1 /* gdbmexists.c - Check to see if a key exists */
43 gdbm_exists (dbf, key)
45 datum key;
50 return (_gdbm_findkey (dbf, key, &find_data, &hash_val) >= 0);
H A Dstore.c1 /* store.c - Add a new key/data pair to the database. */
42 store (key, content)
43 datum key;
46 return gdbm_store (_gdbm_file, key, content, GDBM_REPLACE);
H A Dhash.c42 _gdbm_hash (key)
43 datum key;
49 /* Set the initial value from key. */
50 value = 0x238F13AF * key.dsize;
51 for (index = 0; index < key.dsize; index++)
52 value = (value + (key.dptr[index] << (index*5 % 24))) & 0x7FFFFFFF;
H A Ddbmstore.c1 /* dbmstore.c - Add a new key/data pair to the database. */
42 dbm_store (dbf, key, content, flags)
44 datum key;
48 return gdbm_store (dbf, key, content, flags);
H A Dfetch.c1 /* fetch.c - Find a key and return the associated data. */
42 fetch (key)
43 datum key;
49 ret_val = gdbm_fetch (_gdbm_file, key);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/keys/
H A Duser-type.h1 /* user-type.h: User-defined key type
15 #include <linux/key.h>
20 * the payload for a key of type "user"
21 * - once filled in and attached to a key:
23 * - the payload must be read with RCU procedures or with the key semaphore
25 * - the payload may only be replaced with the key semaphore write-locked
26 * - the key's data length is the size of the actual data, not including the
37 extern int user_instantiate(struct key *key, const void *data, size_t datalen);
38 extern int user_update(struct key *ke
[all...]
H A Drxrpc-type.h1 /* RxRPC key type
15 #include <linux/key.h>
18 * key type for AF_RXRPC keys
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/
H A DTestEntity.java16 int key; field in class:TestEntity
19 TestEntity(int key, int value) { argument
21 this.key = key;
29 return e.key == key && e.value == value;
37 return key;
42 return "[key " + key + " value " + value + ']';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/cnid/tdb/
H A Dcnid_tdb_delete.c21 TDB_DATA key, data; local
26 memset(&key, 0, sizeof(key));
29 key.dptr = (char *)&id;
30 key.dsize = sizeof(cnid_t);
31 data = tdb_fetch(db->tdb_cnid, key);
37 tdb_delete(db->tdb_cnid, key);
39 key.dptr = data.dptr +CNID_DEVINO_OFS;
40 key.dsize = CNID_DEVINO_LEN;
41 tdb_delete(db->tdb_devino, key);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/cnid/tdb/
H A Dcnid_tdb_delete.c21 TDB_DATA key, data; local
26 memset(&key, 0, sizeof(key));
29 key.dptr = (char *)&id;
30 key.dsize = sizeof(cnid_t);
31 data = tdb_fetch(db->tdb_cnid, key);
37 tdb_delete(db->tdb_cnid, key);
39 key.dptr = data.dptr +CNID_DEVINO_OFS;
40 key.dsize = CNID_DEVINO_LEN;
41 tdb_delete(db->tdb_devino, key);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/keys/
H A Dpermission.c1 /* permission.c: key permission determination
18 * check to see whether permission is granted to use a key in the desired way,
25 struct key *key; local
29 key = key_ref_to_ptr(key_ref);
32 if (key->uid == context->fsuid) {
33 kperm = key->perm >> 16;
39 if (key->gid != -1 && key->perm & KEY_GRP_ALL) {
40 if (key
81 key_validate(struct key *key) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/tx4927/common/
H A Dtx4927_setup.c53 void dump_cp0(char *key);
99 void print_cp0(char *key, int num, char *name, u32 val) argument
101 printk("%s cp0:%02d:%s=0x%08x\n", key, num, name, val);
106 dump_cp0(char *key) argument
108 if (key == NULL)
109 key = "";
111 print_cp0(key, 0, "INDEX ", read_c0_index());
112 print_cp0(key, 2, "ENTRYLO1", read_c0_entrylo0());
113 print_cp0(key, 3, "ENTRYLO2", read_c0_entrylo1());
114 print_cp0(key,
127 print_pic(char *key, u32 reg, char *name) argument
135 dump_pic(char *key) argument
169 print_addr(char *hdr, char *key, u32 addr) argument
176 dump_180(char *key) argument
187 dump_eh0(char *key) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/des/
H A Ddes_old2.c79 void _ossl_096_des_random_seed(DES_cblock *key) argument
81 RAND_seed(key, sizeof(DES_cblock));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/camellia/
H A Dcmll_misc.c59 CAMELLIA_KEY *key)
61 if (!userKey || !key)
69 camellia_setup128(userKey, (unsigned int *)key->rd_key);
70 key->enc = camellia_encrypt128;
71 key->dec = camellia_decrypt128;
74 camellia_setup192(userKey, (unsigned int *)key->rd_key);
75 key->enc = camellia_encrypt256;
76 key->dec = camellia_decrypt256;
79 camellia_setup256(userKey, (unsigned int *)key->rd_key);
80 key
58 Camellia_set_key(const unsigned char *userKey, const int bits, CAMELLIA_KEY *key) argument
91 Camellia_encrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key) argument
104 Camellia_decrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/des/
H A Ddes_old2.c79 void _ossl_096_des_random_seed(DES_cblock *key) argument
81 RAND_seed(key, sizeof(DES_cblock));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dkey.h0 /* key.h: authentication token and access key management
26 /* key handle serial number */
29 /* key handle permissions mask */
32 struct key;
38 #define KEY_POS_VIEW 0x01000000 /* possessor can view a key's attributes */
39 #define KEY_POS_READ 0x02000000 /* possessor can read key payload / view keyring */
40 #define KEY_POS_WRITE 0x04000000 /* possessor can update key payload / add link to keyring */
41 #define KEY_POS_SEARCH 0x08000000 /* possessor can find a key in search / search a keyring */
42 #define KEY_POS_LINK 0x10000000 /* possessor can create a link to a key/keyrin
95 make_key_ref(const struct key *key, unsigned long possession) argument
119 struct key { struct
275 key_get(struct key *key) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/mac80211/
H A Ddebugfs_key.h6 struct ieee80211_key *key);
7 void ieee80211_debugfs_key_remove(struct ieee80211_key *key);
10 void ieee80211_debugfs_key_sta_link(struct ieee80211_key *key,
12 void ieee80211_debugfs_key_sta_del(struct ieee80211_key *key,
16 struct ieee80211_key *key)
18 static inline void ieee80211_debugfs_key_remove(struct ieee80211_key *key) argument
27 struct ieee80211_key *key, struct sta_info *sta)
29 static inline void ieee80211_debugfs_key_sta_del(struct ieee80211_key *key, argument
15 ieee80211_debugfs_key_add(struct ieee80211_local *local, struct ieee80211_key *key) argument
26 ieee80211_debugfs_key_sta_link( struct ieee80211_key *key, struct sta_info *sta) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/lib/
H A Dkeychain.c0 /* key-chain for authentication.
28 /* Master list of key chain. */
46 struct key *
49 struct key *new;
50 new = XMALLOC (MTYPE_KEY, sizeof (struct key));
51 memset (new, 0, sizeof (struct key));
56 key_free (struct key *key) argument
58 XFREE (MTYPE_KEY, key);
79 key_cmp_func (struct key *k
89 key_delete_func(struct key *key) argument
131 struct key *key; local
145 struct key *key; local
169 struct key *key; local
189 struct key *key; local
209 struct key *key; local
224 key_delete(struct keychain *keychain, struct key *key) argument
279 struct key *key; variable in typeref:struct:key
306 struct key *key; variable in typeref:struct:key
339 struct key *key; variable in typeref:struct:key
357 struct key *key; variable in typeref:struct:key
565 struct key *key; variable in typeref:struct:key
586 struct key *key; variable in typeref:struct:key
607 struct key *key; variable in typeref:struct:key
628 struct key *key; variable in typeref:struct:key
646 struct key *key; variable in typeref:struct:key
664 struct key *key; variable in typeref:struct:key
683 struct key *key; variable in typeref:struct:key
702 struct key *key; variable in typeref:struct:key
723 struct key *key; variable in typeref:struct:key
744 struct key *key; variable in typeref:struct:key
765 struct key *key; variable in typeref:struct:key
786 struct key *key; variable in typeref:struct:key
804 struct key *key; variable in typeref:struct:key
822 struct key *key; variable in typeref:struct:key
841 struct key *key; variable in typeref:struct:key
860 struct key *key; variable in typeref:struct:key
899 struct key *key; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/ss/
H A Davtab.c36 struct avtab_key *key, struct avtab_datum *datum)
42 newnode->key = *key;
56 static int avtab_insert(struct avtab *h, struct avtab_key *key, struct avtab_datum *datum) argument
60 u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
65 hvalue = AVTAB_HASH(key);
69 if (key->source_type == cur->key.source_type &&
70 key->target_type == cur->key
34 avtab_insert_node(struct avtab *h, int hvalue, struct avtab_node * prev, struct avtab_node * cur, struct avtab_key *key, struct avtab_datum *datum) argument
97 avtab_insert_nonunique(struct avtab * h, struct avtab_key * key, struct avtab_datum * datum) argument
129 avtab_search(struct avtab *h, struct avtab_key *key) argument
164 avtab_search_node(struct avtab *h, struct avtab_key *key) argument
303 struct avtab_key key; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/
H A Dudev_rules.h38 struct key { struct
44 struct key key; member in struct:key_pair
67 struct key action;
68 struct key devpath;
69 struct key kernel;
70 struct key subsystem;
71 struct key driver;
74 struct key kernels;
75 struct key subsystem
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DKeySelector.java31 * Returns whether a given key should be returned via the cursor.
33 * <p>This method should not assume that the given key is for a committed
34 * record or not, nor should it assume that the key will be returned via
35 * the cursor if this method returns true. The record for this key will
37 * the record is found to be uncommitted or deleted, the key will not be
40 boolean selectKey(K key); argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dtree.h41 * @return An element with cmp(key, elem)==0 or NULL if no such element exists in
44 void *av_tree_find(const struct AVTreeNode *root, void *key, int (*cmp)(void *key, const void *b), void *next[2]);
64 * void *tree_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b), AVTreeNode **next){
66 * return av_tree_insert(rootp, key, cmp, next);
68 * void *tree_remove(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b, AVTreeNode **next)){
70 * return av_tree_insert(rootp, key, cmp, next);
74 removal happened, then either key o
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/macintosh/
H A Dvia-pmu-event.h6 extern void via_pmu_event(int key, int down);

Completed in 341 milliseconds

1234567891011>>