Home
last modified time | relevance | path

Searched full:resolve (Results 1 – 25 of 1251) sorted by relevance

12345678910>>...51

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpec.cpp21 OptionValueFileSpec::OptionValueFileSpec(bool resolve) : m_resolve(resolve) {} in OptionValueFileSpec() argument
23 OptionValueFileSpec::OptionValueFileSpec(const FileSpec &value, bool resolve) in OptionValueFileSpec() argument
26 m_resolve(resolve) {} in OptionValueFileSpec()
30 bool resolve) in OptionValueFileSpec() argument
33 m_resolve(resolve) {} in OptionValueFileSpec()
65 FileSystem::Instance().Resolve(m_current_value); in SetValueFromString()
/freebsd/usr.sbin/etcupdate/tests/
H A Dconflicts_test.sh29 # Various regression tests to run for the 'resolve' command.
67 # generate a conflict in /etc/login.conf. Each resolve option is tested
211 # Test each of the following resolve options: 'p', 'mf', 'tf', 'r'.
217 echo 'p' | $COMMAND resolve -d $WORKDIR -D $TEST >/dev/null
225 echo 'mf' | $COMMAND resolve -d $WORKDIR -D $TEST >/dev/null
235 echo 'tf' | $COMMAND resolve -d $WORKDIR -D $TEST >/dev/null
254 echo 'r' | $COMMAND resolve -d $WORKDIR -D $TEST >/dev/null
264 echo 'p' | $COMMAND resolve -d $WORKDIR -D $TEST | grep -q newalias
270 echo 'mf' | $COMMAND resolve -d $WORKDIR -D $TEST | grep -q newalias
279 echo 'tf' | $COMMAND resolve -d $WORKDIR -D $TEST | grep -q newalias
[all …]
/freebsd/crypto/heimdal/lib/roken/
H A DChangeLog22 * resolve.c: Use unsigned where appropriate.
90 * resolve.c: Try harder to call res_ndestroy().
240 * resolve.c (dns_srv_order): change a if (ptr == NULL) continue
250 * resolve.c: Plug memory leak found by IBM checker (and try to
255 * resolve.c: Spelling, from Alexey Dobriyan, via Jason McIntyre
320 * resolve.c (dns_lookup_int): if we have res_ndestroy, prefeer
395 * resolve-test.c: rename optind to optidx to avoid shadowing
405 * resolve.c (parse_record): fix casting to avoid losing const
518 * resolve-test.c: print DS
532 * resolve-test.c: print size_t by casting to unsigned long
[all …]
H A DMakefile.am23 noinst_PROGRAMS = snprintf-test resolve-test rkpty
47 parse_reply_test_SOURCES = parse_reply-test.c resolve.c
66 resolve_test_SOURCES = resolve-test.c
101 resolve.c \
184 resolve.h \
/freebsd/sbin/ipf/ipsend/
H A Dipsend.c93 if (resolve(t, (char *)&ic->icmp_gwaddr) == -1) in do_icmp()
95 fprintf(stderr,"Cant resolve %s\n", t); in do_icmp()
100 if (resolve(t, (char *)&ic->icmp_ip.ip_dst) == -1) in do_icmp()
102 fprintf(stderr,"Cant resolve %s\n", t); in do_icmp()
107 if (resolve(t, in do_icmp()
110 fprintf(stderr,"Cant resolve %s\n", t); in do_icmp()
315 if (resolve(src, (char *)&ip->ip_src) == -1) in main()
317 fprintf(stderr,"Cant resolve %s\n", src); in main()
321 if (resolve(dst, (char *)&ip->ip_dst) == -1) in main()
323 fprintf(stderr,"Cant resolve %s\n", dst); in main()
[all …]
H A Diptest.c128 if (resolve(dst, (char *)&ip->ip_dst) == -1) in main()
130 fprintf(stderr,"Cant resolve %s\n", dst); in main()
134 if (resolve(src, (char *)&ip->ip_src) == -1) in main()
136 fprintf(stderr,"Cant resolve %s\n", src); in main()
142 else if (resolve(gateway, (char *)&gwip) == -1) in main()
144 fprintf(stderr,"Cant resolve %s\n", gateway); in main()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DHexagonDYLDRendezvous.h69 bool Resolve();
89 /// A breakpoint should be set at this address and Resolve called on each
95 /// \see Resolve()
114 /// last call to Resolve().
118 /// last call to Resolve().
172 /// to Resolve().
177 /// call to Resolve().
198 /// Resolve().
202 /// Resolve().
/freebsd/contrib/bearssl/T0/
H A DWordData.cs53 internal override void Resolve() in Resolve() method in WordData
69 wd.Resolve(); in Resolve()
77 Resolve(); in Run()
83 Resolve(); in GetDataBlocks()
91 Resolve(); in GenerateCodeElements()
H A DWordInterpreted.cs59 internal override void Resolve() in Resolve() method in WordInterpreted
76 Resolve(); in Run()
82 Resolve(); in GetReferences()
95 Resolve(); in GetDataBlocks()
108 Resolve(); in GenerateCodeElements()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.h156 bool Resolve(); in clear()
173 /// A breakpoint should be set at this address and Resolve called on each
179 /// \see Resolve()
193 /// last call to Resolve().
197 /// last call to Resolve().
256 /// to Resolve().
261 /// call to Resolve().
288 /// Resolve().
292 /// Resolve().
/freebsd/contrib/unbound/doc/
H A Dlibunbound.3223 first resolve is done.
232 first resolve is done.
238 first resolve is done.
251 first resolve is done.
259 first resolve is done.
265 first resolve is done.
276 first resolve is done.
282 first resolve is done.
288 first resolve is done.
H A Dlibunbound.3.in189 resolve is done.
201 resolve is done.
206 resolve is done.
220 resolve is done.
229 resolve is done.
234 resolve is done.
249 resolve is done.
255 resolve is done.
261 resolve is done.
H A Dlibunbound.rst272 resolve is done.
284 resolve is done.
289 resolve is done.
303 resolve is done.
312 resolve is done.
317 resolve is done.
332 resolve is done.
338 resolve is done.
344 resolve is done.
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBFileSpec.cpp43 FileSystem::Instance().Resolve(*m_opaque_up); in SBFileSpec()
46 SBFileSpec::SBFileSpec(const char *path, bool resolve) in SBFileSpec() argument
48 LLDB_INSTRUMENT_VA(this, path, resolve); in SBFileSpec()
50 if (resolve) in SBFileSpec()
51 FileSystem::Instance().Resolve(*m_opaque_up); in SBFileSpec()
103 FileSystem::Instance().Resolve(result); in ResolvePath()
/freebsd/contrib/llvm-project/clang/lib/Headers/cuda_wrappers/
H A Dcomplex46 // complex functions, rather than calling builtins (which resolve to library
65 // __host__ code to sin() will still resolve to *something*, even if they don't
66 // resolve to the same function as they resolve to when compiling for host. We
67 // don't care that they don't resolve to the right function because we won't
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DTildeExpressionResolver.h24 /// Resolve a Tilde Expression contained according to bash rules.
26 /// \param Expr Contains the tilde expression to resolve. A valid tilde
39 /// \param Expr Contains the tilde expression prefix to resolve. See
50 /// Resolve an entire path that begins with a tilde expression, replacing
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp120 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
129 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
138 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
145 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
161 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
185 FileSystem::Instance().Resolve(dirspec); in LocateExecutableSymbolFile()
211 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
/freebsd/crypto/krb5/src/lib/krb5/rcache/
H A Drc_base.c36 /* If KRB5RCACHENAME is set in the environment, resolve it. */ in k5_rc_default()
41 /* If KRB5RCACHETYPE is set in the environment, resolve it with an empty in k5_rc_default()
53 * value and resolve it. */ in k5_rc_default()
66 /* Resolve the default type with no residual. */ in k5_rc_default()
102 ret = t->ops->resolve(context, sep + 1, &rc->data); in k5_rc_resolve()
/freebsd/contrib/ofed/librdmacm/man/
H A Drdma_getaddrinfo.315 Optional, name, dotted-decimal IPv4, or IPv6 hex address to resolve.
34 specified, the call will resolve address information for use on the
36 If node is provided, rdma_getaddrinfo will attempt to resolve the RDMA address,
39 If node is not given, rdma_getaddrinfo will attempt to resolve the RDMA addressing
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSymbol.cpp227 // Resolve any given pattern. in resolveName()
241 // Resolve any referenced symbol. in resolveReferences()
244 Reference->resolve(); in resolveReferences()
245 // Recursively resolve the symbol names. in resolveReferences()
252 // Resolve symbol type. in resolveReferences()
254 Element->resolve(); in resolveReferences()
259 Element->resolve(); in resolveReferences()
267 // Resolve the variable associated type. in resolveReferences()
274 // follow the chain to resolve the name from those references. in resolveReferencesChain()
/freebsd/cddl/usr.sbin/zfsd/
H A Dzfsd.837 attempts to resolve ZFS faults that the kernel can't resolve by itself.
43 attempts to resolve these faults by activating or deactivating hot spares
67 will attempt to resolve the following types of fault:
/freebsd/crypto/heimdal/lib/kafs/
H A DMakefile.am58 ROKEN_SRCS = resolve.c strtok_r.c strlcpy.c strsep.c
83 resolve.c:
84 $(LN_S) $(srcdir)/../roken/resolve.c .
/freebsd/usr.sbin/etcupdate/
H A Detcupdate.868 .Cm resolve
322 .Ss Resolve Mode
324 .Cm resolve
325 mode is used to resolve any conflicts encountered during a merge.
554 .Cm resolve .
672 To resolve any conflicts generated during a merge:
674 .Dl "etcupdate resolve"
919 .Dl "etcupdate resolve tf /some/file"
921 to resolve a specific conflict in an automated fashion.
/freebsd/lib/libthr/thread/
H A Dthr_rtld.c243 /* force to resolve _umtx_op PLT */ in _thr_rtld_init()
246 /* force to resolve errno() PLT */ in _thr_rtld_init()
249 /* force to resolve memcpy PLT */ in _thr_rtld_init()
287 /* mask signals, also force to resolve __sys_sigprocmask PLT */ in _thr_rtld_init()
294 /* resolve machine depended functions, if any */ in _thr_rtld_init()
/freebsd/contrib/llvm-project/lld/ELF/
H A DDWARF.cpp81 // In resolve() methods, the `type` and `offset` arguments would always be 0,
84 static uint64_t resolve(uint64_t /*type*/, uint64_t /*offset*/, uint64_t s, in resolve() function
93 static uint64_t resolve(uint64_t /*type*/, uint64_t /*offset*/, uint64_t s, in resolve() function
120 // shall still resolve it. This is important for --gdb-index: the end address in findAux()
132 0, LLDRelocationResolver<RelTy>::resolve}; in findAux()

12345678910>>...51