Home
last modified time | relevance | path

Searched refs:part_headers (Results 1 – 24 of 24) sorted by relevance

/dports/devel/libsoup3/libsoup-3.0.3/libsoup/
H A Dsoup-multipart.c144 SoupMessageHeaders *part_headers; in soup_multipart_new_from_message() local
199 part_headers = soup_message_headers_new (SOUP_MESSAGE_HEADERS_MULTIPART); in soup_multipart_new_from_message()
200 g_ptr_array_add (multipart->headers, part_headers); in soup_multipart_new_from_message()
202 part_headers)) { in soup_multipart_new_from_message()
394 SoupMessageHeaders *part_headers; in soup_multipart_to_message() local
412 part_headers = multipart->headers->pdata[i]; in soup_multipart_to_message()
420 soup_message_headers_iter_init (&iter, part_headers); in soup_multipart_to_message()
H A Dsoup-form.c152 SoupMessageHeaders *part_headers; in soup_form_decode_multipart() local
169 soup_multipart_get_part (multipart, i, &part_headers, &part_body); in soup_form_decode_multipart()
171 part_headers, &disposition, &params)) in soup_form_decode_multipart()
185 *content_type = g_strdup (soup_message_headers_get_content_type (part_headers, NULL)); in soup_form_decode_multipart()
/dports/devel/libsoup/libsoup-2.74.0/libsoup/
H A Dsoup-multipart.c144 SoupMessageHeaders *part_headers; in soup_multipart_new_from_message() local
201 part_headers = soup_message_headers_new (SOUP_MESSAGE_HEADERS_MULTIPART); in soup_multipart_new_from_message()
202 g_ptr_array_add (multipart->headers, part_headers); in soup_multipart_new_from_message()
204 part_headers)) { in soup_multipart_new_from_message()
405 SoupMessageHeaders *part_headers; in soup_multipart_to_message() local
421 part_headers = multipart->headers->pdata[i]; in soup_multipart_to_message()
428 soup_message_headers_iter_init (&iter, part_headers); in soup_multipart_to_message()
H A Dsoup-message-server-io.c201 SoupMessageHeaders *part_headers; in handle_partial_get() local
214 part_headers = soup_message_headers_new (SOUP_MESSAGE_HEADERS_MULTIPART); in handle_partial_get()
216 soup_message_headers_append (part_headers, in handle_partial_get()
220 soup_message_headers_set_content_range (part_headers, in handle_partial_get()
227 soup_multipart_append_part (multipart, part_headers, in handle_partial_get()
229 soup_message_headers_free (part_headers); in handle_partial_get()
H A Dsoup-form.c156 SoupMessageHeaders *part_headers; in soup_form_decode_multipart() local
178 soup_multipart_get_part (multipart, i, &part_headers, &part_body); in soup_form_decode_multipart()
180 part_headers, &disposition, &params)) in soup_form_decode_multipart()
194 *content_type = g_strdup (soup_message_headers_get_content_type (part_headers, NULL)); in soup_form_decode_multipart()
/dports/devel/librest/rest-0.8.1/rest-extras/
H A Dyoutube-proxy.c366 SoupMessageHeaders *part_headers; in youtube_proxy_upload_async() local
388 part_headers = soup_message_headers_new (SOUP_MESSAGE_HEADERS_MULTIPART); in youtube_proxy_upload_async()
390 soup_message_headers_append (part_headers, "Content-Type", in youtube_proxy_upload_async()
394 soup_multipart_append_part (mp, part_headers, sb); in youtube_proxy_upload_async()
409 soup_message_headers_replace (part_headers, "Content-Type", content_type); in youtube_proxy_upload_async()
411 soup_multipart_append_part (mp, part_headers, sb); in youtube_proxy_upload_async()
415 soup_message_headers_free (part_headers); in youtube_proxy_upload_async()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/frame/
H A Dmhtml_archive_test.cc303 HashMap<String, String> part_headers = ExtractHeaders(line_reader); in TEST_F() local
304 EXPECT_FALSE(part_headers.find("Content-Type")->value.IsEmpty()); in TEST_F()
305 EXPECT_EQ("binary", part_headers.find("Content-Transfer-Encoding")->value); in TEST_F()
306 EXPECT_FALSE(part_headers.find("Content-Location")->value.IsEmpty()); in TEST_F()
331 HashMap<String, String> part_headers = ExtractHeaders(line_reader); in TEST_F() local
333 String content_type = part_headers.find("Content-Type")->value; in TEST_F()
336 String encoding = part_headers.find("Content-Transfer-Encoding")->value; in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/frame/
H A Dmhtml_archive_test.cc303 HashMap<String, String> part_headers = ExtractHeaders(line_reader); in TEST_F() local
304 EXPECT_FALSE(part_headers.find("Content-Type")->value.IsEmpty()); in TEST_F()
305 EXPECT_EQ("binary", part_headers.find("Content-Transfer-Encoding")->value); in TEST_F()
306 EXPECT_FALSE(part_headers.find("Content-Location")->value.IsEmpty()); in TEST_F()
331 HashMap<String, String> part_headers = ExtractHeaders(line_reader); in TEST_F() local
333 String content_type = part_headers.find("Content-Type")->value; in TEST_F()
336 String encoding = part_headers.find("Content-Transfer-Encoding")->value; in TEST_F()
/dports/devel/libsoup3/libsoup-3.0.3/libsoup/server/
H A Dsoup-server-io.c237 SoupMessageHeaders *part_headers; in handle_partial_get() local
250 part_headers = soup_message_headers_new (SOUP_MESSAGE_HEADERS_MULTIPART); in handle_partial_get()
252 soup_message_headers_append_common (part_headers, in handle_partial_get()
256 soup_message_headers_set_content_range (part_headers, in handle_partial_get()
263 soup_multipart_append_part (multipart, part_headers, in handle_partial_get()
265 soup_message_headers_unref (part_headers); in handle_partial_get()
/dports/databases/py-gdbm/Python-3.8.12/Lib/email/
H A Dmessage.py1111 part_headers = []
1114 part_headers.append((name, value))
1117 if part_headers:
1120 part._headers = part_headers
/dports/databases/py-sqlite3/Python-3.8.12/Lib/email/
H A Dmessage.py1111 part_headers = []
1114 part_headers.append((name, value))
1117 if part_headers:
1120 part._headers = part_headers
/dports/lang/python310/Python-3.10.1/Lib/email/
H A Dmessage.py1111 part_headers = []
1114 part_headers.append((name, value))
1117 if part_headers:
1120 part._headers = part_headers
/dports/lang/python37/Python-3.7.12/Lib/email/
H A Dmessage.py1111 part_headers = []
1114 part_headers.append((name, value))
1117 if part_headers:
1120 part._headers = part_headers
/dports/lang/python38/Python-3.8.12/Lib/email/
H A Dmessage.py1111 part_headers = []
1114 part_headers.append((name, value))
1117 if part_headers:
1120 part._headers = part_headers
/dports/lang/python311/Python-3.11.0a3/Lib/email/
H A Dmessage.py1111 part_headers = []
1114 part_headers.append((name, value))
1117 if part_headers:
1120 part._headers = part_headers
/dports/lang/python-tools/Python-3.8.12/Lib/email/
H A Dmessage.py1111 part_headers = []
1114 part_headers.append((name, value))
1117 if part_headers:
1120 part._headers = part_headers
/dports/lang/python39/Python-3.9.9/Lib/email/
H A Dmessage.py1111 part_headers = []
1114 part_headers.append((name, value))
1117 if part_headers:
1120 part._headers = part_headers
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/email/
H A Dmessage.py1111 part_headers = []
1114 part_headers.append((name, value))
1117 if part_headers:
1120 part._headers = part_headers
/dports/mail/cyrus-imapd32/cyrus-imapd-3.2.8/imap/
H A Dhttpd.h573 const char *part_headers);
H A Djmap_calendar.c1541 char *part_headers = NULL; in _calendarevent_getblob_cb() local
1542 if (userid) part_headers = strconcat("X-UserId: ", userid, "\r\n", NULL); in _calendarevent_getblob_cb()
1545 write_multipart_body(0, req->txn, buf_base(buf), buf_len(buf), part_headers); in _calendarevent_getblob_cb()
1546 free(part_headers); in _calendarevent_getblob_cb()
H A Dhttpd.c3172 const char *part_headers) in write_multipart_body() argument
3214 if (part_headers) { in write_multipart_body()
3215 buf_appendcstr(body, part_headers); in write_multipart_body()
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/imap/
H A Dhttpd.h577 const char *part_headers);
H A Djmap_calendar.c1583 char *part_headers = NULL; in _calendarevent_getblob_cb() local
1584 if (userid) part_headers = strconcat("X-UserId: ", userid, "\r\n", NULL); in _calendarevent_getblob_cb()
1587 write_multipart_body(0, req->txn, buf_base(buf), buf_len(buf), part_headers); in _calendarevent_getblob_cb()
1588 free(part_headers); in _calendarevent_getblob_cb()
H A Dhttpd.c3216 const char *part_headers) in write_multipart_body() argument
3258 if (part_headers) { in write_multipart_body()
3259 buf_appendcstr(body, part_headers); in write_multipart_body()