Home
last modified time | relevance | path

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

1234567891011

/third_party/ltp/testcases/network/nfs/nfs_stress/
Dnfs07.sh36 local rpath=$(nfs_get_remote_path | sed -e 's/%/%%/g')
37 local file_fmt="$rpath/file%1.0f"
38 local dir_fmt="$rpath/dir%1.0f"
/third_party/musl/libc-test/
Dtest_template.gni143 ldflags += [ "-Wl,-rpath=./" ]
147 ldflags += [ "-Wl,-rpath=./" ]
152 ldflags += [ "-Wl,-rpath=./" ]
170 ldflags += [ "-Wl,--export-dynamic,-rpath=./" ]
174 ldflags += [ "-Wl,-rpath=./" ]
181 ldflags += [ "-Wl,-rpath=./" ]
221 ldflags += [ "-Wl,-rpath=./" ]
231 ldflags += [ "-Wl,-rpath=./" ]
/third_party/musl/libc-test/src/functionalext/ldso_same_name_symbol/
DBUILD.gn38 "-Wl,-rpath=./:/data/local/tmp/libc-test-lib/",
63 "-Wl,-rpath=./:/data/local/tmp/libc-test-lib/",
90 "-Wl,-rpath=./:/data/local/tmp/libc-test-lib/",
109 ldflags = [ "-Wl,-rpath=./:/data/local/tmp/libc-test-lib/" ]
/third_party/musl/libc-test/src/functionalext/rpath/
DBUILD.gn43 ldflags = [ "-Wl,-rpath=/data/tests/libc-test/src/rpath_lib" ]
55 [ "-Wl,-rpath=/data/tests/libc-test/src/rpath_lib/rpath_support_A" ]
57 ldflags = [ "-Wl,-rpath=\$ORIGIN/rpath_support_B/../rpath_support_A" ]
72 …ldflags = [ "-Wl,-rpath=/data/tests/libc-test/src/rpath_lib/rpath_support_A:\$ORIGIN/../rpath_supp…
/third_party/libcoap/examples/
Dshare.libcoap.examples.Makefile37 rpath=$(shell echo "$(libdirs)" | sed -e 's/^-L/-Wl,--rpath /')
38 LDFLAGS=$(libdirs) $(rpath)
/third_party/python/Lib/distutils/command/
Dbuild_ext.py119 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)
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUResourceBundle.java1622 String rpath = wholeBundle.reader.getAlias(_resource);
1632 …return getAliasedResource(rpath, loaderToUse, baseName, keys, depth, baseKeyPath, aliasesVisited, …
1636 String rpath, ClassLoader loaderToUse, String baseName,
1646 if (aliasesVisited.get(rpath) != null) {
1650 aliasesVisited.put(rpath, "");
1651 if (rpath.indexOf(RES_PATH_SEP_CHAR) == 0) {
1652 int i = rpath.indexOf(RES_PATH_SEP_CHAR, 1);
1653 int j = rpath.indexOf(RES_PATH_SEP_CHAR, i + 1);
1654 bundleName = rpath.substring(1, i);
1656 locale = rpath.substring(i + 1);
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DICUResourceBundle.java1494 String rpath = wholeBundle.reader.getAlias(_resource);
1498 if (aliasesVisited.get(rpath) != null) {
1502 aliasesVisited.put(rpath, "");
1503 if (rpath.indexOf(RES_PATH_SEP_CHAR) == 0) {
1504 int i = rpath.indexOf(RES_PATH_SEP_CHAR, 1);
1505 int j = rpath.indexOf(RES_PATH_SEP_CHAR, i + 1);
1506 bundleName = rpath.substring(1, i);
1508 locale = rpath.substring(i + 1);
1510 locale = rpath.substring(i + 1, j);
1511 keyPath = rpath.substring(j + 1, rpath.length());
[all …]
/third_party/gn/examples/simple_build/build/
DBUILD.gn17 "-Wl,-rpath=\$ORIGIN/",
18 "-Wl,-rpath-link=",
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_bootstrap_unittest.cc174 std::string rpath = in TEST() local
176 context.ExpectFileMatches(vpath + ".pb.cc", rpath + ".pb.cc"); in TEST()
177 context.ExpectFileMatches(vpath + ".pb.h", rpath + ".pb.h"); in TEST()
/third_party/skia/third_party/externals/libpng/scripts/
Dmakefile.linux55 LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng16 -lz -lm
56 LDFLAGS_A=-L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) libpng.a -lz -lm
Dmakefile.linux-opt62 LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng16 -lz -lm
63 LDFLAGS_A=-L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) libpng.a -lz -lm
/third_party/NuttX/fs/nfs/
Drpc_clnt.c761 error = strncpy_s(request.mountd.mount.rpath, sizeof(request.mountd.mount.rpath), in rpcclnt_connect()
768 request.mountd.mount.len = txdr_unsigned(sizeof(request.mountd.mount.rpath)); in rpcclnt_connect()
923 (void)strncpy_s(request.mountd.umount.rpath, sizeof(request.mountd.umount.rpath), in rpcclnt_umount()
924 rpc->rc_path, sizeof(request.mountd.umount.rpath) - 1); in rpcclnt_umount()
925 request.mountd.umount.rpath[sizeof(request.mountd.umount.rpath) - 1] = 0; in rpcclnt_umount()
926 request.mountd.umount.len = txdr_unsigned(sizeof(request.mountd.umount.rpath)); in rpcclnt_umount()
/third_party/ffmpeg/ffbuild/
Dpkgconfig_generate.sh41 Libs: -L\${libdir} $rpath -l${fullname#lib} $($shared || echo $libs)
60 Libs: -L\${libdir} -Wl,-rpath,\${libdir} -l${fullname#lib} $($shared || echo $libs)
/third_party/skia/modules/skresources/src/
DSkResources.cpp220 sk_sp<ImageAsset> ResourceProviderProxyBase::loadImageAsset(const char rpath[], in loadImageAsset() argument
223 return fProxy ? fProxy->loadImageAsset(rpath, rname, rid) in loadImageAsset()
306 sk_sp<ImageAsset> DataURIResourceProviderProxy::loadImageAsset(const char rpath[], in loadImageAsset() argument
313 return this->INHERITED::loadImageAsset(rpath, rname, rid); in loadImageAsset()
/third_party/gn/examples/ios/build/
DBUILD.gn66 "-rpath",
70 "-rpath",
/third_party/skia/third_party/externals/swiftshader/tests/VulkanUnitTests/
DBUILD.gn48 "-rpath",
52 ldflags = [ "-Wl,-rpath=\$ORIGIN/swiftshader" ]
/third_party/skia/site/docs/dev/testing/
Dxsan.md61 "-Wl,-rpath,${CLANGDIR}/msan" ]
80 extra_ldflags = [ "-fuse-ld=lld", "-Wl,-rpath,${CLANGDIR}/lib" ]
98 extra_ldflags = [ "-Wl,-rpath,${CLANGDIR}/lib" ]
/third_party/curl/tests/libtest/
DMakefile.am83 libhostname_la_LDFLAGS_EXTRA = -module -avoid-version -rpath /nowhere
116 libstubgss_la_LDFLAGS = $(AM_LDFLAGS) $(libstubgss_la_LDFLAGS_EXTRA) -avoid-version -rpath /nowhere
/third_party/curl/m4/
Dxc-val-flgs.m4102 -rpath*)
118 -rpath*)
150 -rpath*)
175 -rpath*)
/third_party/node/deps/cares/m4/
Dxc-val-flgs.m4100 -rpath*)
116 -rpath*)
148 -rpath*)
173 -rpath*)
/third_party/skia/third_party/externals/swiftshader/tests/GLESUnitTests/
DBUILD.gn54 "-rpath",
62 ldflags = [ "-Wl,-rpath=\$ORIGIN/swiftshader" ]
/third_party/skia/third_party/externals/dawn/scripts/
Ddawn_component.gni59 # Executable needs an rpath to find our shared libraries on OSX and Linux
62 "-rpath",
85 "@rpath/lib${name}.dylib",
/third_party/openssl/
DNOTES-UNIX.md43 -Wl,-rpath,/whatever/path # Linux, *BSD, etc.
47 -rpath /whatever/path # Tru64, IRIX
62 '-Wl,-rpath,$(LIBRPATH)'
90 '-Wl,--enable-new-dtags,-rpath,$(LIBRPATH)'
/third_party/node/deps/openssl/openssl/
DNOTES-UNIX.md43 -Wl,-rpath,/whatever/path # Linux, *BSD, etc.
47 -rpath /whatever/path # Tru64, IRIX
62 '-Wl,-rpath,$(LIBRPATH)'
90 '-Wl,--enable-new-dtags,-rpath,$(LIBRPATH)'

1234567891011