/external/strace/ |
D | pathtrace.c | 127 char *rpath; in pathtrace_select_set() local 131 rpath = realpath(path, NULL); in pathtrace_select_set() 133 if (rpath == NULL) in pathtrace_select_set() 137 if (strcmp(path, rpath) == 0) { in pathtrace_select_set() 138 free(rpath); in pathtrace_select_set() 142 error_msg("Requested path '%s' resolved into '%s'", path, rpath); in pathtrace_select_set() 143 storepath(rpath, set); in pathtrace_select_set()
|
/external/compiler-rt/test/profile/ |
D | instrprof-shared.test | 22 RUN: %clang_profgen -o %t-instr-instr -L%t.d -rpath %t.d -lt-instr %S/Inputs/instrprof-shared-main… 23 RUN: %clang_profgen -o %t-instr-no-instr1 -L%t.d -rpath %t.d -lt-no-instr1 %S/Inputs/instrprof-sha… 24 RUN: %clang_profgen -o %t-instr-no-instr2 -L%t.d -rpath %t.d -lt-no-instr2 %S/Inputs/instrprof-sha… 25 RUN: %clang -o %t-no-instr1-instr -L%t.d -rpath %t.d -lt-instr %S/Inputs/instrprof-shared-main.c 26 RUN: %clang -o %t-no-instr1-no-instr1 -L%t.d -rpath %t.d -lt-no-instr1 %S/Inputs/instrprof-shared-… 27 RUN: %clang -o %t-no-instr1-no-instr2 -L%t.d -rpath %t.d -lt-no-instr2 %S/Inputs/instrprof-shared-… 29 RUN: %clang -o %t-no-instr2-instr -L%t.d -rpath %t.d -lt-instr %t.d/instrprof-shared-main-no-instr… 30 RUN: %clang -o %t-no-instr2-no-instr1 -L%t.d -rpath %t.d -lt-no-instr1 %t.d/instrprof-shared-main-… 31 RUN: %clang -o %t-no-instr2-no-instr2 -L%t.d -rpath %t.d -lt-no-instr2 %t.d/instrprof-shared-main-…
|
D | instrprof-value-prof-shared.test | 3 …true -mllvm -vp-static-alloc=true -mllvm -vp-counters-per-site=256 -o %t -rpath %t.d %t.d/t.shared… 11 …ment=llvm -mllvm -vp-static-alloc=true -mllvm -vp-counters-per-site=256 -rpath %t.d -o %t.ir %t.d… 21 …ent=llvm -mllvm -vp-static-alloc=false -mllvm -vp-counters-per-site=256 -rpath %t.d -o %t.ir.dyn … 31 …ment=llvm -mllvm -vp-static-alloc=true -mllvm -vp-counters-per-site=256 -rpath %t.d -o %t.ir.mixe…
|
/external/tensorflow/tensorflow/core/platform/default/build_config/ |
D | BUILD | 277 "-Wl,-rpath,../local_config_cuda/cuda/lib", 278 "-Wl,-rpath,../local_config_cuda/cuda/extras/CUPTI/lib", 281 "-Wl,-rpath,../local_config_cuda/cuda/lib64", 282 "-Wl,-rpath,../local_config_cuda/cuda/extras/CUPTI/lib64", 309 "-Wl,-rpath,../local_config_rocm/rocm/rocm/lib", 321 "-Wl,-rpath,../local_config_sycl/sycl/lib",
|
/external/eigen/cmake/ |
D | FindGSL.cmake | 17 # GSL_LINK_DIRECTORIES = link directories, useful for rpath on Unix 18 # GSL_EXE_LINKER_FLAGS = rpath on Unix 112 # extract link dirs for rpath 128 # split off the link dirs (for rpath) 141 SET(GSL_EXE_LINKER_FLAGS "-Wl,-rpath,${GSL_LINK_DIRECTORIES}" CACHE STRING INTERNAL)
|
/external/python/cpython2/Lib/distutils/command/ |
D | build_ext.py | 121 self.rpath = None 175 if self.rpath is None: 176 self.rpath = [] 177 elif type(self.rpath) is StringType: 178 self.rpath = string.split(self.rpath, os.pathsep) 276 self.rpath.append(user_lib) 334 if self.rpath is not None: 335 self.compiler.set_runtime_library_dirs(self.rpath)
|
/external/python/cpython3/Lib/distutils/command/ |
D | build_ext.py | 119 self.rpath = None 181 if self.rpath is None: 182 self.rpath = [] 183 elif isinstance(self.rpath, str): 184 self.rpath = self.rpath.split(os.pathsep) 270 self.rpath.append(user_lib) 334 if self.rpath is not None: 335 self.compiler.set_runtime_library_dirs(self.rpath)
|
/external/libunwind/aux/ |
D | ltmain.sh | 1121 -rpath) 1122 prev=rpath 2159 if test -n "$rpath"; then 2160 $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2 2224 set dummy $rpath 2226 $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2 2486 if test -n "$rpath"; then 2800 test "$mode" != relink && rpath="$compile_rpath$rpath" 2801 for libdir in $rpath; do 2837 rpath="$rpath$dir:" [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ICUResourceBundle.java | 1409 String rpath = wholeBundle.reader.getAlias(_resource); 1413 if (aliasesVisited.get(rpath) != null) { 1417 aliasesVisited.put(rpath, ""); 1418 if (rpath.indexOf(RES_PATH_SEP_CHAR) == 0) { 1419 int i = rpath.indexOf(RES_PATH_SEP_CHAR, 1); 1420 int j = rpath.indexOf(RES_PATH_SEP_CHAR, i + 1); 1421 bundleName = rpath.substring(1, i); 1423 locale = rpath.substring(i + 1); 1425 locale = rpath.substring(i + 1, j); 1426 keyPath = rpath.substring(j + 1, rpath.length()); [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | ICUResourceBundle.java | 1418 String rpath = wholeBundle.reader.getAlias(_resource); 1422 if (aliasesVisited.get(rpath) != null) { 1426 aliasesVisited.put(rpath, ""); 1427 if (rpath.indexOf(RES_PATH_SEP_CHAR) == 0) { 1428 int i = rpath.indexOf(RES_PATH_SEP_CHAR, 1); 1429 int j = rpath.indexOf(RES_PATH_SEP_CHAR, i + 1); 1430 bundleName = rpath.substring(1, i); 1432 locale = rpath.substring(i + 1); 1434 locale = rpath.substring(i + 1, j); 1435 keyPath = rpath.substring(j + 1, rpath.length()); [all …]
|
/external/libpng/scripts/ |
D | makefile.linux | 56 LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng16 -lz -lm 57 LDFLAGS_A=-L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) libpng.a -lz -lm
|
D | makefile.linux-opt | 62 LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng16 -lz -lm 63 LDFLAGS_A=-L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) libpng.a -lz -lm
|
/external/perfetto/gn/standalone/toolchain/ |
D | BUILD.gn | 119 rpath = "-Wl,-soname,$soname" 121 rpath = "-Wl,-install_name,@rpath/$soname" 124 …pper $cxx -shared {{ldflags}} ${extra_ldflags} {{inputs}} {{solibs}} {{libs}} $rpath -o {{output}}"
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/release/ |
D | test-release.sh | 434 if rpath=`objdump -x $Candidate | grep 'RPATH'` ; then 435 rpath=`echo $rpath | sed -e's/^ *RPATH *//'` 436 if [ -n "$rpath" ]; then 437 newrpath=`echo $rpath | sed -e's/.*\(\$ORIGIN[^:]*\).*/\1/'`
|
/external/llvm/utils/release/ |
D | test-release.sh | 443 if rpath=`objdump -x $Candidate | grep 'RPATH'` ; then 444 rpath=`echo $rpath | sed -e's/^ *RPATH *//'` 445 if [ -n "$rpath" ]; then 446 newrpath=`echo $rpath | sed -e's/.*\(\$ORIGIN[^:]*\).*/\1/'`
|
/external/cmockery/cmockery_0_1_2/ |
D | ltmain.sh | 1127 rpath= 1379 case "$rpath " in 1381 *) rpath="$rpath $arg" ;; 1688 -rpath) 1689 prev=rpath 3137 set dummy $rpath 3144 if test -z "$rpath"; then 3463 if test -n "$rpath"; then 3859 test "$mode" != relink && rpath="$compile_rpath$rpath" 3860 for libdir in $rpath; do [all …]
|
D | libtool | 1479 rpath= 1731 case "$rpath " in 1733 *) rpath="$rpath $arg" ;; 2040 -rpath) 2041 prev=rpath 3489 set dummy $rpath 3496 if test -z "$rpath"; then 3815 if test -n "$rpath"; then 4211 test "$mode" != relink && rpath="$compile_rpath$rpath" 4212 for libdir in $rpath; do [all …]
|
/external/swiftshader/third_party/LLVM/autoconf/ |
D | ltmain.sh | 1127 rpath= 1379 case "$rpath " in 1381 *) rpath="$rpath $arg" ;; 1688 -rpath) 1689 prev=rpath 3134 set dummy $rpath 3141 if test -z "$rpath"; then 3455 if test -n "$rpath"; then 3851 test "$mode" != relink && rpath="$compile_rpath$rpath" 3852 for libdir in $rpath; do [all …]
|
/external/skia/site/dev/testing/ |
D | xsan.md | 56 "-Wl,-rpath,${CLANGDIR}/msan" ] 75 extra_ldflags = [ "-fuse-ld=lld", "-Wl,-rpath,${CLANGDIR}/lib" ] 93 extra_ldflags = [ "-Wl,-rpath,${CLANGDIR}/lib" ]
|
/external/skqp/site/dev/testing/ |
D | xsan.md | 56 "-Wl,-rpath,${CLANGDIR}/msan" ] 75 extra_ldflags = [ "-fuse-ld=lld", "-Wl,-rpath,${CLANGDIR}/lib" ] 93 extra_ldflags = [ "-Wl,-rpath,${CLANGDIR}/lib" ]
|
/external/v8/tools/clang/ |
D | CMakeLists.txt | 12 # Use rpath to find the bundled standard C++ library. 15 set(CMAKE_INSTALL_NAME_DIR "@rpath")
|
/external/swiftshader/tests/GLESUnitTests/ |
D | BUILD.gn | 50 "-rpath", 58 ldflags = [ "-Wl,-rpath=\$ORIGIN/swiftshader" ]
|
/external/curl/m4/ |
D | xc-val-flgs.m4 | 100 -rpath*) 116 -rpath*) 148 -rpath*) 173 -rpath*)
|
/external/curl/tests/libtest/ |
D | Makefile.am | 91 libhostname_la_LDFLAGS_EXTRA = -module -avoid-version -rpath /nowhere 121 libstubgss_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version -rpath /nowhere
|
/external/compiler-rt/test/asan/ |
D | lit.cfg | 158 config.substitutions.append( ("%ld_flags_rpath_exe", '-Wl,-rpath,@executable_path/ %dynamiclib') ) 159 …config.substitutions.append( ("%ld_flags_rpath_so", '-install_name @rpath/`basename %dynamiclib`')… 161 …config.substitutions.append( ("%ld_flags_rpath_exe", "-Wl,-z,origin -Wl,-rpath,\$ORIGIN -L%T -l%xd… 164 …config.substitutions.append( ("%ld_flags_rpath_exe", "-Wl,-rpath,\$ORIGIN -L%T -l%xdynamiclib_name…
|