Searched defs:key (Results 1 - 20 of 20) sorted by relevance

/bionic/libc/stdlib/
H A Dbsearch.c49 bsearch(const void *key, const void *base0, size_t nmemb, size_t size, argument
58 cmp = (*compar)(key, p);
59 if (cmp > 0) { /* key > p: move right */
/bionic/libc/include/
H A Dsearch.h31 char *key; member in struct:node
/bionic/libc/kernel/arch-arm/asm/
H A Dipcbuf.h24 __kernel_key_t key; member in struct:ipc64_perm
/bionic/libc/kernel/arch-mips/asm/
H A Dipcbuf.h24 __kernel_key_t key; member in struct:ipc64_perm
H A Dsgiarcs.h87 ULONG key; member in struct:linux_component
/bionic/libc/kernel/arch-x86/asm/
H A Dipcbuf.h24 __kernel_key_t key; member in struct:ipc64_perm
/bionic/libc/kernel/common/linux/
H A Dipc.h26 __kernel_key_t key; member in struct:ipc_perm
H A Dvideodev.h214 __u8 key[8]; member in struct:video_key
H A Dblkdev.h72 void *key; member in struct:cfq_io_context
H A Dpkt_cls.h259 __u32 key; member in struct:tc_rsvp_gpi
H A Dcdrom.h484 dvd_key key; member in struct:dvd_send_key
H A Dwireless.h371 __u8 key[0]; member in struct:iw_encode_ext
H A Dsoundcard.h179 unsigned short key; member in struct:patch_info
236 short key; member in struct:sysex_info
325 unsigned short key; member in struct:sbi_instrument
852 #define SEQ_ECHO_BACK(key) _TIMER_EVENT(TMR_ECHO, key)
/bionic/libc/kernel/common/linux/netfilter_ipv4/
H A Dip_conntrack_tuple.h44 __be16 key; member in struct:ip_conntrack_manip_proto::__anon382
79 __be16 key; member in struct:ip_conntrack_tuple::__anon383::__anon384::__anon389
/bionic/libc/bionic/
H A Dsystem_properties.c218 int __system_property_set(const char *key, const char *value) argument
225 if(key == 0) return -1;
227 if(strlen(key) >= PROP_NAME_MAX) return -1;
232 strlcpy(msg.name, key, sizeof msg.name);
H A Dpthread_debug.c703 static uint32_t get_hashcode(void const * key, size_t keySize) argument
706 char const* data = (char const*)key;
745 void const* key, size_t ksize,
746 int (*equals)(void const* data, void const* key))
748 const uint32_t hash = get_hashcode(key, ksize);
753 if (equals(entry->data, key)) {
776 static int MutexInfo_equals(void const* data, void const* key) { argument
777 return ((MutexInfo const *)data)->mutex == *(pthread_mutex_t **)key;
799 static int ThreadInfo_equals(void const* data, void const* key) { argument
800 return ((ThreadInfo const *)data)->pid == *(pid_t *)key;
744 hashmap_lookup(HashTable* table, void const* key, size_t ksize, int (*equals)(void const* data, void const* key)) argument
[all...]
H A Dpthread.c586 // a TLS key, the corresponding value will be set to NULL in this thread's TLS
1792 * also, some entries in the key table are pre-allocated (see tlsmap_lock)
1813 * when pthread_key_create() is called, it finds the first free key in the
1816 * when pthread_key_delete() is called. it will erase the key's bitmap bit
1817 * and its destructor, and will also clear the key data in the TLS area of
1834 /* this macro is used to quickly check that a key belongs to a reasonable range */
1835 #define TLSMAP_VALIDATE_KEY(key) \
1836 ((key) >= TLSMAP_START && (key) < TLSMAP_SIZE)
1838 /* the type of tls key destructo
1877 tlsmap_test(tlsmap_t* m, int key) argument
1883 tlsmap_set(tlsmap_t* m, int key, tls_dtor_t dtor) argument
1890 tlsmap_clear(tlsmap_t* m, int key) argument
1899 int key; local
1911 pthread_key_create(pthread_key_t *key, void (*destructor_function)(void *)) argument
1935 pthread_key_delete(pthread_key_t key) argument
1979 pthread_setspecific(pthread_key_t key, const void *ptr) argument
1996 pthread_getspecific(pthread_key_t key) argument
[all...]
/bionic/libc/netbsd/resolv/
H A Dres_data.c245 res_sendsigned(const u_char *buf, int buflen, ns_tsig_key *key, argument
253 return (res_nsendsigned(&_nres, buf, buflen, key, ans, anssiz));
H A Dres_cache.c1092 * data in the query (key) */
1102 /* initialize an Entry as a search key, this also checks the input query packet
1344 /* This function tries to find a key within the hash table
1345 * In case of success, it will return a *pointer* to the hashed key.
1353 * for the key position in the htable.
1360 Entry* key )
1362 int index = key->hash % cache->max_entries;
1371 if (node->hash == key->hash && entry_equals(node, key))
1446 Entry key[ local
1518 Entry key[1]; local
[all...]
/bionic/libc/private/
H A Darpa_nameser.h230 struct dst_key *key; member in struct:ns_tcp_tsig_state
274 ns_t_key = 25, /* Security key. */
292 ns_t_tkey = 249, /* Transaction key */
332 ns_kt_rsa = 1, /* key type RSA/MD5 */
335 ns_kt_private = 254 /* Private key type starts with OID */
351 #define NS_KEY_TYPE_NO_KEY 0xC000 /* No key usable for either; no key */
360 #define NS_KEY_NAME_USER 0x0000 /* key is assoc. with user */
361 #define NS_KEY_NAME_ENTITY 0x0200 /* key is assoc. with entity eg host */
362 #define NS_KEY_NAME_ZONE 0x0100 /* key i
[all...]

Completed in 847 milliseconds