Searched refs:subparts (Results 1 - 10 of 10) sorted by relevance
/third_party/curl/src/ |
H A D | tool_formparse.c | 51 m->prev = parent->subparts; in tool_mime_new() 52 parent->subparts = m; in tool_mime_new() 164 if(mime->subparts) in tool_mime_free() 165 tool_mime_free(mime->subparts); in tool_mime_free() 316 ret = tool2curlparts(curl, m->subparts, *mime); in tool2curlmime() 784 struct tool_mime *subparts = NULL; in formparse() local 798 if(!subparts) { in formparse() 800 subparts = *mimecurrent; in formparse() 802 subparts = tool_mime_new_parts(*mimecurrent); in formparse() 803 if(!subparts) in formparse() [all...] |
H A D | tool_formparse.h | 53 struct tool_mime *subparts; /* Part's subparts. */ member
|
H A D | tool_setopt.c | 501 if(toolmime->subparts) { in libcurl_generate_mime() 504 toolmime->subparts, *mimeno); in libcurl_generate_mime()
|
/third_party/python/Lib/email/ |
H A D | generator.py | 104 # subparts, and because clone uses the computed policy (not None), 264 subparts = msg.get_payload() 265 if subparts is None: 266 subparts = [] 267 elif isinstance(subparts, str): 269 self.write(subparts) 271 elif not isinstance(subparts, list): 273 subparts = [subparts] 274 for part in subparts [all...] |
H A D | message.py | 637 messages that are subparts of multipart/digest containers. Such 638 subparts have a default content type of message/rfc822. 942 charset parameter for this message and all the subparts in its 1028 subparts = part.get_payload() 1029 candidate = subparts[0] if subparts else None 1063 remaining subparts in the returned iterator. When applied to a 1113 """Return an iterator over all immediate subparts of a multipart.
|
/third_party/typescript/tests/baselines/reference/ |
H A D | conditionalTypes1.js | 90 subparts: Part[]; 134 let id: number = part.subparts[0].id; 136 part.subparts[0] = part.subparts[0]; // Error 137 part.subparts[0].id = part.subparts[0].id; // Error 405 var id = part.subparts[0].id;
407 part.subparts[0] = part.subparts[0]; // Error
408 part.subparts[ [all...] |
/third_party/curl/lib/ |
H A D | mime.c | 1155 /* Do not free subparts: unbind them. This is used for the top level only. */ 1227 /* No one knows about the cloned subparts, thus always attach ownership in Curl_mime_duppart() 1232 /* Duplicate subparts. */ in Curl_mime_duppart() 1531 /* Set mime part content from subparts. */ 1533 curl_mime *subparts, int take_ownership) in Curl_mime_set_subparts() 1540 /* Accept setting twice the same subparts. */ in Curl_mime_set_subparts() 1541 if(part->kind == MIMEKIND_MULTIPART && part->arg == subparts) in Curl_mime_set_subparts() 1546 if(subparts) { in Curl_mime_set_subparts() 1548 if(subparts->parent) in Curl_mime_set_subparts() 1556 if(subparts in Curl_mime_set_subparts() 1532 Curl_mime_set_subparts(curl_mimepart *part, curl_mime *subparts, int take_ownership) Curl_mime_set_subparts() argument 1574 curl_mime_subparts(curl_mimepart *part, curl_mime *subparts) curl_mime_subparts() argument 1999 curl_mime_subparts(curl_mimepart *part, curl_mime *subparts) curl_mime_subparts() argument [all...] |
H A D | mime.h | 147 struct curl_mime *subparts,
|
/third_party/python/Lib/test/test_email/ |
H A D | test_email.py | 2684 # Set up subparts 2921 # Make sure the subparts are what we expect 3546 subparts = 0 3548 subparts += 1 3550 eq(subparts, 2) 3563 subparts = 0 3565 subparts += 1 3567 eq(subparts, 1)
|
/third_party/curl/include/curl/ |
H A D | curl.h | 2488 * Set mime part data source from subparts. 2491 curl_mime *subparts);
|
Completed in 26 milliseconds