HomeSort by relevance Sort by last modified time
    Searched refs:_datfile (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dumbdbm.py 61 self._datfile = filebasename + _os.extsep + 'dat'
69 f = _open(self._datfile, 'r')
71 f = _open(self._datfile, 'w')
72 self._chmod(self._datfile)
120 f = _open(self._datfile, 'rb')
131 f = _open(self._datfile, 'rb+')
146 f = _open(self._datfile, 'rb+')
216 self._index = self._datfile = self._dirfile = self._bakfile = None
  /external/python/cpython2/Lib/
dumbdbm.py 63 self._datfile = filebasename + _os.extsep + 'dat'
71 f = _open(self._datfile, 'r')
73 with _open(self._datfile, 'w') as f:
74 self._chmod(self._datfile)
123 with _open(self._datfile, 'rb') as f:
133 with _open(self._datfile, 'rb+') as f:
147 with _open(self._datfile, 'rb+') as f:
219 self._index = self._datfile = self._dirfile = self._bakfile = None
  /prebuilts/gdb/darwin-x86/lib/python2.7/
dumbdbm.py 61 self._datfile = filebasename + _os.extsep + 'dat'
69 f = _open(self._datfile, 'r')
71 f = _open(self._datfile, 'w')
72 self._chmod(self._datfile)
120 f = _open(self._datfile, 'rb')
131 f = _open(self._datfile, 'rb+')
146 f = _open(self._datfile, 'rb+')
216 self._index = self._datfile = self._dirfile = self._bakfile = None
  /prebuilts/gdb/linux-x86/lib/python2.7/
dumbdbm.py 61 self._datfile = filebasename + _os.extsep + 'dat'
69 f = _open(self._datfile, 'r')
71 f = _open(self._datfile, 'w')
72 self._chmod(self._datfile)
120 f = _open(self._datfile, 'rb')
131 f = _open(self._datfile, 'rb+')
146 f = _open(self._datfile, 'rb+')
216 self._index = self._datfile = self._dirfile = self._bakfile = None
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dumbdbm.py 61 self._datfile = filebasename + _os.extsep + 'dat'
69 f = _open(self._datfile, 'r')
71 f = _open(self._datfile, 'w')
72 self._chmod(self._datfile)
120 f = _open(self._datfile, 'rb')
131 f = _open(self._datfile, 'rb+')
146 f = _open(self._datfile, 'rb+')
216 self._index = self._datfile = self._dirfile = self._bakfile = None
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dumbdbm.py 61 self._datfile = filebasename + _os.extsep + 'dat'
69 f = _open(self._datfile, 'r')
71 f = _open(self._datfile, 'w')
72 self._chmod(self._datfile)
120 f = _open(self._datfile, 'rb')
131 f = _open(self._datfile, 'rb+')
146 f = _open(self._datfile, 'rb+')
216 self._index = self._datfile = self._dirfile = self._bakfile = None
  /external/python/cpython3/Lib/dbm/
dumb.py 63 self._datfile = filebasename + '.dat'
75 for filename in (self._datfile, self._bakfile, self._dirfile):
82 f = _io.open(self._datfile, 'r', encoding="Latin-1")
89 with _io.open(self._datfile, 'w', encoding="Latin-1") as f:
90 self._chmod(self._datfile)
149 with _io.open(self._datfile, 'rb') as f:
159 with _io.open(self._datfile, 'rb+') as f:
173 with _io.open(self._datfile, 'rb+') as f:
281 self._index = self._datfile = self._dirfile = self._bakfile = None

Completed in 216 milliseconds