OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:curl_hash
(Results
1 - 12
of
12
) sorted by null
/external/curl/lib/
hash.h
46
struct
curl_hash
{
struct
66
struct
curl_hash
*hash;
71
int Curl_hash_init(struct
curl_hash
*h,
77
void *Curl_hash_add(struct
curl_hash
*h, void *key, size_t key_len, void *p);
78
int Curl_hash_delete(struct
curl_hash
*h, void *key, size_t key_len);
79
void *Curl_hash_pick(struct
curl_hash
*, void * key, size_t key_len);
80
void Curl_hash_apply(struct
curl_hash
*h, void *user,
82
int Curl_hash_count(struct
curl_hash
*h);
83
void Curl_hash_destroy(struct
curl_hash
*h);
84
void Curl_hash_clean(struct
curl_hash
*h)
[
all
...]
hash.c
37
struct
curl_hash
*h = (struct
curl_hash
*) user;
59
Curl_hash_init(struct
curl_hash
*h,
134
Curl_hash_add(struct
curl_hash
*h, void *key, size_t key_len, void *p)
173
int Curl_hash_delete(struct
curl_hash
*h, void *key, size_t key_len)
195
Curl_hash_pick(struct
curl_hash
*h, void *key, size_t key_len)
216
Curl_hash_apply(
curl_hash
*h, void *user,
241
Curl_hash_destroy(struct
curl_hash
*h)
260
Curl_hash_clean(struct
curl_hash
*h)
267
Curl_hash_clean_with_criterium(struct
curl_hash
*h, void *user
[
all
...]
hostip.h
61
* Returns a struct
curl_hash
pointer on success, NULL on failure.
63
struct
curl_hash
*Curl_global_host_cache_init(void);
128
int Curl_mk_dnscache(struct
curl_hash
*hash);
238
void Curl_hostcache_clean(struct Curl_easy *data, struct
curl_hash
*hash);
share.h
47
struct
curl_hash
hostcache;
conncache.h
27
struct
curl_hash
hash;
multihandle.h
95
struct
curl_hash
hostcache;
104
struct
curl_hash
sockhash;
hostip.c
110
static struct
curl_hash
hostname_cache;
120
* Returns a struct
curl_hash
pointer on success, NULL on failure.
122
struct
curl_hash
*Curl_global_host_cache_init(void)
241
hostcache_prune(struct
curl_hash
*hostcache, long cache_timeout, time_t now)
748
int Curl_mk_dnscache(struct
curl_hash
*hash)
762
struct
curl_hash
*hash)
multi.c
176
static struct Curl_sh_entry *sh_getentry(struct
curl_hash
*sh,
186
static struct Curl_sh_entry *sh_addentry(struct
curl_hash
*sh,
216
static void sh_delentry(struct
curl_hash
*sh, curl_socket_t s)
266
static int sh_init(struct
curl_hash
*hash, int hashsize)
399
struct
curl_hash
*global = Curl_global_host_cache_init();
[
all
...]
urldata.h
[
all
...]
/external/curl/tests/unit/
unit1602.c
31
static struct
curl_hash
hash_static;
unit1305.c
43
static struct
curl_hash
hp;
unit1603.c
31
static struct
curl_hash
hash_static;
Completed in 403 milliseconds