Lines Matching refs:name
168 Curl_safefree(mime->name);
303 ret = curl_mime_name(part, m->name);
640 "Field file name not allowed here: %s", filename);
665 * Reads a 'name=value' parameter and builds the appropriate linked list.
670 * Specify files to upload with 'name=@filename', or 'name=@"filename"'
677 * You may specify more than one file for a single name (field). Specify
680 * 'name=@filename,filename2,filename3'
684 * 'name=@"filename","filename2","filename3"'
688 * 'name=@filename;type=image/gif,filename2,filename3'
693 * 'name=foo;headers=@headerfile' or why not
694 * 'name=@filemame;headers=@headerfile'
696 * To upload a file, but to fake the file name that will be included in the
699 * 'name=@filename;filename=/dev/null' or quote the faked filename like:
700 * 'name=@filename;filename="play, play, and play.txt"'
723 /* input MUST be a string in the format 'name=contents' and we'll
725 char *name = NULL;
750 /* Scan for the end of the name. */
755 name = contents;
772 else if(!name && !strcmp(contp, ")") && !literal_value) {
782 /* we use the @-letter to indicate file name(s) */
834 } while(sep); /* loop if there's another file name */
835 part = (*mimecurrent)->subparts; /* Set name on group. */
895 /* Set part name. */
896 SET_TOOL_MIME_PTR(part, name);