Home
last modified time | relevance | path

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

123456

/freebsd-12.1/crypto/openssh/openbsd-compat/
H A Drealpath.c77 if (resolved == NULL) { in realpath()
78 resolved = malloc(PATH_MAX); in realpath()
79 if (resolved == NULL) in realpath()
87 resolved[0] = '/'; in realpath()
88 resolved[1] = '\0'; in realpath()
90 return (resolved); in realpath()
96 free(resolved); in realpath()
167 return (resolved); in realpath()
181 resolved[1] = 0; in realpath()
222 return (resolved); in realpath()
[all …]
/freebsd-12.1/lib/libc/stdlib/
H A Drealpath.c64 resolved[0] = '/'; in realpath1()
65 resolved[1] = '\0'; in realpath1()
67 return (resolved); in realpath1()
72 resolved[0] = '.'; in realpath1()
73 resolved[1] = '\0'; in realpath1()
128 resolved_len = q - resolved; in realpath1()
141 if (lstat(resolved, &sb) != 0) in realpath1()
160 resolved[1] = 0; in realpath1()
203 return (resolved); in realpath1()
219 if (resolved != NULL) { in realpath()
[all …]
/freebsd-12.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-12.1/contrib/binutils/opcodes/
H A Dia64-gen.c1033 int resolved = 0; in in_iclass() local
1076 if (resolved && in in_iclass()
1157 resolved = 0; in in_iclass()
1162 if (!resolved in in_iclass()
1167 resolved = 1; in in_iclass()
1171 if (!resolved in in_iclass()
1182 resolved = 1; in in_iclass()
1226 if (resolved) in in_iclass()
1242 resolved = 1; in in_iclass()
1248 if (resolved) in in_iclass()
[all …]
/freebsd-12.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-12.1/contrib/unbound/iterator/
H A Diter_delegpt.c79 copy->nslist->resolved = ns->resolved; in delegpt_copy()
122 ns->resolved = 0; in delegpt_add_ns()
177 ns->resolved = 1; in delegpt_add_target()
234 if(!ns->resolved) in delegpt_count_ns()
282 (ns->resolved?"*":""), in delegpt_log()
331 if(!ns->resolved) in delegpt_count_missing_targets()
493 ns->resolved = 1; in delegpt_mark_neg()
516 ns->resolved = 1; in delegpt_no_ipv6()
526 ns->resolved = 1; in delegpt_no_ipv4()
600 ns->resolved = 0; in delegpt_add_ns_mlc()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DFileSpec.cpp224 llvm::SmallString<128> resolved(pathname); in SetFile() local
227 if (needsNormalization(resolved)) in SetFile()
228 llvm::sys::path::remove_dots(resolved, true, m_style); in SetFile()
232 std::replace(resolved.begin(), resolved.end(), '\\', '/'); in SetFile()
234 if (resolved.empty()) { in SetFile()
244 llvm::StringRef filename = llvm::sys::path::filename(resolved, m_style); in SetFile()
248 llvm::StringRef directory = llvm::sys::path::parent_path(resolved, m_style); in SetFile()
/freebsd-12.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-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.h46 DeclStatus(lldb::user_id_t uid, bool resolved) in DeclStatus()
47 : uid(uid), resolved(resolved) {} in DeclStatus()
49 bool resolved = false; member
/freebsd-12.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-12.1/sys/netpfil/ipfw/
H A Dip_fw_iface.c355 iif->resolved = 1; in ipfw_iface_ref()
381 if (iif->resolved != 0) in ipfw_iface_add_notify()
430 iif->resolved = 1; in handle_ifattach()
456 iif->resolved = 0; in handle_ifdetach()
481 if (iif->resolved) in export_iface_internal()
/freebsd-12.1/contrib/subversion/subversion/svn/
H A Dconflict-callbacks.c862 handle_text_conflict(svn_boolean_t *resolved, in handle_text_conflict() argument
1201 *resolved = TRUE; in handle_text_conflict()
1205 *resolved = FALSE; in handle_text_conflict()
1393 handle_prop_conflicts(svn_boolean_t *resolved, in handle_prop_conflicts() argument
1677 handle_tree_conflict(svn_boolean_t *resolved, in handle_tree_conflict() argument
1745 *resolved = TRUE; in handle_tree_conflict()
1908 *resolved = TRUE; in handle_tree_conflict()
1912 *resolved = FALSE; in handle_tree_conflict()
1955 *resolved = FALSE; in resolve_conflict_interactively()
2200 svn_boolean_t resolved = FALSE; in svn_cl__resolve_conflict() local
[all …]
/freebsd-12.1/usr.bin/rctl/
H A Drctl.c185 char *copy, *expanded, *resolved, *tofree; in expand_rule() local
225 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest); in expand_rule()
233 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest); in expand_rule()
235 ret = asprintf(&resolved, "%s:%s:%s", subject, textid, rest); in expand_rule()
246 expanded = expand_amount(resolved, rule); in expand_rule()
247 free(resolved); in expand_rule()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStackFrame.cpp272 uint32_t resolved = 0; in GetSymbolContext() local
278 resolved |= eSymbolContextTarget; in GetSymbolContext()
325 resolved |= eSymbolContextCompUnit; in GetSymbolContext()
334 resolved |= eSymbolContextFunction; in GetSymbolContext()
343 resolved |= eSymbolContextBlock; in GetSymbolContext()
352 resolved |= eSymbolContextSymbol; in GetSymbolContext()
361 resolved |= eSymbolContextLineEntry; in GetSymbolContext()
373 resolved |= m_sc.module_sp->ResolveSymbolContextForAddress( in GetSymbolContext()
382 if ((resolved & eSymbolContextBlock) && m_sc.block == nullptr) in GetSymbolContext()
386 if ((resolved & eSymbolContextLineEntry) && in GetSymbolContext()
[all …]
/freebsd-12.1/sbin/fsck_ffs/
H A Dglobs.c99 char resolved; /* cleared if unresolved changes => not clean */ variable
155 resolved = 0; in fsckinit()
H A Dmain.c492 resolved = 1; in checkfilesys()
603 resolved = 0; in checkfilesys()
610 resolved = 0; in checkfilesys()
611 ckfini(resolved); in checkfilesys()
H A Dfsutil.c133 resolved = 0; in reply()
146 resolved = 0; in reply()
154 resolved = 0; in reply()
599 resolved = 0; in blread()
620 resolved = 0; in blwrite()
/freebsd-12.1/contrib/binutils/gas/
H A Dsymbols.c1005 int resolved; in resolve_symbol_value() local
1036 resolved = 0; in resolve_symbol_value()
1045 resolved = 1; in resolve_symbol_value()
1071 resolved = 0; in resolve_symbol_value()
1087 resolved = 1; in resolve_symbol_value()
1127 resolved = 1; in resolve_symbol_value()
1220 resolved = symbol_resolved_p (add_symbol); in resolve_symbol_value()
1428 if (resolved) in resolve_symbol_value()
1482 int resolved; in snapshot_symbol() local
1487 resolved = resolve_expression (&expr); in snapshot_symbol()
[all …]
/freebsd-12.1/contrib/ipfilter/lib/
H A Dipft_tx.c47 static u_32_t tx_hostnum(host, resolved) in tx_hostnum() argument
49 int *resolved;
53 *resolved = 0;
60 *resolved = -1;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DValue.cpp419 bool resolved = false; in GetValueAsData() local
433 resolved = true; in GetValueAsData()
443 resolved = true; in GetValueAsData()
450 if (!resolved) { in GetValueAsData()
H A DSection.cpp307 bool resolved = true; in Dump() local
318 resolved = false; in Dump()
327 resolved ? ' ' : '*', m_readable ? 'r' : '-', in Dump()
/freebsd-12.1/contrib/ofed/infiniband-diags/src/
H A Diblinkinfo.c592 int resolved = -1; in main() local
670 if ((resolved = in main()
676 if ((resolved = in main()
707 if (resolved >= 0) { in main()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseTentative.cpp355 bool resolved() { in resolved() function
363 if (!resolved()) { in markNotExpression()
404 return resolved(); in markNotCondition()
409 return resolved(); in markNotForRangeDecl()
416 assert(resolved() && "can't continue after tentative parsing bails out"); in update()
428 return resolved(); in update()
/freebsd-12.1/usr.bin/svn/lib/libsvn_client/
H A DMakefile16 prop_commands.c ra.c relocate.c repos_diff.c resolved.c \
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DFunction.cpp137 : return_pc(return_pc), resolved(false) { in CallEdge()
142 if (resolved) in ParseSymbolFileAndResolve()
172 resolved = true; in ParseSymbolFileAndResolve()

123456