Home
last modified time | relevance | path

Searched refs:opened (Results 1 – 25 of 526) sorted by relevance

12345678910>>...22

/external/python/pyfakefs/pyfakefs/tests/
Dfake_stat_time_test.py77 opened = self.stat_time(self.file_path)
80 return before, opened, closed
87 opened = self.stat_time(self.file_path)
92 return before, opened, written, closed
99 opened = self.stat_time(self.file_path)
104 return before, opened, flushed, closed
111 opened = self.stat_time(self.file_path)
118 return before, opened, written, flushed, closed
125 opened = self.stat_time(self.file_path)
132 return before, opened, read, flushed, closed
[all …]
/external/e2fsprogs/lib/blkid/
Dsave.c66 const char *opened = NULL; in blkid_flush_cache() local
107 opened = tmp; in blkid_flush_cache()
119 opened = filename; in blkid_flush_cache()
124 filename, opened)); in blkid_flush_cache()
145 if (opened != filename) { in blkid_flush_cache()
147 (void) unlink(opened); in blkid_flush_cache()
149 printf("unlinked temp cache %s\n", opened)); in blkid_flush_cache()
160 if (rename(opened, filename) < 0) in blkid_flush_cache()
161 (void) unlink(opened); in blkid_flush_cache()
163 printf("moved temp cache %s\n", opened)); in blkid_flush_cache()
/external/exoplayer/tree/library/hls/src/test/java/com/google/android/exoplayer2/source/hls/
DAes128DataSourceTest.java41 assertThat(upstream.opened).isFalse(); in test_OpenCallsUpstreamOpen_CloseCallsUpstreamClose()
45 assertThat(upstream.opened).isTrue(); in test_OpenCallsUpstreamOpen_CloseCallsUpstreamClose()
48 assertThat(upstream.opened).isFalse(); in test_OpenCallsUpstreamOpen_CloseCallsUpstreamClose()
61 assertThat(upstream.opened).isFalse(); in test_OpenCallsUpstreamThrowingOpen_CloseCallsUpstreamClose()
69 assertThat(upstream.opened).isFalse(); in test_OpenCallsUpstreamThrowingOpen_CloseCallsUpstreamClose()
99 public boolean opened; field in Aes128DataSourceTest.UpstreamDataSource
107 opened = true; in open()
123 opened = false; in close()
/external/swiftshader/.vscode/
Dtasks.json6 // ${file}: the current opened file
7 // ${fileBasename}: the current opened file's basename
8 // ${fileDirname}: the current opened file's dirname
9 // ${fileExtname}: the current opened file's extension
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/upstream/
DByteArrayDataSource.java32 private boolean opened; field in ByteArrayDataSource
55 opened = true; in open()
84 if (opened) { in close()
85 opened = false; in close()
DAssetDataSource.java49 private boolean opened; field in AssetDataSource
90 opened = true; in open()
143 if (opened) { in close()
144 opened = false; in close()
DUdpDataSource.java60 private boolean opened; field in UdpDataSource
117 opened = true; in open()
170 if (opened) { in close()
171 opened = false; in close()
DDataSourceInputStream.java33 private boolean opened = false; field in DataSourceInputStream
100 if (!opened) { in checkOpened()
102 opened = true; in checkOpened()
DFileDataSource.java74 private boolean opened; field in FileDataSource
99 opened = true; in open()
146 if (opened) { in close()
147 opened = false; in close()
DContentDataSource.java52 private boolean opened; field in ContentDataSource
102 opened = true; in open()
165 if (opened) { in close()
166 opened = false; in close()
DRawResourceDataSource.java74 private boolean opened; field in RawResourceDataSource
128 opened = true; in open()
191 if (opened) { in close()
192 opened = false; in close()
/external/mesa3d/src/intel/tools/
Daubinator_viewer.cpp237 bool opened; member
386 window->base.opened = true; in new_shader_window()
449 window->base.opened = true; in new_urb_window()
521 window->base.opened = true; in new_edit_window()
611 if (window->base.opened) { in show_pml4_window()
612 window->base.opened = false; in show_pml4_window()
622 window->base.opened = true; in show_pml4_window()
791 child_window->opened = false; in destroy_batch_window()
792 window->pml4_window.base.opened = false; in destroy_batch_window()
809 window->base.opened = true; in new_batch_window()
[all …]
/external/scapy/scapy/
Dscapypipes.py288 self.opened = start_state
290 if self.opened:
293 if self.opened:
296 self.opened ^= True
309 self.opened = start_state
314 if self.opened:
319 if self.opened:
324 self.opened ^= True
/external/ImageMagick/MagickWand/
Dscript-token.c215 token_info->opened=MagickFalse; in AcquireScriptTokenInfo()
218 token_info->opened=MagickFalse; in AcquireScriptTokenInfo()
222 token_info->opened=MagickFalse; in AcquireScriptTokenInfo()
271 if ( token_info->opened != MagickFalse ) in DestroyScriptTokenInfo()
/external/exoplayer/tree/extensions/cronet/src/main/java/com/google/android/exoplayer2/ext/cronet/
DCronetDataSource.java133 private boolean opened; field in CronetDataSource
418 Assertions.checkState(!opened); in open()
490 opened = true; in open()
498 Assertions.checkState(opened); in read()
569 Assertions.checkState(opened); in read()
665 if (opened) { in close()
666 opened = false; in close()
737 boolean opened = false; in blockUntilConnectTimeout()
738 while (!opened && now < currentConnectTimeoutMs) { in blockUntilConnectTimeout()
739 opened = operation.block(currentConnectTimeoutMs - now + 5 /* fudge factor */); in blockUntilConnectTimeout()
[all …]
/external/python/cpython3/Doc/c-api/
Dmarshal.rst11 read the data back. Files used to store marshalled data must be opened in
46 Return a C :c:type:`long` from the data stream in a :c:type:`FILE*` opened
56 Return a C :c:type:`short` from the data stream in a :c:type:`FILE*` opened
66 Return a Python object from the data stream in a :c:type:`FILE*` opened for
75 Return a Python object from the data stream in a :c:type:`FILE*` opened for
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/upstream/
DByteArrayDataSourceTest.java113 boolean opened = false; in readTestData()
117 opened = true; in readTestData()
153 if (expectFailOnOpen && !opened) { in readTestData()
/external/python/cpython2/Doc/c-api/
Dmarshal.rst11 read the data back. Files used to store marshalled data must be opened in
60 Return a C :c:type:`long` from the data stream in a :c:type:`FILE\*` opened
67 Return a C :c:type:`short` from the data stream in a :c:type:`FILE\*` opened
74 Return a Python object from the data stream in a :c:type:`FILE\*` opened for
81 Return a Python object from the data stream in a :c:type:`FILE\*` opened for
/external/python/cpython2/Doc/library/
Dfileinput.rst28 All files are opened in text mode by default, but you can override this by
37 Empty files are opened and immediately closed; the only time their presence in
38 the list of filenames is noticeable at all is when the last file opened is
44 You can control how files are opened by providing an opening hook via the
47 returns an accordingly opened file-like object. Two useful hooks are already
79 opened (before the first line and between files), returns ``-1``.
143 *filename* and *mode*, and returns an accordingly opened file-like object. You
175 opened normally (ie, using :func:`open` without any decompression).
/external/python/cpython3/Doc/library/
Dfileinput.rst30 All files are opened in text mode by default, but you can override this by
42 Empty files are opened and immediately closed; the only time their presence in
43 the list of filenames is noticeable at all is when the last file opened is
49 You can control how files are opened by providing an opening hook via the
52 returns an accordingly opened file-like object. Two useful hooks are already
93 opened (before the first line and between files), returns ``-1``.
155 *filename* and *mode*, and returns an accordingly opened file-like object. You
199 opened normally (ie, using :func:`open` without any decompression).
/external/llvm-project/flang/test/Semantics/
Dio05.f9024 exist=v(1), named=v(2), opened=v(3), pending=v(4))
38 exist=lv, named=lv, opened=lv, pending=lv)
/external/libiio/src/
Dserial.c41 bool opened; member
78 if (pdata->opened) in serial_open()
84 pdata->opened = !ret; in serial_open()
99 if (!pdata->opened) in serial_close()
103 pdata->opened = false; in serial_close()
/external/autotest/server/site_tests/firmware_Cr50Open/
Dcontrol.ccd_open_restricted16 Verify the console can be opened by pressing the power button after the device
17 has been put into dev mode. Make sure cr50 can't be opened when the device isn't
Dcontrol.faft_cr50_tot16 Verify the console can be opened by pressing the power button after the device
17 has been put into dev mode. Make sure cr50 can't be opened when the device isn't
Dcontrol.ccd_open_unrestricted16 Verify the console can be opened by pressing the power button after the device
17 has been put into dev mode. Make sure cr50 can't be opened when the device isn't

12345678910>>...22