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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dumbdbm.py 55 self._dirfile = filebasename + _os.extsep + 'dir'
80 f = _open(self._dirfile)
106 self._os.rename(self._dirfile, self._bakfile)
110 f = self._open(self._dirfile, 'w')
111 self._chmod(self._dirfile)
157 f = _open(self._dirfile, 'a')
158 self._chmod(self._dirfile)
216 self._index = self._datfile = self._dirfile = self._bakfile = None
  /external/python/cpython2/Lib/
dumbdbm.py 57 self._dirfile = filebasename + _os.extsep + 'dir'
83 f = _open(self._dirfile)
110 self._os.rename(self._dirfile, self._bakfile)
114 with self._open(self._dirfile, 'w') as f:
115 self._chmod(self._dirfile)
157 with _open(self._dirfile, 'a') as f:
158 self._chmod(self._dirfile)
219 self._index = self._datfile = self._dirfile = self._bakfile = None
  /external/python/cpython3/Lib/dbm/
dumb.py 57 self._dirfile = filebasename + '.dir'
75 for filename in (self._datfile, self._bakfile, self._dirfile):
98 f = _io.open(self._dirfile, 'r', encoding="Latin-1")
131 self._os.rename(self._dirfile, self._bakfile)
135 with self._io.open(self._dirfile, 'w', encoding="Latin-1") as f:
136 self._chmod(self._dirfile)
188 with _io.open(self._dirfile, 'a', encoding="Latin-1") as f:
189 self._chmod(self._dirfile)
286 self._index = self._datfile = self._dirfile = self._bakfile = None

Completed in 109 milliseconds