HomeSort by relevance Sort by last modified time
    Searched full:binhex (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/python/cpython3/Lib/test/
test_binhex.py 1 """Test script for the binhex C module
3 Uses the mechanism of the python binhex module
6 import binhex
30 binhex.binhex(self.fname1, self.fname2)
32 binhex.hexbin(self.fname2, self.fname1)
42 The testcase fails if no exception is raised when a filename parameter provided to binhex.binhex()
43 is too long, or if the exception raised in binhex.binhex() is not an instance of binhex.Error
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_binhex.py 2 """Test script for the binhex C module
4 Uses the mechanism of the python binhex module
7 import binhex
33 binhex.binhex(self.fname1, self.fname2)
35 binhex.hexbin(self.fname2, self.fname1)
  /external/python/cpython2/Lib/test/
test_binhex.py 1 """Test script for the binhex C module
3 Uses the mechanism of the python binhex module
6 import binhex
32 binhex.binhex(self.fname1, self.fname2)
34 binhex.hexbin(self.fname2, self.fname1)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_binhex.py 2 """Test script for the binhex C module
4 Uses the mechanism of the python binhex module
7 import binhex
33 binhex.binhex(self.fname1, self.fname2)
35 binhex.hexbin(self.fname2, self.fname1)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_binhex.py 2 """Test script for the binhex C module
4 Uses the mechanism of the python binhex module
7 import binhex
33 binhex.binhex(self.fname1, self.fname2)
35 binhex.hexbin(self.fname2, self.fname1)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_binhex.py 2 """Test script for the binhex C module
4 Uses the mechanism of the python binhex module
7 import binhex
33 binhex.binhex(self.fname1, self.fname2)
35 binhex.hexbin(self.fname2, self.fname1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_binhex.py 2 """Test script for the binhex C module
4 Uses the mechanism of the python binhex module
7 import binhex
33 binhex.binhex(self.fname1, self.fname2)
35 binhex.hexbin(self.fname2, self.fname1)
  /external/python/cpython3/Doc/library/
binhex.rst 1 :mod:`binhex` --- Encode and decode binhex4 files
4 .. module:: binhex
7 **Source code:** :source:`Lib/binhex.py`
14 The :mod:`binhex` module defines the following functions:
17 .. function:: binhex(input, output)
19 Convert a binary file with filename *input* to binhex file *output*. The
26 Decode a binhex file *input*. *input* may be a filename or a file-like object
29 output filename is read from the binhex file.
36 Exception raised when something can't be encoded using the binhex format (for
38 not properly encoded binhex data
    [all...]
netdata.rst 20 binhex.rst
binascii.rst 11 module: binhex
18 :mod:`base64`, or :mod:`binhex` instead. The :mod:`binascii` module contains
179 Module :mod:`binhex`
180 Support for the binhex format used on the Macintosh.
  /external/python/cpython2/Doc/library/
binhex.rst 1 :mod:`binhex` --- Encode and decode binhex4 files
4 .. module:: binhex
18 The :mod:`binhex` module defines the following functions:
21 .. function:: binhex(input, output)
23 Convert a binary file with filename *input* to binhex file *output*. The
30 Decode a binhex file *input*. *input* may be a filename or a file-like object
33 output filename is read from the binhex file.
40 Exception raised when something can't be encoded using the binhex format (for
42 not properly encoded binhex data.
netdata.rst 26 binhex.rst
binascii.rst 13 module: binhex
18 :mod:`base64`, or :mod:`binhex` instead. The :mod:`binascii` module contains
172 Module :mod:`binhex`
173 Support for the binhex format used on the Macintosh.
  /external/dhcpcd-6.8.2/
dhcpcd-embedded.c 98 "define 60 binhex vendor_class_identifier",
99 "define 61 binhex dhcp_client_identifier",
113 "define 77 binhex user_class",
135 "embed binhex:8 replay",
136 "embed binhex information",
165 "define 123 binhex geoconf",
166 "define 124 binhex vivco",
183 "define 144 binhex geoloc",
191 "define 208 binhex pxelinux_magic",
199 "encap 1 binhex vpn_id"
    [all...]
dhcpcd-definitions.conf 61 define 43 binhex vendor_encapsulated_options
78 define 60 binhex vendor_class_identifier
79 define 61 binhex dhcp_client_identifier
95 define 77 binhex user_class
133 embed binhex:8 replay
134 embed binhex information
197 define 123 binhex geoconf
200 define 124 binhex vivco
240 define 144 binhex geoloc
263 define 208 binhex pxelinux_magi
    [all...]
dhcp-common.h 57 #define BINHEX (1 << 14)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
binhex.py 1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
173 class BinHex:
179 ofp.write('(This file must be converted with BinHex 4.0)\n\n:')
256 def binhex(inp, out): function
257 """(infilename, outfilename) - Create binhex-encoded copy of a file"""
259 ofp = BinHex(finfo, out)
311 'Premature EOF on binhex file'
316 raise Error, 'Premature EOF on binhex file'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
binhex.py 1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
172 class BinHex:
178 ofp.write('(This file must be converted with BinHex 4.0)\n\n:')
250 def binhex(inp, out): function
251 """(infilename, outfilename) - Create binhex-encoded copy of a file"""
253 ofp = BinHex(finfo, out)
305 'Premature EOF on binhex file'
310 raise Error, 'Premature EOF on binhex file'
    [all...]
  /external/python/cpython2/Lib/
binhex.py 1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
173 class BinHex:
179 ofp.write('(This file must be converted with BinHex 4.0)\n\n:')
256 def binhex(inp, out): function
257 """(infilename, outfilename) - Create binhex-encoded copy of a file"""
259 ofp = BinHex(finfo, out)
311 'Premature EOF on binhex file'
316 raise Error, 'Premature EOF on binhex file
    [all...]
  /external/python/cpython3/Lib/
binhex.py 1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
139 class BinHex:
148 ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:')
233 def binhex(inp, out): function
234 """binhex(infilename, outfilename): create binhex-encoded copy of a file"""
236 ofp = BinHex(finfo, out)
285 raise Error('Premature EOF on binhex file'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
binhex.py 1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
172 class BinHex:
178 ofp.write('(This file must be converted with BinHex 4.0)\n\n:')
250 def binhex(inp, out): function
251 """(infilename, outfilename) - Create binhex-encoded copy of a file"""
253 ofp = BinHex(finfo, out)
305 'Premature EOF on binhex file'
310 raise Error, 'Premature EOF on binhex file
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
binhex.py 1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
172 class BinHex:
178 ofp.write('(This file must be converted with BinHex 4.0)\n\n:')
250 def binhex(inp, out): function
251 """(infilename, outfilename) - Create binhex-encoded copy of a file"""
253 ofp = BinHex(finfo, out)
305 'Premature EOF on binhex file'
310 raise Error, 'Premature EOF on binhex file
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
172 class BinHex:
178 ofp.write('(This file must be converted with BinHex 4.0)\n\n:')
250 def binhex(inp, out): function
251 """(infilename, outfilename) - Create binhex-encoded copy of a file"""
253 ofp = BinHex(finfo, out)
305 'Premature EOF on binhex file'
310 raise Error, 'Premature EOF on binhex file
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
172 class BinHex:
178 ofp.write('(This file must be converted with BinHex 4.0)\n\n:')
250 def binhex(inp, out): function
251 """(infilename, outfilename) - Create binhex-encoded copy of a file"""
253 ofp = BinHex(finfo, out)
305 'Premature EOF on binhex file'
310 raise Error, 'Premature EOF on binhex file
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
binascii.so 

Completed in 506 milliseconds

1 2 3