Lines Matching refs:userpwd
395 char **userpwd) /* pointer to allocated string */ in checkpasswd() argument
400 if(!*userpwd) in checkpasswd()
404 psep = strchr(*userpwd, ':'); in checkpasswd()
407 osep = strchr(*userpwd, ';'); in checkpasswd()
409 if(!psep && **userpwd != ';') { in checkpasswd()
414 size_t userlen = strlen(*userpwd); in checkpasswd()
424 kind, *userpwd); in checkpasswd()
429 kind, *userpwd, (curl_off_t) (i + 1)); in checkpasswd()
439 passptr = realloc(*userpwd, in checkpasswd()
448 *userpwd = passptr; in checkpasswd()
522 if(config->userpwd && !config->oauth_bearer) { in get_args()
523 result = checkpasswd("host", i, last, &config->userpwd); in get_args()