| /freebsd-13.1/crypto/openssh/ |
| H A D | sftp-realpath.c | 74 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 D | realpath.c | 69 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 D | realpath.c | 82 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 D | module-setup.sh.in | 17 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 D | snapinfo.c | 88 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 D | FileSpec.cpp | 183 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 D | PdbAstBuilder.h | 45 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 D | conflicts_test.sh | 195 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 D | iter_delegpt.c | 81 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 D | getmntopts.c | 129 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 D | ip_fw_iface.c | 353 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 D | conflict-callbacks.c | 873 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 D | rctl.c | 184 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 D | FileSystem.cpp | 260 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 D | StackFrame.cpp | 302 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 D | globs.c | 98 char resolved; /* cleared if unresolved changes => not clean */ variable 156 resolved = 0; in fsckinit()
|
| H A D | main.c | 437 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 D | codecov.yml | 2 - "test/stream_expectations.c" # Function pointers are not resolved correctly
|
| /freebsd-13.1/contrib/ofed/infiniband-diags/src/ |
| H A D | iblinkinfo.c | 593 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 D | Value.cpp | 399 bool resolved = false; in GetValueAsData() local 413 resolved = true; in GetValueAsData() 423 resolved = true; in GetValueAsData() 430 if (!resolved) { in GetValueAsData()
|
| H A D | Section.cpp | 289 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 D | ipft_tx.c | 48 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 D | sdm630-sony-xperia-ganges.dtsi | 26 * issue with it that has to be resolved.
|
| /freebsd-13.1/usr.bin/svn/lib/libsvn_client/ |
| H A D | Makefile | 46 resolved.c \
|
| /freebsd-13.1/tools/build/ |
| H A D | check-links.sh | 26 -v: Show which library each symbol is resolved to.
|