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

123

/freebsd-13-stable/lib/libc/stdlib/
H A Drealpath.c54 * components. Returns (resolved) on success, or (NULL) on failure,
55 * in which case the path which caused trouble is left in (resolved).
58 realpath1(const char *path, char *resolved) argument
69 resolved[0] = '/';
70 resolved[1] = '\0';
72 return (resolved);
76 if (getcwd(resolved, PATH_MAX) == NULL) {
77 resolved[0] = '.';
78 resolved[1] = '\0';
81 resolved_len = strlen(resolved);
212 realpath(const char * __restrict path, char * __restrict resolved) argument
[all...]
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Drealpath.c54 * char *realpath(const char *path, char resolved[PATH_MAX]);
57 * components. Returns (resolved) on success, or (NULL) on failure,
58 * in which case the path which caused trouble is left in (resolved).
61 realpath(const char *path, char *resolved) argument
77 if (resolved == NULL) {
78 resolved = malloc(PATH_MAX);
79 if (resolved == NULL)
87 resolved[0] = '/';
88 resolved[1] = '\0';
90 return (resolved);
[all...]
/freebsd-13-stable/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-13-stable/sys/contrib/openzfs/contrib/dracut/02zfsexpandknowledge/
H A Dmodule-setup.sh.in17 local resolved
26 resolved="$(readlink -f "$pooldev")"
27 dinfo "zfsexpandknowledge: pool $1 has device $pooldev (which resolves to $resolved)"
28 echo "$resolved"
/freebsd-13-stable/usr.sbin/snapinfo/
H A Dsnapinfo.c88 char resolved[PATH_MAX]; local
95 if (realpath(path, resolved) == NULL || /* can create full path */
96 stat(resolved, &st) == -1 || /* is it stat'able */
100 path = resolved;
/freebsd-13-stable/sbin/mount/
H A Dgetmntopts.c129 checkpath(const char *path, char *resolved) argument
133 if (realpath(path, resolved) == NULL || stat(resolved, &sb) != 0)
/freebsd-13-stable/sbin/fsck_ffs/
H A Dglobs.c98 char resolved; /* cleared if unresolved changes => not clean */ variable
155 resolved = 0;
H A Dpass3.c86 resolved && usedsoftdep && S_IS_DUNFOUND(state)) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp183 llvm::SmallString<128> resolved(pathname);
186 if (needsNormalization(resolved))
187 llvm::sys::path::remove_dots(resolved, true, m_style);
191 std::replace(resolved.begin(), resolved.end(), '\\', '/');
193 if (resolved.empty()) {
203 llvm::StringRef filename = llvm::sys::path::filename(resolved, m_style);
207 llvm::StringRef directory = llvm::sys::path::parent_path(resolved, m_style);
551 io.mapRequired("resolved", f.m_is_resolved);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.h45 DeclStatus(lldb::user_id_t uid, bool resolved) argument
46 : uid(uid), resolved(resolved) {}
48 bool resolved = false; member in struct:lldb_private::npdb::DeclStatus
/freebsd-13-stable/usr.sbin/etcupdate/tests/
H A Dconflicts_test.sh195 resolved() function
198 echo "Conflict $1 should be resolved"
230 resolved /etc/login.conf
240 resolved /etc/login.conf
244 # Verify that 'r' installs the resolved version of the file. To
259 resolved /etc/login.conf
/freebsd-13-stable/sys/netpfil/ipfw/
H A Dip_fw_iface.c353 iif->resolved = 1;
379 if (iif->resolved != 0)
428 iif->resolved = 1;
454 iif->resolved = 0;
479 if (iif->resolved)
/freebsd-13-stable/usr.bin/rctl/
H A Drctl.c184 char *copy, *expanded, *resolved, *tofree; local
224 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest);
232 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest);
234 ret = asprintf(&resolved, "%s:%s:%s", subject, textid, rest);
245 expanded = expand_amount(resolved, rule);
246 free(resolved);
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvarmod-to-abs.mk10 # variable with the same name as the path that is to be resolved. There were
H A Ddollar.exp35 which is then resolved to the variable X with the value VAR_X.
H A Dvarname-dot-curdir.mk7 # be resolved. If not, make fails at startup.
/freebsd-13-stable/usr.bin/svn/lib/libsvn_client/
H A DMakefile46 resolved.c \
/freebsd-13-stable/contrib/unbound/iterator/
H A Diter_delegpt.c79 copy->nslist->resolved = ns->resolved;
122 ns->resolved = 0;
177 ns->resolved = 1;
234 if(!ns->resolved)
282 (ns->resolved?"*":""),
331 if(!ns->resolved)
493 ns->resolved = 1;
516 ns->resolved = 1;
526 ns->resolved
[all...]
H A Diter_delegpt.h103 * If the name has been resolved. false if not queried for yet.
108 int resolved; member in struct:delegpt_ns
213 * This name is marked resolved.
320 * Count number of missing targets. These are ns names with no resolved flag.
352 * sets the got4 or got6 to negative, updates the ns->resolved.
426 * This name is marked resolved.
/freebsd-13-stable/contrib/subversion/subversion/svn/
H A Dconflict-callbacks.c819 /* Mark CONFLICT as resolved to resolution option with ID OPTION_ID.
822 * resolved. If PROPNAME is "", mark all property conflicts described by
823 * CONFLICT as resolved.
874 handle_text_conflict(svn_boolean_t *resolved,
1111 * resolved in this case. */
1196 "before choosing 'mark resolved'.\n\n")));
1213 *resolved = TRUE;
1217 *resolved = FALSE;
1405 handle_prop_conflicts(svn_boolean_t *resolved,
1467 *resolved
873 handle_text_conflict(svn_boolean_t *resolved, svn_boolean_t *postponed, svn_boolean_t *quit, svn_boolean_t *printed_description, svn_client_conflict_t *conflict, const char *path_prefix, svn_cmdline_prompt_baton_t *pb, const char *editor_cmd, apr_hash_t *config, svn_cl__conflict_stats_t *conflict_stats, svn_client_ctx_t *ctx, apr_pool_t *scratch_pool) argument
1404 handle_prop_conflicts(svn_boolean_t *resolved, svn_boolean_t *postponed, svn_boolean_t *quit, const svn_string_t **merged_value, const char *path_prefix, svn_cmdline_prompt_baton_t *pb, const char *editor_cmd, apr_hash_t *config, svn_client_conflict_t *conflict, svn_cl__conflict_stats_t *conflict_stats, svn_client_ctx_t *ctx, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1750 handle_tree_conflict(svn_boolean_t *resolved, svn_boolean_t *postponed, svn_boolean_t *quit, svn_boolean_t *printed_description, svn_client_conflict_t *conflict, const char *path_prefix, svn_cmdline_prompt_baton_t *pb, svn_cl__conflict_stats_t *conflict_stats, svn_client_ctx_t *ctx, apr_pool_t *scratch_pool) argument
1973 resolve_conflict_interactively(svn_boolean_t *resolved, svn_boolean_t *postponed, svn_boolean_t *quit, svn_boolean_t *external_failed, svn_boolean_t *printed_summary, svn_boolean_t *printed_description, svn_client_conflict_t *conflict, const char *editor_cmd, apr_hash_t *config, const char *path_prefix, svn_cmdline_prompt_baton_t *pb, svn_cl__conflict_stats_t *conflict_stats, svn_client_ctx_t *ctx, apr_pool_t *scratch_pool) argument
2252 svn_boolean_t resolved = FALSE; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DFileSystem.cpp260 SmallString<128> resolved(path.begin(), path.end());
263 resolved); local
266 SmallString<128> absolute(resolved.begin(), resolved.end());
273 path.append(resolved.begin(), resolved.end());
288 // Update the FileSpec with the resolved path.
/freebsd-13-stable/contrib/ipfilter/lib/
H A Dipft_tx.c47 static u_32_t tx_hostnum(host, resolved)
49 int *resolved;
53 *resolved = 0;
60 *resolved = -1;
/freebsd-13-stable/tools/build/
H A Dcheck-links.sh26 -v: Show which library each symbol is resolved to.
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp145 // Make sure we have resolved the StackID object's symbol context scope if we
278 uint32_t resolved = 0; local
284 resolved |= eSymbolContextTarget;
288 // don't have a module. The resolved address section will contain the
331 resolved |= eSymbolContextCompUnit;
340 resolved |= eSymbolContextFunction;
349 resolved |= eSymbolContextBlock;
358 resolved |= eSymbolContextSymbol;
367 resolved |= eSymbolContextLineEntry;
379 resolved |
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp419 bool resolved = false; local
433 resolved = true;
443 resolved = true;
450 if (!resolved) {

Completed in 122 milliseconds

123