/external/python/cpython2/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: 166 if self.writeback and self.cache: 167 self.writeback = False 170 self.writeback = True 189 def __init__(self, dict, protocol=None, writeback=False): argument 190 Shelf.__init__(self, dict, protocol, writeback) 225 def __init__(self, filename, flag='c', protocol=None, writeback=False): argument [all …]
|
/external/python/cpython3/Lib/ |
D | shelve.py | 84 def __init__(self, dict, protocol=None, writeback=False, argument 90 self.writeback = writeback 115 if self.writeback: 120 if self.writeback: 165 if self.writeback and self.cache: 166 self.writeback = False 169 self.writeback = True 188 def __init__(self, dict, protocol=None, writeback=False, argument 190 Shelf.__init__(self, dict, protocol, writeback, keyencoding) 225 def __init__(self, filename, flag='c', protocol=None, writeback=False): argument [all …]
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/ |
D | available_events | 70 writeback:writeback_start 71 writeback:writeback_wake_background 72 writeback:writeback_queue 73 writeback:writeback_queue_io 74 writeback:writeback_exec 75 writeback:writeback_wait_iff_congested 76 writeback:writeback_single_inode 77 writeback:writeback_pages_written 78 writeback:writeback_nothread 79 writeback:writeback_thread_stop [all …]
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/ |
D | available_events | 90 writeback:writeback_start 91 writeback:writeback_wake_background 92 writeback:writeback_dirty_page 93 writeback:writeback_queue 94 writeback:writeback_queue_io 95 writeback:writeback_exec 96 writeback:writeback_wait_iff_congested 97 writeback:writeback_single_inode 98 writeback:writeback_pages_written 99 writeback:writeback_write_inode [all …]
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/ |
D | available_events | 111 writeback:writeback_single_inode 112 writeback:writeback_single_inode_start 113 writeback:writeback_wait_iff_congested 114 writeback:writeback_congestion_wait 115 writeback:writeback_sb_inodes_requeue 116 writeback:balance_dirty_pages 117 writeback:bdi_dirty_ratelimit 118 writeback:global_dirty_state 119 writeback:writeback_queue_io 120 writeback:wbc_writepage [all …]
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/ |
D | available_events | 224 writeback:writeback_dirty_page 225 writeback:writeback_mark_inode_dirty 226 writeback:writeback_dirty_inode_start 227 writeback:writeback_dirty_inode 228 writeback:writeback_write_inode_start 229 writeback:writeback_write_inode 230 writeback:writeback_queue 231 writeback:writeback_exec 232 writeback:writeback_start 233 writeback:writeback_written [all …]
|
/external/u-boot/post/cpu/mpc83xx/ |
D | ecc.c | 51 u32 pattern[2], writeback[2], retval[2]; in ecc_post_test() local 60 writeback[0] = ~pattern[0]; in ecc_post_test() 61 writeback[1] = ~pattern[1]; in ecc_post_test() 134 ppcDWstore((u32*)addr, writeback); in ecc_post_test()
|
/external/capstone/bindings/java/capstone/ |
D | Arm.java | 90 public byte writeback; field in Arm.UnionOpInfo 131 public boolean writeback; field in Arm.OpInfo 143 writeback = (op_info.writeback > 0); in OpInfo()
|
D | Arm64.java | 117 public boolean writeback; field in Arm64.OpInfo 123 writeback = (op_info._writeback > 0); in OpInfo()
|
/external/python/cpython3/Doc/library/ |
D | shelve.rst | 20 .. function:: open(filename, flag='c', protocol=None, writeback=False) 34 optional *writeback* parameter is set to ``True``, all entries accessed are also 65 Write back all entries in the cache if the shelf was opened with *writeback* 106 .. class:: Shelf(dict, protocol=None, writeback=False, keyencoding='utf-8') 115 If the *writeback* parameter is ``True``, the object will hold a cache of all 134 .. class:: BsdDbShelf(dict, protocol=None, writeback=False, keyencoding='utf-8') 143 optional *protocol*, *writeback*, and *keyencoding* parameters have the same 147 .. class:: DbfilenameShelf(filename, flag='c', protocol=None, writeback=False) 153 function. The optional *protocol* and *writeback* parameters have the same 180 # as d was opened WITHOUT writeback=True, beware: [all …]
|
/external/python/cpython2/Doc/library/ |
D | shelve.rst | 21 .. function:: open(filename, flag='c', protocol=None, writeback=False) 38 optional *writeback* parameter is set to ``True``, all entries accessed are also 67 Write back all entries in the cache if the shelf was opened with *writeback* 109 .. class:: Shelf(dict, protocol=None, writeback=False) 121 If the *writeback* parameter is ``True``, the object will hold a cache of all 127 .. class:: BsdDbShelf(dict, protocol=None, writeback=False) 134 :func:`bsddb.rnopen`. The optional *protocol* and *writeback* parameters have 138 .. class:: DbfilenameShelf(filename, flag='c', protocol=None, writeback=False) 144 function. The optional *protocol* and *writeback* parameters have the same 170 # as d was opened WITHOUT writeback=True, beware: [all …]
|
/external/u-boot/arch/powerpc/cpu/mpc83xx/ |
D | ecc.c | 113 u32 writeback[2]; in do_ecc() local 120 writeback[0] = 0x01234567UL; in do_ecc() 121 writeback[1] = 0x89abcdefUL; in do_ecc() 304 ppcDWstore((u32 *) i, writeback); in do_ecc() 346 ppcDWstore((u32 *) i, writeback); in do_ecc()
|
/external/python/cpython3/Lib/test/ |
D | test_shelve.py | 52 s = shelve.Shelf(d1, protocol=2, writeback=False) 105 with shelve.Shelf(d1, protocol=2, writeback=False) as s: 112 with shelve.Shelf(d2, protocol=2, writeback=True) as s: 139 with shelve.Shelf(d, writeback=True) as s: 148 with shelve.Shelf(d1, protocol=2, writeback=False) as s:
|
/external/python/cpython2/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)
|
/external/llvm/test/MC/ARM/ |
D | thumb-diagnostics.s | 58 @ Invalid writeback and register lists for LDM 74 @ CHECK-ERRORS: error: writeback operator '!' expected 77 @ CHECK-ERRORS: error: writeback operator '!' not allowed when base register in register list 80 @ CHECK-ERRORS-V8: error: writeback operator '!' not allowed when base register in register list 83 @ CHECK-ERRORS-V8: error: writeback register not allowed in register list 108 @ Invalid writeback and register lists for PUSH/POP 119 @ Invalid writeback and register lists for STM 134 @ CHECK-ERRORS-V8: error: writeback operator '!' not allowed when base register in register list 137 @ CHECK-ERRORS-V8: error: writeback register not allowed in register list
|
/external/drm_hwcomposer/drm/ |
D | drmconnector.cpp | 61 if (writeback()) { in Init() 109 bool DrmConnector::writeback() const { in writeback() function in android::DrmConnector 118 return internal() || external() || writeback(); in valid_type()
|
/external/llvm/test/MC/AArch64/ |
D | arm64-diags.s | 155 ; Load pair instructions where Rt==Rt2 and writeback load/store instructions 182 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 185 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 188 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 191 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 224 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 227 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 230 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 233 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 236 ; CHECK-ERRORS: error: unpredictable STR instruction, writeback base is also a source [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/ |
D | arm64-diags.s | 155 ; Load pair instructions where Rt==Rt2 and writeback load/store instructions 182 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 185 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 188 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 191 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 224 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 227 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 230 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 233 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 236 ; CHECK-ERRORS: error: unpredictable STR instruction, writeback base is also a source [all …]
|
/external/clang/lib/CodeGen/ |
D | CGCall.h | 93 Writeback writeback = { srcLV, temporary, toUse }; in addWriteback() local 94 Writebacks.push_back(writeback); in addWriteback()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/ |
D | thumb-diagnostics.s | 87 @ Invalid writeback and register lists for LDM 103 @ CHECK-ERRORS: error: writeback operator '!' expected 106 @ CHECK-ERRORS: error: writeback operator '!' not allowed when base register in register list 109 @ CHECK-ERRORS-V8: error: writeback operator '!' not allowed when base register in register list 112 @ CHECK-ERRORS-V8: error: writeback register not allowed in register list 137 @ Invalid writeback and register lists for PUSH/POP 148 @ Invalid writeback and register lists for STM 165 @ CHECK-ERRORS-V8: error: writeback operator '!' not allowed when base register in register list 168 @ CHECK-ERRORS-V8: error: writeback register not allowed in register list
|
/external/autotest/client/tests/wb_kupdate/ |
D | README | 5 and waiting a maximum of 'max_flush_time' for writeback to flush the dirty
|
/external/capstone/bindings/ocaml/ |
D | arm64.ml | 44 writeback: bool; RecordField
|
D | arm.ml | 49 writeback: bool; RecordField
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/writeback/global_dirty_state/ |
D | format | 18 print fmt: "dirty=%lu writeback=%lu unstable=%lu bg_thresh=%lu thresh=%lu limit=%lu dirtied=%lu wri…
|
/external/drm_hwcomposer/include/ |
D | drmconnector.h | 50 bool writeback() const;
|