Home | History | Annotate | Download | only in lib

Lines Matching refs:optionsp

4063                                     char **optionsp)
4337 result = parse_url_login(data, conn, userp, passwdp, optionsp);
4896 char *optionsp = NULL;
4931 &userp, &passwdp, &optionsp);
4965 if(optionsp) {
4967 char *newoptions = curl_easy_unescape(data, optionsp, 0, NULL);
4982 free(optionsp);
5011 * optionsp [in/out] - The address where a pointer to newly allocated memory
5018 char **optionsp)
5040 if(optionsp) {
5076 if(!result && optionsp && olen) {
5106 Curl_safefree(*optionsp);
5107 *optionsp = obuf;
5242 char **userp, char **passwdp, char **optionsp)
5259 free(*optionsp);
5260 *optionsp = strdup(data->set.str[STRING_OPTIONS]);
5261 if(!*optionsp)