Searched refs:resolved (Results 1 - 25 of 144) sorted by relevance

123456

/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dsftp-realpath.c48 char *sftp_realpath(const char *path, char *resolved);
51 * char *realpath(const char *path, char resolved[PATH_MAX]);
54 * components. Returns (resolved) on success, or (NULL) on failure,
55 * in which case the path which caused trouble is left in (resolved).
58 sftp_realpath(const char *path, char *resolved) argument
74 if (resolved == NULL) {
75 resolved = malloc(PATH_MAX);
76 if (resolved == NULL)
84 resolved[0] = '/';
85 resolved[
[all...]
/netbsd-current/lib/libc/gen/
H A Dgetcwd.c64 * char *realpath(const char *path, char *resolved);
67 * components. Returns (resolved) on success, or (NULL) on failure,
68 * in which case the path which caused trouble is left in (resolved).
71 realpath(const char * __restrict path, char * __restrict resolved)
86 if (resolved == NULL) {
87 fres = resolved = malloc(MAXPATHLEN);
88 if (resolved == NULL)
103 p = resolved;
113 /* check for resolved pointer to appease coverity */
114 if (resolved
[all...]
/netbsd-current/usr.sbin/sysinst/
H A Daout2elf.c312 * components. Returns (resolved) on success, or (NULL) on failure,
313 * in which case the path which caused trouble is left in (resolved).
316 target_realpath(const char *path, char *resolved) argument
328 (void)strlcpy(resolved, ".", MAXPATHLEN);
333 * Find the dirname and basename from the path to be resolved.
341 snprintf(resolved, MAXPATHLEN, "%s/%s", target_prefix(), path);
343 if (strlcpy(resolved, path, MAXPATHLEN) >= MAXPATHLEN) {
348 q = strrchr(resolved, '/');
351 if (q == resolved)
356 } while (q > resolved
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arc/
H A Dtls-relocs2.s2 ;;; Test if palette is resolved by the assembler.
H A Dtls-relocs1.s23 ;;; Test if local TLS symbol is correctly resolved.
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-arc/
H A Dtls-dtpoff.s2 ;;; Test if palette is resolved by the linker.
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-mmix/
H A Dgregbza1.s2 # The "BZ" will be expanded, and the reloc for areg must be resolved
H A Dgregget1.s2 # The "GETA" will be expanded, and the reloc for areg must be resolved
H A Dgregget2.s2 # The "GETA" will be expanded, and the reloc for b must be resolved before
H A Dgregpsj1.s2 # The "PUSHJ" will be expanded, and the reloc for areg must be resolved
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
H A Dcanonicalize.c94 returns the name in RESOLVED. If the name cannot be resolved and
96 that cannot be resolved. If the path can be resolved, RESOLVED
100 __realpath (const char *name, char *resolved) argument
135 if (resolved == NULL)
142 rpath = resolved;
198 if (resolved)
305 return resolved ? memcpy (resolved, rpath, dest - rpath + 1) : rpath;
312 if (resolved)
327 __old_realpath(const char *name, char *resolved) argument
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dcanonicalize.c94 returns the name in RESOLVED. If the name cannot be resolved and
96 that cannot be resolved. If the path can be resolved, RESOLVED
100 __realpath (const char *name, char *resolved) argument
135 if (resolved == NULL)
142 rpath = resolved;
198 if (resolved)
305 return resolved ? memcpy (resolved, rpath, dest - rpath + 1) : rpath;
312 if (resolved)
327 __old_realpath(const char *name, char *resolved) argument
[all...]
/netbsd-current/external/gpl2/gettext/dist/gnulib-local/lib/
H A Dcanonicalize.c94 returns the name in RESOLVED. If the name cannot be resolved and
96 that cannot be resolved. If the path can be resolved, RESOLVED
100 __realpath (const char *name, char *resolved) argument
135 if (resolved == NULL)
142 rpath = resolved;
198 if (resolved)
305 return resolved ? memcpy (resolved, rpath, dest - rpath + 1) : rpath;
312 if (resolved)
327 __old_realpath(const char *name, char *resolved) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arm/
H A Doffset.s2 @ still resolved by the assembler, as long as the symbol is in
H A Dgroup-reloc-ldr.s32 @ resolved by the assembler but instead left to the linker.
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dcanonicalize-lgpl.c111 returns the name in RESOLVED. If the name cannot be resolved and
113 that cannot be resolved. If the path can be resolved, RESOLVED
117 __realpath (const char *name, char *resolved) argument
151 if (resolved == NULL)
161 rpath = resolved;
240 if (resolved)
388 if (resolved == NULL)
401 __old_realpath (const char *name, char *resolved) argument
403 if (resolved
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-elf/
H A Dcompressed1d.d9 # do not get resolved at assembly time, which results in a compressed section.
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dcanonicalize-lgpl.c202 realpath_stk (const char *name, char *resolved, argument
407 if (resolved != NULL && dest - rname <= get_path_max ())
408 rname = strcpy (resolved, rname);
414 if (failed || rname == resolved)
417 return failed ? NULL : resolved;
429 returns the name in RESOLVED. If the name cannot be resolved and
431 that cannot be resolved. If the name can be resolved, RESOLVED
435 __realpath (const char *name, char *resolved) argument
442 return realpath_stk (name, resolved,
[all...]
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dcanonicalize.c77 char *resolved, *extra_buf = NULL; local
112 resolved = xmalloc (resolved_size);
113 resolved_len = resolvepath (name, resolved, resolved_size);
116 free (resolved);
122 free (resolved);
128 resolved[resolved_len] = '\0';
130 return resolved;
/netbsd-current/external/gpl3/binutils.old/dist/opcodes/
H A Dia64-gen.c1040 int resolved = 0;
1078 resolved = ((strncmp (ic->name, idesc->name, len) == 0)
1083 if (resolved &&
1087 resolved = strcmp (ic->name, idesc->name) == 0;
1091 if (resolved && field)
1099 resolved = strcmp (sf + 1, strstr (field, "==") + 2) == 0;
1105 resolved = strstr (field, "fault") != NULL;
1107 resolved = strstr (field, "fault") == NULL;
1113 resolved = strstr (field, "or.andcm") != NULL;
1115 resolved
1038 int resolved = 0; local
[all...]
/netbsd-current/external/gpl3/binutils/dist/opcodes/
H A Dia64-gen.c1040 int resolved = 0;
1078 resolved = ((strncmp (ic->name, idesc->name, len) == 0)
1083 if (resolved &&
1087 resolved = strcmp (ic->name, idesc->name) == 0;
1091 if (resolved && field)
1099 resolved = strcmp (sf + 1, strstr (field, "==") + 2) == 0;
1105 resolved = strstr (field, "fault") != NULL;
1107 resolved = strstr (field, "fault") == NULL;
1113 resolved = strstr (field, "or.andcm") != NULL;
1115 resolved
1038 int resolved = 0; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/opcodes/
H A Dia64-gen.c1040 int resolved = 0;
1078 resolved = ((strncmp (ic->name, idesc->name, len) == 0)
1083 if (resolved &&
1087 resolved = strcmp (ic->name, idesc->name) == 0;
1091 if (resolved && field)
1099 resolved = strcmp (sf + 1, strstr (field, "==") + 2) == 0;
1105 resolved = strstr (field, "fault") != NULL;
1107 resolved = strstr (field, "fault") == NULL;
1113 resolved = strstr (field, "or.andcm") != NULL;
1115 resolved
1038 int resolved = 0; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/opcodes/
H A Dia64-gen.c1031 int resolved = 0;
1069 resolved = ((strncmp (ic->name, idesc->name, len) == 0)
1074 if (resolved &&
1078 resolved = strcmp (ic->name, idesc->name) == 0;
1082 if (resolved && field)
1090 resolved = strcmp (sf + 1, strstr (field, "==") + 2) == 0;
1096 resolved = strstr (field, "fault") != NULL;
1098 resolved = strstr (field, "fault") == NULL;
1104 resolved = strstr (field, "or.andcm") != NULL;
1106 resolved
1029 int resolved = 0; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Drs6000-c.cc896 the resolved CALL_EXPR. */
945 resolved = Resolved (but may be an error_mark_node)
948 enum resolution { unresolved, resolved, resolved_bad };
951 resolved call if successful. ARGS contains the arguments to the call.
977 *res = resolved;
983 *res = resolved;
990 *res = resolved;
1002 resolved call if successful. ARGS contains the arguments to the call.
1060 *res = resolved;
1077 for the resolved cal
947 enum resolution { unresolved, resolved, resolved_bad }; enumerator in enum:resolution
[all...]
/netbsd-current/usr.bin/make/unit-tests/
H A Dvarmod-to-abs.mk10 # variable with the same name as the path that is to be resolved. There were

Completed in 285 milliseconds

123456