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

/freebsd-9.3-release/lib/libc/stdlib/
H A Drealpath.c47 * components. Returns (resolved) on success, or (NULL) on failure,
48 * in which case the path which caused trouble is left in (resolved).
51 realpath(const char * __restrict path, char * __restrict resolved) argument
68 if (resolved == NULL) {
69 resolved = malloc(PATH_MAX);
70 if (resolved == NULL)
77 resolved[0] = '/';
78 resolved[1] = '\0';
80 return (resolved);
84 if (getcwd(resolved, PATH_MA
[all...]
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Drealpath.c45 * char *realpath(const char *path, char resolved[PATH_MAX]);
48 * components. Returns (resolved) on success, or (NULL) on failure,
49 * in which case the path which caused trouble is left in (resolved).
52 realpath(const char *path, char resolved[PATH_MAX]) argument
64 resolved[0] = '/';
65 resolved[1] = '\0';
67 return (resolved);
71 if (getcwd(resolved, PATH_MAX) == NULL) {
72 strlcpy(resolved, ".", PATH_MAX);
75 resolved_len = strlen(resolved);
[all...]
H A Dopenbsd-compat.h66 char *realpath(const char *path, char *resolved);
/freebsd-9.3-release/contrib/bmake/
H A Drealpath.c60 * char *realpath(const char *path, char *resolved);
63 * components. Returns (resolved) on success, or (NULL) on failure,
64 * in which case the path which caused trouble is left in (resolved).
67 realpath(const char * __restrict path, char * __restrict resolved) argument
82 if (resolved == NULL) {
83 fres = resolved = malloc(MAXPATHLEN);
84 if (resolved == NULL)
99 p = resolved;
109 /* check for resolved pointer to appease coverity */
110 if (resolved
[all...]
/freebsd-9.3-release/usr.sbin/snapinfo/
H A Dsnapinfo.c84 char resolved[PATH_MAX]; local
91 if (realpath(path, resolved) == NULL || /* can create full path */
92 stat(resolved, &st) == -1 || /* is it stat'able */
96 path = resolved;
/freebsd-9.3-release/sbin/mount/
H A Dgetmntopts.c128 checkpath(const char *path, char *resolved) argument
132 if (realpath(path, resolved) != NULL && stat(resolved, &sb) == 0) {
134 errx(EX_USAGE, "%s: not a directory", resolved);
136 errx(EX_USAGE, "%s: %s", resolved, strerror(errno));
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Dia64-gen.c1035 int resolved = 0;
1073 resolved = ((strncmp (ic->name, idesc->name, len) == 0)
1078 if (resolved &&
1082 resolved = strcmp (ic->name, idesc->name) == 0;
1086 if (resolved && field)
1094 resolved = strcmp (sf + 1, strstr (field, "==") + 2) == 0;
1100 resolved = strstr (field, "fault") != NULL;
1102 resolved = strstr (field, "fault") == NULL;
1108 resolved = strstr (field, "or.andcm") != NULL;
1110 resolved
1033 int resolved = 0; local
[all...]
/freebsd-9.3-release/tools/regression/usr.sbin/etcupdate/
H A Dconflicts.sh187 resolved() function
190 echo "Conflict $1 should be resolved"
220 resolved /etc/login.conf
230 resolved /etc/login.conf
234 # Verify that 'r' installs the resolved version of the file. To
249 resolved /etc/login.conf
/freebsd-9.3-release/usr.bin/rctl/
H A Drctl.c102 char *resolved; local
128 asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest);
131 asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest);
133 asprintf(&resolved, "%s:%s:%s", subject, textid, rest);
135 if (resolved == NULL)
138 return (resolved);
/freebsd-9.3-release/contrib/ipfilter/lib/
H A Dipft_tx.c50 static u_32_t tx_hostnum(host, resolved)
52 int *resolved;
56 *resolved = 0;
63 *resolved = -1;
/freebsd-9.3-release/usr.sbin/pkg_install/info/
H A Dperform.c304 char *resolved, *temp; local
315 resolved = abspath(temp);
317 if (strcmp(target, resolved) == 0)
323 free(resolved);
/freebsd-9.3-release/sbin/fsck_ffs/
H A Dmain.c423 resolved = 1;
534 resolved = 0;
541 resolved = 0;
542 ckfini(resolved);
H A Dpass3.c83 resolved && usedsoftdep && S_IS_DUNFOUND(state)) {
H A Dfsutil.c111 resolved = 0;
124 resolved = 0;
132 resolved = 0;
575 resolved = 0;
596 resolved = 0;
H A Dfsck.h321 char resolved; /* cleared if unresolved changes => not clean */ variable
H A Ddir.c288 if (resolved && (preen || bkgrdflag) && usedsoftdep) {
295 * Hence, resolved should not be cleared when
298 saveresolved = resolved;
300 resolved = saveresolved;
/freebsd-9.3-release/contrib/binutils/gas/
H A Dsymbols.c1009 int resolved;
1040 resolved = 0;
1049 resolved = 1;
1075 resolved = 0;
1091 resolved = 1;
1131 resolved = 1;
1160 resolved = symbol_resolved_p (add_symbol);
1194 resolved = symbol_resolved_p (add_symbol);
1213 resolved = symbol_resolved_p (add_symbol);
1224 resolved
1005 int resolved; local
1482 int resolved; local
[all...]
/freebsd-9.3-release/contrib/bmake/mk/
H A Dsys.mk19 # It relies on the fact that conditionals and dependencies are resolved
/freebsd-9.3-release/contrib/gcc/cp/
H A Dtypeck.c950 /* TYPENAME_TYPEs should be resolved if the qualifying scope is the
954 tree resolved = resolve_typename_type (t1, /*only_current_p=*/true);
956 if (resolved != error_mark_node)
957 t1 = resolved;
962 tree resolved = resolve_typename_type (t2, /*only_current_p=*/true);
964 if (resolved != error_mark_node)
965 t2 = resolved;
1767 earlier by the parser when the name of MEMBER is resolved to MEMBER
2031 /* An expression of the form "A::template B" has been resolved to
952 tree resolved = resolve_typename_type (t1, /*only_current_p=*/true); local
960 tree resolved = resolve_typename_type (t2, /*only_current_p=*/true); local
/freebsd-9.3-release/usr.sbin/etcupdate/
H A Detcupdate.sh648 # Install the "resolved" version of a file. Returns true if it succeeds
871 # Only display the resolved command if the file
875 echo -n " (r) resolved,"
892 (r) resolved - accept merged version of file
/freebsd-9.3-release/contrib/tcsh/
H A Dcomplete.tcsh514 propset resolved revert status switch unlock \
519 propset resolved revert status switch unlock \
1129 reopen resolve resolved revert review reviews set submit \
/freebsd-9.3-release/contrib/ofed/libibcm/config/
H A Dltmain.sh3556 $echo "*** its dynamic dependency list that programs get resolved with at runtime."
3598 $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
6784 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
/freebsd-9.3-release/contrib/ofed/librdmacm/config/
H A Dltmain.sh3556 $echo "*** its dynamic dependency list that programs get resolved with at runtime."
3598 $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
6784 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
/freebsd-9.3-release/crypto/heimdal/
H A Dltmain.sh3548 $echo "*** its dynamic dependency list that programs get resolved with at runtime."
3590 $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
6776 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp1756 std::string resolved = resolveFileRelativeToOriginalDir(Filename, local
1759 if (!resolved.empty())
1760 File = FileMgr.getFile(resolved);
6545 /// cannot safely be resolved, they are queued until it is safe to resolve

Completed in 339 milliseconds