/external/chromium-trace/catapult/catapult_base/catapult_base/ |
lock.py | 33 def FileLock(target_file, flags): 39 AcquireFileLock(target_file, flags) 43 ReleaseFileLock(target_file) 46 def AcquireFileLock(target_file, flags): 47 """ Lock the target file. Note that if |target_file| is closed, the lock is 50 target_file: file handle of the file to acquire lock. 57 _LockImplWin(target_file, flags) 59 _LockImplPosix(target_file, flags) 64 def ReleaseFileLock(target_file): 67 target_file: file handle of the file to release the lock [all...] |
lock_unittest.py | 36 def _ReadFileWithExclusiveLockNonBlocking(target_file, status_file): 37 with open(target_file, 'r') as f:
|
/external/jsoncpp/src/test_lib_json/ |
CMakeLists.txt | 19 COMMAND $<TARGET_FILE:jsoncpp_test>)
|
/external/jsoncpp/src/jsontestrunner/ |
CMakeLists.txt | 18 "${PYTHON_EXECUTABLE}" -B "${RUNJSONTESTS_PATH}" $<TARGET_FILE:jsontestrunner_exe> "${TEST_DIR}/data"
|
/external/skia/platform_tools/android/gyp_gen/ |
tool_makefile_writer.py | 34 target_file = os.path.join(target_dir, 'Android.mk') 35 with open(target_file, 'w') as f: 50 def generate_tool(gyp_dir, target_file, skia_trunk, dest_dir, 59 target_file: gyp file for the project to be built, contained in gyp_dir. 73 target_file=target_file,
|
android_framework_gyp.py | 27 def main(target_dir, target_file, skia_arch_type, have_neon, 29 """Create gypd files based on target_file. 33 target_file: Gyp file to start on. Other files within target_dir will 34 be read if target_file depends on them. 77 full_path = os.path.join(target_dir, target_file)
|
makefile_writer.py | 199 target_file = 'skia_static_deps.mk' 201 target_file = os.path.join(target_dir, target_file) 202 with open(target_file, 'w') as f: 236 target_file = 'Android.mk' 238 target_file = os.path.join(target_dir, target_file) 239 with open(target_file, 'w') as f:
|
/external/compiler-rt/cmake/Modules/ |
SanitizerUtils.cmake | 30 ${SANITIZER_GEN_DYNAMIC_LIST} ${extra_args} $<TARGET_FILE:${target_name}> 31 > $<TARGET_FILE:${target_name}>.syms 42 install(FILES $<TARGET_FILE:${target_name}>.syms 71 list(APPEND args "$<TARGET_FILE:${arg}>")
|
/external/skia/platform_tools/android/bin/ |
gyp_to_android.py | 39 def generate_var_dict(target_dir, target_file, skia_arch_type, have_neon, 47 target_file: Target gyp file. 54 result_file = android_framework_gyp.main(target_dir, target_file, 145 target_file='bench.gyp', 155 target_file='dm.gyp',
|
/external/curl/docs/libcurl/opts/ |
CURLOPT_QUOTE.3 | 57 .IP "ln source_file target_file" 58 The ln and symlink commands create a symbolic link at the target_file location 72 .IP "symlink source_file target_file"
|
/external/autotest/server/site_tests/firmware_FWupdate/ |
firmware_FWupdate.py | 130 target_file = '%s/%s' % (extract_dir, 'ec.bin') 131 dut_access.CopyToDevice(self.new_ec, target_file, mode='scp') 132 target_file = '%s/%s' % (extract_dir, 'bios.bin') 133 dut_access.CopyToDevice(self.new_bios, target_file, mode='scp') 136 target_file = '%s/%s' % (extract_dir, 'pd.bin') 137 dut_access.CopyToDevice(self.new_pd, target_file, mode='scp')
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/ |
__init__.py | 77 getbaseclasses(target_file) 144 'SRCF' : target_file,
|
CodeWarrior_suite.py | 336 class target_file(aetools.ComponentItem): class in inherits:aetools.ComponentItem 404 target_files = target_file 528 target_file._superclassnames = [] 529 target_file._privpropdict = { 547 target_file._privelemdict = { 568 'target_file' : target_file, 640 'SRCF' : target_file,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/ |
__init__.py | 77 getbaseclasses(target_file) 144 'SRCF' : target_file,
|
CodeWarrior_suite.py | 336 class target_file(aetools.ComponentItem): class in inherits:aetools.ComponentItem 404 target_files = target_file 528 target_file._superclassnames = [] 529 target_file._privpropdict = { 547 target_file._privelemdict = { 568 'target_file' : target_file, 640 'SRCF' : target_file,
|
/external/vulkan-validation-layers/demos/smoke/ |
CMakeLists.txt | 54 list(APPEND definitions PRIVATE -DUNINSTALLED_LOADER="$<TARGET_FILE:vulkan>")
|
/external/clang/unittests/Tooling/ |
ReplacementsYamlTest.cpp | 90 " - FilePath: target_file.h\n" 102 ASSERT_EQ("target_file.h", DocActual.Replacements[0].getFilePath());
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_posix.py | 370 def _test_chflags_regular_file(self, chflags_func, target_file): 371 st = os.stat(target_file) 376 chflags_func(target_file, st.st_flags | stat.UF_IMMUTABLE) 384 new_st = os.stat(target_file) 387 fd = open(target_file, 'w+') 391 posix.chflags(target_file, st.st_flags)
|
test_tarfile.py | 877 target_file = os.path.join(tempdir,'symlink') 880 os.symlink(source_file, target_file) 883 tar.add(target_file, arcname=os.path.basename(target_file)) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_posix.py | 370 def _test_chflags_regular_file(self, chflags_func, target_file): 371 st = os.stat(target_file) 376 chflags_func(target_file, st.st_flags | stat.UF_IMMUTABLE) 384 new_st = os.stat(target_file) 387 fd = open(target_file, 'w+') 391 posix.chflags(target_file, st.st_flags)
|
test_tarfile.py | 877 target_file = os.path.join(tempdir,'symlink') 880 os.symlink(source_file, target_file) 883 tar.add(target_file, arcname=os.path.basename(target_file)) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_posix.py | 370 def _test_chflags_regular_file(self, chflags_func, target_file): 371 st = os.stat(target_file) 376 chflags_func(target_file, st.st_flags | stat.UF_IMMUTABLE) 384 new_st = os.stat(target_file) 387 fd = open(target_file, 'w+') 391 posix.chflags(target_file, st.st_flags)
|
test_tarfile.py | 877 target_file = os.path.join(tempdir,'symlink') 880 os.symlink(source_file, target_file) 883 tar.add(target_file, arcname=os.path.basename(target_file)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_posix.py | 370 def _test_chflags_regular_file(self, chflags_func, target_file): 371 st = os.stat(target_file) 376 chflags_func(target_file, st.st_flags | stat.UF_IMMUTABLE) 384 new_st = os.stat(target_file) 387 fd = open(target_file, 'w+') 391 posix.chflags(target_file, st.st_flags)
|
test_tarfile.py | 877 target_file = os.path.join(tempdir,'symlink') 880 os.symlink(source_file, target_file) 883 tar.add(target_file, arcname=os.path.basename(target_file)) [all...] |