Home
last modified time | relevance | path

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

123456

/freebsd-13.1/crypto/openssh/
H A Dsftp-realpath.c74 if (resolved == NULL) { in sftp_realpath()
75 resolved = malloc(PATH_MAX); in sftp_realpath()
76 if (resolved == NULL) in sftp_realpath()
84 resolved[0] = '/'; in sftp_realpath()
85 resolved[1] = '\0'; in sftp_realpath()
87 return (resolved); in sftp_realpath()
93 free(resolved); in sftp_realpath()
164 return (resolved); in sftp_realpath()
178 resolved[1] = 0; in sftp_realpath()
219 return (resolved); in sftp_realpath()
[all …]
/freebsd-13.1/lib/libc/stdlib/
H A Drealpath.c69 resolved[0] = '/'; in realpath1()
70 resolved[1] = '\0'; in realpath1()
72 return (resolved); in realpath1()
77 resolved[0] = '.'; in realpath1()
78 resolved[1] = '\0'; in realpath1()
133 resolved_len = q - resolved; in realpath1()
165 resolved[1] = 0; in realpath1()
208 return (resolved); in realpath1()
224 if (resolved != NULL) { in realpath()
228 if (resolved == NULL) in realpath()
[all …]
/freebsd-13.1/contrib/bmake/
H A Drealpath.c82 if (resolved == NULL) { in realpath()
84 if (resolved == NULL) in realpath()
99 p = resolved; in realpath()
110 if (resolved && getcwd(resolved, MAXPATHLEN) == NULL) { in realpath()
115 len = strlen(resolved); in realpath()
126 if (p == resolved) in realpath()
129 return resolved; in realpath()
146 if (p != resolved) in realpath()
157 if (p == resolved) in realpath()
172 if (lstat(resolved, &sb) == -1) in realpath()
[all …]
/freebsd-13.1/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.1/usr.sbin/snapinfo/
H A Dsnapinfo.c88 char resolved[PATH_MAX]; in main() local
95 if (realpath(path, resolved) == NULL || /* can create full path */ in main()
96 stat(resolved, &st) == -1 || /* is it stat'able */ in main()
100 path = resolved; in main()
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp183 llvm::SmallString<128> resolved(pathname); in SetFile() local
186 if (needsNormalization(resolved)) in SetFile()
187 llvm::sys::path::remove_dots(resolved, true, m_style); in SetFile()
191 std::replace(resolved.begin(), resolved.end(), '\\', '/'); in SetFile()
193 if (resolved.empty()) { in SetFile()
203 llvm::StringRef filename = llvm::sys::path::filename(resolved, m_style); in SetFile()
207 llvm::StringRef directory = llvm::sys::path::parent_path(resolved, m_style); in SetFile()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.h45 DeclStatus(lldb::user_id_t uid, bool resolved) in DeclStatus()
46 : uid(uid), resolved(resolved) {} in DeclStatus()
48 bool resolved = false; member
/freebsd-13.1/usr.sbin/etcupdate/tests/
H A Dconflicts_test.sh195 resolved() function
230 resolved /etc/login.conf
240 resolved /etc/login.conf
259 resolved /etc/login.conf
/freebsd-13.1/contrib/unbound/iterator/
H A Diter_delegpt.c81 copy->nslist->resolved = ns->resolved; in delegpt_copy()
124 ns->resolved = 0; in delegpt_add_ns()
187 ns->resolved = 1; in delegpt_add_target()
249 if(!ns->resolved) in delegpt_count_ns()
297 (ns->resolved?"*":""), in delegpt_log()
346 if(!ns->resolved) in delegpt_count_missing_targets()
507 ns->resolved = 1; in delegpt_mark_neg()
530 ns->resolved = 1; in delegpt_no_ipv6()
540 ns->resolved = 1; in delegpt_no_ipv4()
616 ns->resolved = 0; in delegpt_add_ns_mlc()
[all …]
/freebsd-13.1/sbin/mount/
H A Dgetmntopts.c129 checkpath(const char *path, char *resolved) in checkpath() argument
133 if (realpath(path, resolved) == NULL || stat(resolved, &sb) != 0) in checkpath()
/freebsd-13.1/sys/netpfil/ipfw/
H A Dip_fw_iface.c353 iif->resolved = 1; in ipfw_iface_ref()
379 if (iif->resolved != 0) in ipfw_iface_add_notify()
428 iif->resolved = 1; in handle_ifattach()
454 iif->resolved = 0; in handle_ifdetach()
479 if (iif->resolved) in export_iface_internal()
/freebsd-13.1/contrib/subversion/subversion/svn/
H A Dconflict-callbacks.c873 handle_text_conflict(svn_boolean_t *resolved, in handle_text_conflict() argument
1212 *resolved = TRUE; in handle_text_conflict()
1216 *resolved = FALSE; in handle_text_conflict()
1404 handle_prop_conflicts(svn_boolean_t *resolved, in handle_prop_conflicts() argument
1750 handle_tree_conflict(svn_boolean_t *resolved, in handle_tree_conflict() argument
1818 *resolved = TRUE; in handle_tree_conflict()
1961 *resolved = TRUE; in handle_tree_conflict()
1965 *resolved = FALSE; in handle_tree_conflict()
2007 *resolved = FALSE; in resolve_conflict_interactively()
2252 svn_boolean_t resolved = FALSE; in svn_cl__resolve_conflict() local
[all …]
/freebsd-13.1/usr.bin/rctl/
H A Drctl.c184 char *copy, *expanded, *resolved, *tofree; in expand_rule() local
224 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest); in expand_rule()
232 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest); in expand_rule()
234 ret = asprintf(&resolved, "%s:%s:%s", subject, textid, rest); in expand_rule()
245 expanded = expand_amount(resolved, rule); in expand_rule()
246 free(resolved); in expand_rule()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DFileSystem.cpp260 SmallString<128> resolved(path.begin(), path.end()); in Resolve() local
263 resolved); in Resolve()
266 SmallString<128> absolute(resolved.begin(), resolved.end()); in Resolve()
273 path.append(resolved.begin(), resolved.end()); in Resolve()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp302 uint32_t resolved = 0; in GetSymbolContext() local
308 resolved |= eSymbolContextTarget; in GetSymbolContext()
332 resolved |= eSymbolContextCompUnit; in GetSymbolContext()
341 resolved |= eSymbolContextFunction; in GetSymbolContext()
350 resolved |= eSymbolContextBlock; in GetSymbolContext()
359 resolved |= eSymbolContextSymbol; in GetSymbolContext()
368 resolved |= eSymbolContextLineEntry; in GetSymbolContext()
380 resolved |= m_sc.module_sp->ResolveSymbolContextForAddress( in GetSymbolContext()
389 if ((resolved & eSymbolContextBlock) && m_sc.block == nullptr) in GetSymbolContext()
393 if ((resolved & eSymbolContextLineEntry) && in GetSymbolContext()
[all …]
/freebsd-13.1/sbin/fsck_ffs/
H A Dglobs.c98 char resolved; /* cleared if unresolved changes => not clean */ variable
156 resolved = 0; in fsckinit()
H A Dmain.c437 resolved = 1; in checkfilesys()
546 resolved = 0; in checkfilesys()
552 resolved = 0; in checkfilesys()
553 ckfini(resolved); in checkfilesys()
/freebsd-13.1/contrib/libcbor/
H A Dcodecov.yml2 - "test/stream_expectations.c" # Function pointers are not resolved correctly
/freebsd-13.1/contrib/ofed/infiniband-diags/src/
H A Diblinkinfo.c593 int resolved = -1; in main() local
671 if ((resolved = in main()
677 if ((resolved = in main()
708 if (resolved >= 0) { in main()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp399 bool resolved = false; in GetValueAsData() local
413 resolved = true; in GetValueAsData()
423 resolved = true; in GetValueAsData()
430 if (!resolved) { in GetValueAsData()
H A DSection.cpp289 bool resolved = true; in Dump() local
300 resolved = false; in Dump()
309 resolved ? ' ' : '*', m_readable ? 'r' : '-', in Dump()
/freebsd-13.1/sbin/ipf/libipf/
H A Dipft_tx.c48 tx_hostnum(char *host, int *resolved) in tx_hostnum() argument
52 *resolved = 0; in tx_hostnum()
59 *resolved = -1; in tx_hostnum()
/freebsd-13.1/sys/contrib/device-tree/src/arm64/qcom/
H A Dsdm630-sony-xperia-ganges.dtsi26 * issue with it that has to be resolved.
/freebsd-13.1/usr.bin/svn/lib/libsvn_client/
H A DMakefile46 resolved.c \
/freebsd-13.1/tools/build/
H A Dcheck-links.sh26 -v: Show which library each symbol is resolved to.

123456