Home
last modified time | relevance | path

Searched refs:rpath (Results 1 – 25 of 234) sorted by relevance

12345678910

/external/strace/
Dpathtrace.c125 char *rpath; in pathtrace_select() local
129 rpath = realpath(path, NULL); in pathtrace_select()
131 if (rpath == NULL) in pathtrace_select()
135 if (strcmp(path, rpath) == 0) { in pathtrace_select()
136 free(rpath); in pathtrace_select()
140 error_msg("Requested path '%s' resolved into '%s'", path, rpath); in pathtrace_select()
141 storepath(rpath); in pathtrace_select()
/external/compiler-rt/test/profile/
Dinstrprof-shared.test22 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-…
Dinstrprof-value-prof-shared.test3 …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/eigen/cmake/
DFindGSL.cmake17 # 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/libunwind/aux/
Dltmain.sh1121 -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/
DICUResourceBundle.java1401 String rpath = wholeBundle.reader.getAlias(_resource);
1405 if (aliasesVisited.get(rpath) != null) {
1409 aliasesVisited.put(rpath, "");
1410 if (rpath.indexOf(RES_PATH_SEP_CHAR) == 0) {
1411 int i = rpath.indexOf(RES_PATH_SEP_CHAR, 1);
1412 int j = rpath.indexOf(RES_PATH_SEP_CHAR, i + 1);
1413 bundleName = rpath.substring(1, i);
1415 locale = rpath.substring(i + 1);
1417 locale = rpath.substring(i + 1, j);
1418 keyPath = rpath.substring(j + 1, rpath.length());
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUResourceBundle.java1405 String rpath = wholeBundle.reader.getAlias(_resource);
1409 if (aliasesVisited.get(rpath) != null) {
1413 aliasesVisited.put(rpath, "");
1414 if (rpath.indexOf(RES_PATH_SEP_CHAR) == 0) {
1415 int i = rpath.indexOf(RES_PATH_SEP_CHAR, 1);
1416 int j = rpath.indexOf(RES_PATH_SEP_CHAR, i + 1);
1417 bundleName = rpath.substring(1, i);
1419 locale = rpath.substring(i + 1);
1421 locale = rpath.substring(i + 1, j);
1422 keyPath = rpath.substring(j + 1, rpath.length());
[all …]
/external/libpng/scripts/
Dmakefile.linux56 LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng16 -lz -lm
57 LDFLAGS_A=-L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) libpng.a -lz -lm
/external/llvm/utils/release/
Dtest-release.sh443 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/swiftshader/third_party/LLVM/autoconf/
Dltmain.sh1127 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/cmockery/cmockery_0_1_2/
Dltmain.sh1127 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 …]
Dlibtool1479 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/elfutils/src/
Dld.c641 add_rxxpath (&ld_state.rpath, arg); in parse_opt_1st()
1343 if (ld_state.rpath != NULL) in gen_rxxpath_data()
1345 struct pathelement *endp = ld_state.rpath; in gen_rxxpath_data()
1346 ld_state.rpath = ld_state.rpath->next; in gen_rxxpath_data()
1364 while (ld_state.rpath != NULL) in gen_rxxpath_data()
1366 struct pathelement *old = ld_state.rpath; in gen_rxxpath_data()
1367 ld_state.rpath = ld_state.rpath->next; in gen_rxxpath_data()
/external/v8/tools/clang/
DCMakeLists.txt12 # Use rpath to find the bundled standard C++ library.
15 set(CMAKE_INSTALL_NAME_DIR "@rpath")
/external/curl/m4/
Dxc-val-flgs.m4100 -rpath*)
116 -rpath*)
148 -rpath*)
173 -rpath*)
/external/valgrind/memcheck/tests/solaris/
DMakefile.am159 inlinfo_LDFLAGS = -Wl,-rpath,$(top_builddir)/memcheck/tests/solaris
163 inlinfo_nested_so_LDFLAGS = -Wl,-rpath,$(top_builddir)/memcheck/tests/solaris -shared -fPIC
167 mmapobj_bssonly_LDFLAGS = -Wl,-rpath,$(top_builddir)/memcheck/tests/solaris
/external/compiler-rt/test/asan/
Dlit.cfg158 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…
/external/icu/icu4c/source/config/
Dmh-linux22 LD_RPATH= -Wl,-zorigin,-rpath,'$$'ORIGIN
23 LD_RPATH_PRE = -Wl,-rpath,
Dmh-linux-va29 LD_RPATH= -Wl,-zorigin,-rpath,'$$'ORIGIN
30 #LD_RPATH_PRE = -Wl,-rpath,
/external/libvorbis/
Dltmain.sh4094 rpath=
4343 rpath | xrpath)
4351 if test "$prev" = rpath; then
4352 case "$rpath " in
4354 *) rpath="$rpath $arg" ;;
4636 -rpath)
4637 prev=rpath
6143 set dummy $rpath
6151 if test -z "$rpath"; then
6484 if test -n "$rpath"; then
[all …]
/external/libmtp/
Dltmain.sh4094 rpath=
4343 rpath | xrpath)
4351 if test "$prev" = rpath; then
4352 case "$rpath " in
4354 *) rpath="$rpath $arg" ;;
4636 -rpath)
4637 prev=rpath
6139 set dummy $rpath
6147 if test -z "$rpath"; then
6477 if test -n "$rpath"; then
[all …]
/external/libusb-compat/
Dltmain.sh4101 rpath=
4350 rpath | xrpath)
4358 if test "$prev" = rpath; then
4359 case "$rpath " in
4361 *) rpath="$rpath $arg" ;;
4643 -rpath)
4644 prev=rpath
6146 set dummy $rpath
6154 if test -z "$rpath"; then
6484 if test -n "$rpath"; then
[all …]
/external/google-tv-pairing-protocol/cpp/
Dlibtool4595 rpath=
4844 rpath | xrpath)
4852 if test "$prev" = rpath; then
4853 case "$rpath " in
4855 *) rpath="$rpath $arg" ;;
5137 -rpath)
5138 prev=rpath
6644 set dummy $rpath
6652 if test -z "$rpath"; then
6985 if test -n "$rpath"; then
[all …]
/external/google-breakpad/autotools/
Dltmain.sh4094 rpath=
4343 rpath | xrpath)
4351 if test "$prev" = rpath; then
4352 case "$rpath " in
4354 *) rpath="$rpath $arg" ;;
4636 -rpath)
4637 prev=rpath
6139 set dummy $rpath
6147 if test -z "$rpath"; then
6477 if test -n "$rpath"; then
[all …]
/external/libnetfilter_conntrack/
Dltmain.sh4094 rpath=
4343 rpath | xrpath)
4351 if test "$prev" = rpath; then
4352 case "$rpath " in
4354 *) rpath="$rpath $arg" ;;
4636 -rpath)
4637 prev=rpath
6143 set dummy $rpath
6151 if test -z "$rpath"; then
6484 if test -n "$rpath"; then
[all …]

12345678910