Lines Matching refs:mime
69 curl_mime *mime = NULL;
77 * Check proper copy/release of mime post data bound to a duplicated
102 /* Build the mime tree. */
103 mime = curl_mime_init(easy);
104 part = curl_mime_addpart(mime);
111 part = curl_mime_addpart(mime);
113 part = curl_mime_addpart(mime);
117 /* Bind mime data to its easy handle. */
118 test_setopt(easy, CURLOPT_MIMEPOST, mime);
128 /* Now free the mime structure: it should unbind it from the first
130 curl_mime_free(mime);
131 mime = NULL; /* Already cleaned up. */
141 /* Perform on the second handle: if the bound mime structure has not been
151 If the mime copy was bad or not automatically released, valgrind
166 curl_mime_free(mime);