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

  /src/lib/libc/gen/
getcwd.c 64 * 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 && getcwd(resolved, MAXPATHLEN) == NULL)
    [all...]
  /src/usr.sbin/sysinst/
aout2elf.c 312 * 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)
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 && *q == '/')
    [all...]
  /src/usr.bin/make/unit-tests/
varmod-to-abs.mk 10 # variable with the same name as the path that is to be resolved. There were
dollar.exp 35 which is then resolved to the variable X with the value VAR_X.
var-scope-local-legacy.mk 8 # are retained so that they can be resolved later, in the target scope.
varname-dot-curdir.mk 7 # be resolved. If not, make fails at startup.
dollar.mk 68 $C 'which is then resolved to the variable X with the value VAR_X.'
dep-var.mk 29 # When the dependency line is parsed, it is resolved to the string
var-scope-local.mk 81 # scope and from the environment are resolved, in this precedence order (but
228 # behaves as expected. Note that the expression '${.TARGET}' is not resolved
  /src/sbin/fsck_ffs/
main.c 121 char resolved; variable
409 resolved = 1;
564 if (!resolved || rerun) {
pass3.c 91 resolved && usedsoftdep && state == DSTATE) {
fsck.h 299 extern char resolved; /* cleared if unresolved changes => not clean */
dir.c 459 if (resolved && preen && usedsoftdep) {
466 * Hence, resolved should not be cleared when
469 saveresolved = resolved;
471 resolved = saveresolved;
utilities.c 102 resolved = 0;
115 resolved = 0;
123 resolved = 0;
  /src/doc/
TODO.modules 12 undefined global symbols are resolved; if any symbols can't
13 be resolved, the load fails. Similarly, if a module is
208 module A, the symbol gets resolved. But if module A is loaded first,
209 the symbol won't be resolved. If we subsequently load module B, we
TODO.compat-module 12 4. Resolved some inter-module dependencies.
19 built-in dependencies get resolved.
  /src/usr.bin/make/
main.c 2003 cached_realpath(const char *pathname, char *resolved)
2012 snprintf(resolved, MAXPATHLEN, "%s", rp);
2013 return resolved;
2016 rp = realpath(pathname, resolved);
2020 return resolved;
  /src/sys/arch/alpha/alpha/
fp_complete.c 128 * Temporary trap shadow instrumentation. The [un]resolved counters
719 goto resolved;
780 goto resolved;
816 resolved:
842 "FP", "TS resolved");
  /src/share/mk/
bsd.sys.mk 100 # XXX there are some strange problems not yet resolved
bsd.prog.mk 508 # that OBJS and DPADD are resolved -- if the caller had written `foo:
  /src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/
vchiq_core.c 1346 int resolved = 0; local
1399 resolved++;
1401 return resolved;
1843 int resolved = 0; local
1892 resolved = resolve_bulks(service,
1897 if (resolved)
  /src/sbin/fsdb/
fsdb.c 113 char resolved; variable

Completed in 37 milliseconds