OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FormInfo
(Results
1 - 2
of
2
) sorted by null
/external/curl/lib/
formdata.h
51
typedef struct
FormInfo
{
68
struct
FormInfo
*more;
69
}
FormInfo
;
formdata.c
123
* Adds a
FormInfo
structure to the list presented by parent_form_info.
125
* Returns newly allocated
FormInfo
on success and NULL if malloc failed/
129
static
FormInfo
* AddFormInfo(char *value,
131
FormInfo
*parent_form_info)
133
FormInfo
*form_info;
134
form_info = calloc(1, sizeof(struct
FormInfo
));
247
* CURL_FORMADD_MEMORY if the
FormInfo
allocation fails
250
* CURL_FORMADD_MEMORY if the allocation of a
FormInfo
struct failed
252
* CURL_FORMADD_INCOMPLETE if the some
FormInfo
is not complete (or error)
264
FormInfo
*first_form, *current_form, *form = NULL
[
all
...]
Completed in 245 milliseconds