Home
last modified time | relevance | path

Searched refs:link_name (Results 1 – 8 of 8) sorted by relevance

/external/toolchain-utils/
Dtc_enter_chroot.py294 def CreateSymlink(target, link_name): argument
297 real_from_file = misc.GetRoot(link_name)[0] + '/' + target
298 if os.path.realpath(real_from_file) != os.path.realpath(link_name):
299 if os.path.exists(link_name):
300 command = 'rm -rf ' + link_name
302 os.symlink(target, link_name)
/external/u-boot/fs/ubifs/
Dubifs.c486 char link_name[64]; in ubifs_findfile() local
530 memcpy(link_name, ui->data, ui->data_len); in ubifs_findfile()
531 link_name[ui->data_len] = '\0'; in ubifs_findfile()
533 if (link_name[0] == '/') { in ubifs_findfile()
536 next = name = link_name + 1; in ubifs_findfile()
542 link_name, next == NULL ? "" : next); in ubifs_findfile()
/external/autotest/utils/
Dexternal_packages.py1332 link_name = os.path.join(install_dir, 'skylab_inventory')
1334 if (os.path.exists(link_name) and
1335 os.path.realpath(link_name) != os.path.realpath(source)):
1336 os.remove(link_name)
1338 if not os.path.exists(link_name):
1339 os.symlink(source, link_name)
/external/toolchain-utils/automation/common/
Dcommand.py202 def MakeSymlink(to_path, link_name): argument
203 return Shell('ln', '-f', '-s', '-T', to_path, link_name)
/external/python/setuptools/pkg_resources/tests/
Dtest_resources.py737 link_name = str(tmpdir) + '-linked'
738 os.symlink(str(tmpdir), link_name)
740 yield type(tmpdir)(link_name)
742 os.unlink(link_name)
/external/tensorflow/
Dconfigure.py106 def symlink_force(target, link_name): argument
114 os.symlink(target, link_name)
117 os.remove(link_name)
118 os.symlink(target, link_name)
/external/swiftshader/third_party/llvm-7.0/llvm/cmake/modules/
DAddLLVM.cmake1480 function(add_llvm_tool_symlink link_name target)
1526 set(output_path "${ARG_OUTPUT_DIR}/${link_name}${CMAKE_EXECUTABLE_SUFFIX}")
1528 set(target_name ${link_name})
1529 if(TARGET ${link_name})
1530 set(target_name ${link_name}-link)
1547 if (${link_name} IN_LIST LLVM_TOOLCHAIN_TOOLS AND ${target} IN_LIST LLVM_TOOLCHAIN_TOOLS)
1552 llvm_install_symlink(${link_name} ${target})
/external/python/cpython2/Doc/library/
Dos.rst1140 .. function:: link(source, link_name)
1142 Create a hard link pointing to *source* named *link_name*.
1507 .. function:: symlink(source, link_name)
1509 Create a symbolic link pointing to *source* named *link_name*.