OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs: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
...]
multihandle.h
91
struct
curl_hash
hostcache;
100
struct
curl_hash
sockhash;
share.h
47
struct
curl_hash
hostcache;
hash.c
34
struct
curl_hash
*h = (struct
curl_hash
*) user;
51
Curl_hash_init(struct
curl_hash
*h,
124
Curl_hash_add(struct
curl_hash
*h, void *key, size_t key_len, void *p)
159
int Curl_hash_delete(struct
curl_hash
*h, void *key, size_t key_len)
177
Curl_hash_pick(struct
curl_hash
*h, void *key, size_t key_len)
198
Curl_hash_apply(
curl_hash
*h, void *user,
219
Curl_hash_destroy(struct
curl_hash
*h)
238
Curl_hash_clean(struct
curl_hash
*h)
245
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 SessionHandle *data, struct
curl_hash
*hash);
conncache.h
27
struct
curl_hash
hash;
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)
747
int Curl_mk_dnscache(struct
curl_hash
*hash)
761
struct
curl_hash
*hash)
http.h
214
struct
curl_hash
streamsh;
multi.c
165
static struct Curl_sh_entry *sh_addentry(struct
curl_hash
*sh,
196
static void sh_delentry(struct
curl_hash
*sh, curl_socket_t s)
252
static int sh_init(struct
curl_hash
*hash, int hashsize)
387
struct
curl_hash
*global = Curl_global_host_cache_init();
[
all
...]
urldata.h
[
all
...]
/external/curl/tests/unit/
unit1602.c
52
struct
curl_hash
hash_static;
unit1305.c
43
static struct
curl_hash
hp;
Completed in 931 milliseconds