/external/curl/tests/data/ |
test44 | 54 Content-Disposition: form-data; name="name"
58 Content-Disposition: form-data; name="tool"
62 Content-Disposition: form-data; name="file"; filename="test44.txt"
|
test71 | 61 Content-Disposition: form-data; name="name"
65 Content-Disposition: form-data; name="tool"
69 Content-Disposition: form-data; name="file"; filename="test71.txt"
|
test9 | 55 Content-Disposition: form-data; name="name"
59 Content-Disposition: form-data; name="tool"
63 Content-Disposition: form-data; name="file"; filename="test9.txt"
|
test1348 | 28 FTP download, file without Content-Disposition inside, using -O
|
test1378 | 23 FTP DL, file without Content-Disposition inside, using -o fname
|
test1423 | 30 HTTP GET -o fname without Content-Disposition (empty file)
|
test1363 | 19 Content-Disposition: filename=name1363; charset=funny; option=strange
70 Content-Disposition: filename=name1363; charset=funny; option=strange
|
test1387 | 19 Content-Disposition: filename=name1387; charset=funny; option=strange
62 Content-Disposition: filename=name1387; charset=funny; option=strange
|
test1388 | 19 Content-Disposition: filename=name1388; charset=funny; option=strange
62 Content-Disposition: filename=name1388; charset=funny; option=strange
|
test1389 | 20 Content-Disposition: filename=name1389; charset=funny; option=strange
63 Content-Disposition: filename=name1389; charset=funny; option=strange
|
test1390 | 20 Content-Disposition: filename=name1390; charset=funny; option=strange
63 Content-Disposition: filename=name1390; charset=funny; option=strange
|
test1391 | 19 Content-Disposition: filename=name1391; charset=funny; option=strange
62 Content-Disposition: filename=name1391; charset=funny; option=strange
|
test1392 | 19 Content-Disposition: filename=name1392; charset=funny; option=strange
62 Content-Disposition: filename=name1392; charset=funny; option=strange
|
test1053 | 86 Content-Disposition: form-data; name="name"
90 Content-Disposition: form-data; name="tool"
94 Content-Disposition: form-data; name="file"; filename="test1053.txt"
111 Content-Disposition: form-data; name="name"
115 Content-Disposition: form-data; name="tool"
119 Content-Disposition: form-data; name="file"; filename="test1053.txt"
|
test258 | 91 Content-Disposition: form-data; name="name"
95 Content-Disposition: form-data; name="tool"
99 Content-Disposition: form-data; name="file"; filename="test258.txt"
117 Content-Disposition: form-data; name="name"
121 Content-Disposition: form-data; name="tool"
125 Content-Disposition: form-data; name="file"; filename="test258.txt"
|
test259 | 88 Content-Disposition: form-data; name="name"
92 Content-Disposition: form-data; name="tool"
96 Content-Disposition: form-data; name="file"; filename="test259.txt"
115 Content-Disposition: form-data; name="name"
119 Content-Disposition: form-data; name="tool"
123 Content-Disposition: form-data; name="file"; filename="test259.txt"
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
PduParserUtil.java | 26 * Get the config of whether Content-Disposition header is supported
|
/prebuilts/gdb/darwin-x86/lib/python2.7/email/test/data/ |
msg_32.txt | 8 Content-Disposition: inline
|
/prebuilts/gdb/linux-x86/lib/python2.7/email/test/data/ |
msg_32.txt | 8 Content-Disposition: inline
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_32.txt | 8 Content-Disposition: inline
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_32.txt | 8 Content-Disposition: inline
|
/frameworks/base/core/res/res/values-mcc310-mnc120/ |
config.xml | 31 <!-- If this value is true, The mms content-disposition field is supported correctly. 32 If false, Content-disposition fragments are ignored -->
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ |
exception.py | 491 # Enum class for resumable upload failure disposition. 520 self.disposition is of type ResumableTransferDisposition. 523 def __init__(self, message, disposition): 524 super(ResumableUploadException, self).__init__(message, disposition) 526 self.disposition = disposition 530 self.message, self.disposition) 537 self.disposition is of type ResumableTransferDisposition. 540 def __init__(self, message, disposition): 541 super(ResumableDownloadException, self).__init__(message, disposition) [all...] |
/external/libbrillo/brillo/http/ |
http_form_data.h | 38 // Content-Disposition: form-data; name="field1" 43 // |name| = the part name ("name" parameter of Content-Disposition header; 45 // |content_disposition| = the part disposition ("form-data" in the example) 55 // Returns the full Content-Disposition header value. This might include the 56 // disposition type itself as well as the field "name" and/or "filename" 75 // Form field name. If not empty, it will be appended to Content-Disposition 79 // Form field disposition. Most of the time this will be "form-data". But for 123 // Used in "filename" parameter of Content-Disposition header. 135 // Appends "filename" parameter to Content-Disposition header.
|
/external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/ |
tracer.c | 61 static void CTracer_disable_plugin(CTracer *self, PyObject * disposition); 325 PyObject * disposition = NULL; local 354 disposition = PyDict_GetItem(self->should_trace_cache, filename); 355 if (disposition == NULL) { 364 disposition = PyObject_CallFunctionObjArgs(self->should_trace, filename, frame, NULL); 365 if (disposition == NULL) { 369 if (PyDict_SetItem(self->should_trace_cache, filename, disposition) < 0) { 374 Py_INCREF(disposition); 377 if (disposition == Py_None) { 383 pdisp = (CFileDisposition *) disposition; [all...] |