HomeSort by: relevance | last modified time | path
    Searched defs:rpath (Results 1 - 22 of 22) sorted by relevancy

  /src/usr.bin/ldd/
ldd_elfxx.c 144 const Search_Path *rpath = obj->rpaths; local
145 obj->rpaths = rpath->sp_next;
146 xfree(__UNCONST(rpath->sp_path));
147 xfree(__UNCONST(rpath));
  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
canonicalize.c 102 char *rpath, *dest, *extra_buf = NULL; local
137 rpath = malloc (path_max);
138 if (rpath == NULL)
142 rpath = resolved;
143 rpath_limit = rpath + path_max;
147 if (!__getcwd (rpath, path_max))
149 rpath[0] = '\0';
152 dest = strchr (rpath, '\0');
156 rpath[0] = '/';
157 dest = rpath + 1
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
canonicalize.c 102 char *rpath, *dest, *extra_buf = NULL; local
137 rpath = malloc (path_max);
138 if (rpath == NULL)
142 rpath = resolved;
143 rpath_limit = rpath + path_max;
147 if (!__getcwd (rpath, path_max))
149 rpath[0] = '\0';
152 dest = strchr (rpath, '\0');
156 rpath[0] = '/';
157 dest = rpath + 1
    [all...]
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
canonicalize.c 102 char *rpath, *dest, *extra_buf = NULL; local
137 rpath = malloc (path_max);
138 if (rpath == NULL)
142 rpath = resolved;
143 rpath_limit = rpath + path_max;
147 if (!__getcwd (rpath, path_max))
149 rpath[0] = '\0';
152 dest = strchr (rpath, '\0');
156 rpath[0] = '/';
157 dest = rpath + 1
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
intelmic-mkoffload.cc 228 const char *rpath = getenv ("LD_RUN_PATH"); local
241 xputenv (concat ("LD_RUN_PATH=", rpath, NULL));
  /src/crypto/dist/ipsec-tools/src/racoon/
privsep.c 1474 char rpath[MAXPATHLEN + 1]; local
1486 if (realpath(script, rpath) == NULL) {
1493 if (strncmp(path, rpath, len) != 0)
  /src/external/bsd/less/dist/
filename.c 791 char rpath[PATH_MAX]; local
792 if (realpath(path, rpath) != NULL)
793 return (save(rpath));
  /src/external/gpl2/lvm2/dist/libdm/
libdm-common.c 422 char rpath[PATH_MAX]; local
432 _build_dev_path(rpath, sizeof(rpath), raw_devname);
434 if (stat(rpath, &info) >= 0) {
437 "is already present", rpath);
445 if (unlink(rpath) < 0) {
453 if (mknod(rpath, S_IFCHR | mode, rdev) < 0) {
460 if (chown(rpath, uid, gid) < 0) {
461 log_sys_error("Raw device chown", rpath);
515 char rpath[PATH_MAX] local
559 char rpath[PATH_MAX]; local
    [all...]
  /src/external/gpl3/binutils/dist/ld/
ld.h 178 /* Runtime library search path from the -rpath argument. */
179 char *rpath; member in struct:__anon10748
181 /* Link time runtime library search path from the -rpath-link
292 /* The rpath separation character. Usually ':'. */
ldelf.c 1098 rpath_link, rpath, then the environment variable
1120 path = command_line.rpath;
1134 && command_line.rpath == NULL)
1194 "(try using -rpath or -rpath-link)\n"),
1755 const char *rpath; local
1807 rpath = command_line.rpath;
1808 if (rpath == NULL)
1809 rpath = (const char *) getenv ("LD_RUN_PATH")
    [all...]
  /src/external/gpl3/binutils.old/dist/ld/
ld.h 178 /* Runtime library search path from the -rpath argument. */
179 char *rpath; member in struct:__anon12212
181 /* Link time runtime library search path from the -rpath-link
292 /* The rpath separation character. Usually ':'. */
ldelf.c 1098 rpath_link, rpath, then the environment variable
1120 path = command_line.rpath;
1134 && command_line.rpath == NULL)
1194 "(try using -rpath or -rpath-link)\n"),
1756 const char *rpath; local
1808 rpath = command_line.rpath;
1809 if (rpath == NULL)
1810 rpath = (const char *) getenv ("LD_RUN_PATH")
    [all...]
  /src/external/public-domain/sqlite/dist/autosetup/
sqlite-config.tcl 350 rpath=1 => {Disable use of the rpath linker flag}
514 sqlite-handle-rpath
1802 # (e.g. [proj-check-rpath]) may do so before we "mangle" them here.
2225 # Handle the --enable/disable-rpath flag.
2226 proc sqlite-handle-rpath {} {
2227 # autosetup/cc-shared.tcl sets the rpath flag definition in
2230 # compiler check (as proj-check-rpath does), we may want to consider
2231 # adopting its approach of clearing the rpath flags for environments
2236 if {[proj-opt-truthy rpath]} {
    [all...]
proj.tcl 50 # [1]: As an example: testing for the -rpath flag, using
52 # [cc-check-function-in-lib ...] because the resulting -rpath flag
53 # implicitly becomes part of those tests. In the case of an rpath
55 # the rpath test. To avoid such problems, we avoid (intentionally)
1143 # @proj-check-rpath
1145 # Tries various approaches to handling the -rpath link-time
1149 # By default, the rpath is set to $prefix/lib. However, if either of
1154 proc proj-check-rpath {} {
1163 # downstream tests may fail because the resulting rpath gets
1166 if {[cc-check-flags "-rpath $lp"]}
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
archive.c 1441 char * rpath;
1453 rpath = lrealpath (ref_path);
1454 refp = rpath == NULL ? ref_path : rpath;
1535 free (rpath);
1436 char * rpath; local
elflink.c 4611 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
4733 for (pn = & rpath;
4754 rpath = runpath;
4756 if (rpath)
4761 *pn = rpath;
6943 const char *rpath,
7595 if (rpath != NULL)
7600 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
4602 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL; local
  /src/external/gpl3/binutils.old/dist/bfd/
archive.c 1430 char * rpath;
1442 rpath = lrealpath (ref_path);
1443 refp = rpath == NULL ? ref_path : rpath;
1524 free (rpath);
1425 char * rpath; local
elflink.c 4575 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
4697 for (pn = & rpath;
4718 rpath = runpath;
4720 if (rpath)
4725 *pn = rpath;
6900 const char *rpath,
7552 if (rpath != NULL)
7557 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
4566 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL; local
  /src/external/gpl3/gdb.old/dist/bfd/
archive.c 1432 char * rpath;
1444 rpath = lrealpath (ref_path);
1445 refp = rpath == NULL ? ref_path : rpath;
1526 free (rpath);
1427 char * rpath; local
elflink.c 4548 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
4670 for (pn = & rpath;
4691 rpath = runpath;
4693 if (rpath)
4698 *pn = rpath;
6845 const char *rpath,
7495 if (rpath != NULL)
7500 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
4539 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL; local
  /src/external/gpl3/gdb/dist/bfd/
archive.c 1442 char * rpath;
1454 rpath = lrealpath (ref_path);
1455 refp = rpath == NULL ? ref_path : rpath;
1536 free (rpath);
1437 char * rpath; local
elflink.c 4593 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
4715 for (pn = & rpath;
4736 rpath = runpath;
4738 if (rpath)
4743 *pn = rpath;
6918 const char *rpath,
7570 if (rpath != NULL)
7575 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
4584 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL; local

Completed in 121 milliseconds