Lines Matching refs:pslcache
39 void Curl_psl_destroy(struct PslCache *pslcache) in Curl_psl_destroy() argument
41 if(pslcache->psl) { in Curl_psl_destroy()
42 if(pslcache->dynamic) in Curl_psl_destroy()
43 psl_free((psl_ctx_t *) pslcache->psl); in Curl_psl_destroy()
44 pslcache->psl = NULL; in Curl_psl_destroy()
45 pslcache->dynamic = FALSE; in Curl_psl_destroy()
58 struct PslCache *pslcache = easy->psl; in Curl_psl_use() local
62 if(!pslcache) in Curl_psl_use()
67 if(!pslcache->psl || pslcache->expires <= now) { in Curl_psl_use()
76 if(!pslcache->psl || pslcache->expires <= now) { in Curl_psl_use()
87 if(!psl && !pslcache->dynamic) in Curl_psl_use()
93 Curl_psl_destroy(pslcache); in Curl_psl_use()
94 pslcache->psl = psl; in Curl_psl_use()
95 pslcache->dynamic = dynamic; in Curl_psl_use()
96 pslcache->expires = expires; in Curl_psl_use()
102 psl = pslcache->psl; in Curl_psl_use()