Home
last modified time | relevance | path

Searched refs:boundary (Results 1 – 25 of 104) sorted by relevance

12345

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dgenerator.py206 boundary = msg.get_boundary()
207 if not boundary:
211 boundary = _make_boundary(alltext)
212 msg.set_boundary(boundary)
217 print >> self._fp, '--' + boundary
226 print >> self._fp, '\n--' + boundary
230 self._fp.write('\n--' + boundary + '--')
353 boundary = ('=' * 15) + (_fmt % token) + '=='
355 return boundary
356 b = boundary
[all …]
Dmessage.py696 boundary = self.get_param('boundary', missing)
697 if boundary is missing:
700 return utils.collapse_rfc2231_value(boundary).rstrip()
702 def set_boundary(self, boundary): argument
722 newparams.append(('boundary', '"%s"' % boundary))
730 newparams.append(('boundary', '"%s"' % boundary))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/
Dmultipart.py16 def __init__(self, _subtype='mixed', boundary=None, _subparts=None, argument
46 if boundary:
47 self.set_boundary(boundary)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/data/
Dmsg_38.txt2 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0"
5 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1"
9 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa2"
19 Unlike the test test_nested-multiples-with-internal-boundary, this
20 piece of text not only contains the outer boundary tags
49 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa3"
71 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa4"
Dmsg_39.txt2 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0"
5 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1"
9 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1"
31 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1"
53 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1"
Dmsg_42.txt1 Content-Type: multipart/mixed; boundary="AAA"
16 Content-Type: multipart/mixed; boundary="BBB"
Dmsg_12.txt6 Content-Type: multipart/mixed; boundary="BOUNDARY"
17 Content-Type: multipart/mixed; boundary="ANOTHER"
Dmsg_12a.txt6 Content-Type: multipart/mixed; boundary="BOUNDARY"
17 Content-Type: multipart/mixed; boundary="ANOTHER"
Dmsg_15.txt10 boundary="MS_Mac_OE_3071477847_720252_MIME_Part"
16 boundary="MS_Mac_OE_3071477847_720252_MIME_Part"
Dmsg_40.txt2 Content-Type: text/html; boundary="--961284236552522269"
Dmsg_23.txt2 Content-Type: multipart/mixed; boundary="BOUNDARY"
Dmsg_24.txt1 Content-Type: multipart/mixed; boundary="BOUNDARY"
Dmsg_31.txt3 Content-Type: multipart/mixed; boundary=BOUNDARY_
Dmsg_37.txt1 Content-Type: multipart/mixed; boundary=ABCDE
Dmsg_17.txt6 Content-Type: multipart/mixed; boundary="BOUNDARY"
Dmsg_34.txt3 Content-Type: multipart/digest; boundary=XYZ
Dmsg_30.txt3 Content-Type: multipart/digest; boundary=BOUNDARY
Dmsg_21.txt4 Content-Type: multipart/mixed; boundary="BOUNDARY"
Dmsg_09.txt6 Content-Type: multipart/mixed; boundary="BOUNDARY"
Dmsg_08.txt6 Content-Type: multipart/mixed; boundary="BOUNDARY"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_multifile.py46 boundary = msg.getparam("boundary")
49 mf.push(boundary)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dmimify.py51 def __init__(self, file, boundary): argument
53 self.boundary = boundary
62 if self.boundary:
63 if line == self.boundary + '\n':
66 if line == self.boundary + '--\n':
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
DMimeWriter.py145 def startmultipartbody(self, subtype, boundary=None, plist=[], prefix=1): argument
158 self._boundary = boundary or mimetools.choose_boundary()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dupload.py138 boundary = '--------------GHSKFJDLGDS7543FJKLFHRE75642756743254'
139 sep_boundary = '\n--' + boundary
168 'multipart/form-data; boundary=%s' % boundary,
Dregister.py260 boundary = '--------------GHSKFJDLGDS7543FJKLFHRE75642756743254'
261 sep_boundary = '\n--' + boundary
281 'Content-type': 'multipart/form-data; boundary=%s; charset=utf-8'%boundary,

12345