Searched refs:writeback (Results 1 – 2 of 2) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | shelve.py | 92 def __init__(self, dict, protocol=None, writeback=False): argument 97 self.writeback = writeback 123 if self.writeback: 128 if self.writeback: 162 if self.writeback and self.cache: 163 self.writeback = False 166 self.writeback = True 185 def __init__(self, dict, protocol=None, writeback=False): argument 186 Shelf.__init__(self, dict, protocol, writeback) 221 def __init__(self, filename, flag='c', protocol=None, writeback=False): argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_shelve.py | 15 s = shelve.Shelf(d1, protocol=2, writeback=False) 75 s = shelve.Shelf(d1, protocol=2, writeback=False) 83 s = shelve.Shelf(d2, protocol=2, writeback=True) 96 s = shelve.Shelf(d, writeback=True)
|