HomeSort by: relevance | last modified time | path
    Searched refs:resolved (Results 1 - 24 of 24) 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/
suff-phony.mk 3 # Test that .PHONY targets are not resolved using suffix rules.
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.
varname-dot-curdir.mk 7 # be resolved. If not, make fails at startup.
varmod-path.mk 7 # as of 2020-08-23 it is nevertheless resolved to a path. This is probably
var-scope-local-legacy.mk 8 # are retained so that they can be resolved later, in the target scope.
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
224 # behaves as expected. Note that the expression '${.TARGET}' is not resolved
  /src/sbin/fsck_ffs/
main.c 120 char resolved; variable in typeref:typename:char
408 resolved = 1;
563 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/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/rockchip/
rk3399-kobol-helios64.dts 194 * frequencies until this problem is properly understood and resolved.
  /src/share/mk/
bsd.sys.mk 99 # XXX there are some strange problems not yet resolved
  /src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/
vchiq_core.c 1345 int resolved = 0; local in function:resolve_bulks
1398 resolved++;
1400 return resolved;
1840 int resolved = 0; local in function:parse_rx_slots
1886 resolved = resolve_bulks(service,
1891 if (resolved)
  /src/sbin/fsdb/
fsdb.c 113 char resolved; variable in typeref:typename:char

Completed in 40 milliseconds