/external/ltp/testcases/kernel/fs/ext4-new-features/ext4-nsec-timestamps/ |
D | ext4_nsec_timestamps_test.sh | 50 touch mnt_point/tmp_file 52 atime=`ext4_file_time mnt_point/tmp_file atime nsec` 53 mtime=`ext4_file_time mnt_point/tmp_file mtime nsec` 54 ctime=`ext4_file_time mnt_point/tmp_file ctime nsec` 90 touch mnt_point/tmp_file 94 touch mnt_point/tmp_file 100 sec_atime=`ext4_file_time mnt_point/tmp_file atime sec` 101 sec_mtime=`ext4_file_time mnt_point/tmp_file mtime sec` 102 sec_ctime=`ext4_file_time mnt_point/tmp_file ctime sec` 103 nsec_atime=`ext4_file_time mnt_point/tmp_file atime nsec` [all …]
|
/external/chromium-trace/catapult/common/eslint/eslint/ |
D | smoke_test.py | 27 tmp_file = tempfile.NamedTemporaryFile( 29 tmp_file.write(_TEMP_FILE_CONTENTS) 30 tmp_file.close() 32 success, output = eslint.RunEslint([tmp_file.name]) 36 os.remove(tmp_file.name)
|
/external/ltp/testcases/kernel/fs/ext4-new-features/ext4-online-defrag/ |
D | ext4_online_defrag_test.sh | 48 touch mnt_point/tmp_file 49 echo "abc" > mnt_point/tmp_file 52 echo "abc" > mnt_point/tmp_dir/tmp_file 73 dest=mnt_point/tmp_dir/tmp_file 75 dest=mnt_point/tmp_file 96 $E4DEFRAG -v mnt_point/tmp_file
|
/external/ltp/testcases/kernel/fs/ext4-new-features/ext4-inode-version/ |
D | ext4_inode_version_test.sh | 51 touch mnt_point/tmp_file 53 version=`ext4_get_inode_version.sh tmp_file` 99 old_version=`ext4_test_inode_version $1 mnt_point/tmp_file tmp_file` 126 version=`ext4_get_inode_version.sh tmp_file`
|
/external/libchrome/base/files/ |
D | important_file_writer.cc | 94 File tmp_file(tmp_file_path, File::FLAG_OPEN | File::FLAG_WRITE); in WriteFileAtomically() local 95 if (!tmp_file.IsValid()) { in WriteFileAtomically() 102 int bytes_written = tmp_file.Write(0, data.data(), data_length); in WriteFileAtomically() 103 bool flush_success = tmp_file.Flush(); in WriteFileAtomically() 104 tmp_file.Close(); in WriteFileAtomically()
|
/external/autotest/client/site_tests/platform_DebugDaemonDumpDebugLogs/ |
D | platform_DebugDaemonDumpDebugLogs.py | 19 tmp_file = os.path.join(self.tmp_dir, filename) 21 fh = os.open(tmp_file, os.O_TRUNC | os.O_CREAT | os.O_WRONLY) 29 with tarfile.open(tmp_file, mode) as tar_file:
|
/external/v8/tools/ |
D | disasm.py | 63 tmp_file = tempfile.NamedTemporaryFile(prefix=".v8code", delete=False) 64 tmp_name = tmp_file.name 65 tmp_file.close()
|
D | android-run.py | 81 tmp_file = open(fname, "w") 82 tmp_file.write(data) 83 tmp_file.close()
|
/external/autotest/client/common_lib/ |
D | autotemp_unittest.py | 25 tmp_file = autotemp.tempfile(unique_id='del') 26 name = tmp_file.name 28 tmp_file.__del__()
|
/external/valgrind/massif/ |
D | ms_print.in | 60 my $tmp_file = "$tmp_dir/ms_print.tmp.$$"; 397 open(TMPFILE, "> $tmp_file") 398 || die "Cannot open $tmp_file for writing\n"; 658 open(TMPFILE, "< $tmp_file") 659 || die "Cannot open $tmp_file for reading\n"; 664 unlink($tmp_file);
|
/external/autotest/server/site_tests/brillo_StorageWriteSpeedTest/ |
D | brillo_StorageWriteSpeedTest.py | 36 tmp_file = os.path.join(host.get_tmp_dir(), 'testfile') 39 (tmp_file, block_size, num_blocks))
|
/external/chromium-trace/catapult/telemetry/telemetry/core/ |
D | cros_interface_unittest.py | 33 tmp_file = '/tmp/testPushContents' 35 cri.RmRF(tmp_file) 36 cri.PushContents(test_contents, tmp_file) 37 contents = cri.GetFileContents(tmp_file)
|
/external/autotest/client/cros/faft/utils/ |
D | os_interface.py | 369 tmp_file = self.state_dir_file('part.tmp') 371 partition, tmp_file, size)) 372 data = self.read_file(tmp_file) 373 self.remove_file(tmp_file)
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | dependency_manager_util_unittest.py | 184 tmp_file = tempfile.NamedTemporaryFile(delete=False) 185 tmp_file_name = tmp_file.name 186 tmp_file.write('Bad file!') 187 tmp_file.close()
|
/external/ltp/testcases/kernel/syscalls/utimensat/ |
D | utimensat_tests.sh | 300 touch $TEST_DIR/tmp_file 301 chattr +a $TEST_DIR/tmp_file 306 chattr -a $TEST_DIR/tmp_file
|
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/ |
D | httparchive.py | 343 tmp_file = tempfile.NamedTemporaryFile(delete=False) 344 tmp_file.write(response.get_response_as_text()) 345 tmp_file.close() 346 subprocess.check_call([editor, tmp_file.name]) 347 response.set_response_from_text(''.join(open(tmp_file.name).readlines())) 348 os.remove(tmp_file.name)
|
/external/autotest/client/bin/input/ |
D | input_event_recorder.py | 160 self.tmp_file = '/tmp/evtest.dat' 209 with open(self.tmp_file, 'w') as output_f:
|
/external/toolchain-utils/binary_search_tool/test/ |
D | binary_search_tool_tester.py | 246 tmp_file = None 248 tmp_file = f.read() 251 self.assertFalse(os.path.exists(tmp_file))
|
/external/autotest/site_utils/ |
D | lxc.py | 280 tmp_file = '/tmp/%s' % os.path.basename(target) 281 dev_server.ImageServerBase.download_file(url, tmp_file, timeout=300) 282 utils.run('sudo mv %s %s' % (tmp_file, target))
|
/external/libchrome/sandbox/linux/syscall_broker/ |
D | broker_process_unittest.cc | 618 ScopedTemporaryFile tmp_file; in TEST() local 619 temp_str = tmp_file.full_file_name(); in TEST()
|
/external/guice/extensions/persist/lib/ |
D | antlr-2.7.5h3.jar | META-INF/
META-INF/MANIFEST.MF
antlr/
antlr/ActionElement.class
ActionElement ... |
/external/antlr/antlr-3.4/lib/ |
D | antlr-3.4-complete.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/antlr/
org/ ... |