Lines Matching refs:spath
104 free(co->spath); in freecookie()
619 free(co->spath); /* if this is set again */ in parse_cookie_header()
620 co->spath = sanitize_cookie_path(co->path); in parse_cookie_header()
621 if(!co->spath) in parse_cookie_header()
777 co->spath = sanitize_cookie_path(co->path); in parse_cookie_header()
778 if(!co->spath) in parse_cookie_header()
870 co->spath = sanitize_cookie_path(co->path); in parse_netscape()
871 if(!co->spath) in parse_netscape()
880 co->spath = strdup("/"); in parse_netscape()
881 if(!co->spath) in parse_netscape()
1007 clist->spath && co->spath && /* both have paths */ in replace_existing()
1019 sep = strchr(clist->spath + 1, '/'); in replace_existing()
1022 cllen = sep - clist->spath; in replace_existing()
1024 cllen = strlen(clist->spath); in replace_existing()
1026 if(strncasecompare(clist->spath, co->spath, cllen)) { in replace_existing()
1049 if(clist->spath && co->spath && in replace_existing()
1050 !strcasecompare(clist->spath, co->spath)) in replace_existing()
1052 else if(!clist->spath != !co->spath) in replace_existing()
1393 if(!co->spath || pathmatch(co->spath, path) ) { in Curl_cookie_getlist()