Home
last modified time | relevance | path

Searched refs:resolve (Results 1 – 25 of 166) sorted by relevance

1234567

/freebsd-14.2/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()
H A DProperty.cpp111 const bool resolve = definition.default_uint_value != 0; in Property() local
113 if (resolve) in Property()
115 m_value_sp = std::make_shared<OptionValueFileSpec>(file_spec, resolve); in Property()
/freebsd-14.2/usr.sbin/etcupdate/tests/
H A Dconflicts_test.sh217 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
287 echo 'r' | $COMMAND resolve -d $WORKDIR -D $TEST | grep -q newalias
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpec.h22 OptionValueFileSpec(bool resolve = true);
24 OptionValueFileSpec(const FileSpec &value, bool resolve = true);
27 const FileSpec &default_value, bool resolve = true);
/freebsd-14.2/sbin/ipf/ipsend/
H A Dipsend.c97 if (resolve(t, (char *)&ic->icmp_gwaddr) == -1) in do_icmp()
104 if (resolve(t, (char *)&ic->icmp_ip.ip_dst) == -1) in do_icmp()
111 if (resolve(t, in do_icmp()
319 if (resolve(src, (char *)&ip->ip_src) == -1) in main()
325 if (resolve(dst, (char *)&ip->ip_dst) == -1) in main()
333 else if (resolve(gateway, (char *)&gwip) == -1) in main()
H A Diptest.c132 if (resolve(dst, (char *)&ip->ip_dst) == -1) in main()
138 if (resolve(src, (char *)&ip->ip_src) == -1) in main()
146 else if (resolve(gateway, (char *)&gwip) == -1) in main()
H A Dipsend.h29 extern int resolve(char *, char *);
/freebsd-14.2/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-14.2/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-14.2/crypto/heimdal/lib/roken/
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 \
H A DChangeLog518 * resolve-test.c: print DS
615 * resolve.c: add ds_record
617 * resolve.h: add ds_record
634 * resolve-test.c: test program for libroken resolve from resolve.c
673 * resolve.c (stot): add AAAA
1390 * resolve.h: add key,sig,cert
1394 * resolve.h: add T_SIG, T_KEY
1395 * resolve.c: add SIG and KEY
2013 * resolve.c (stot): constify
2023 * resolve.c: some cleanup
[all …]
H A DMakefile.in188 libroken_la-realloc.lo libroken_la-resolve.lo \
236 parse_reply_test-resolve.$(OBJEXT)
248 am_resolve_test_OBJECTS = resolve-test.$(OBJEXT)
587 resolve_test_SOURCES = resolve-test.c
763 @rm -f resolve-test$(EXEEXT)
1184 libroken_la-resolve.lo: resolve.c
1186 @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libroken_la-resolve.Tpo $(DEPDIR)/libroken_la-resolve.Plo
1366 parse_reply_test-resolve.o: resolve.c
1368 …fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/parse_reply_test-resolve.Tpo $(DEPDIR)/parse_reply_test-resolv…
1373 parse_reply_test-resolve.obj: resolve.c
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBFileSpec.cpp46 SBFileSpec::SBFileSpec(const char *path, bool resolve) in SBFileSpec() argument
48 LLDB_INSTRUMENT_VA(this, path, resolve); in SBFileSpec()
50 if (resolve) in SBFileSpec()
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DDWARF.cpp83 static uint64_t resolve(uint64_t /*type*/, uint64_t /*offset*/, uint64_t s, in resolve() function
92 static uint64_t resolve(uint64_t /*type*/, uint64_t /*offset*/, uint64_t s, in resolve() function
131 0, LLDRelocationResolver<RelTy>::resolve}; in findAux()
H A DSymbols.h237 void resolve(const Undefined &other);
238 void resolve(const CommonSymbol &other);
239 void resolve(const Defined &other);
240 void resolve(const LazySymbol &other);
241 void resolve(const SharedSymbol &other);
H A DSymbols.cpp397 void Symbol::resolve(const Undefined &other) { in resolve() function in Symbol
577 void Symbol::resolve(const CommonSymbol &other) { in resolve() function in Symbol
615 void Symbol::resolve(const Defined &other) { in resolve() function in Symbol
626 void Symbol::resolve(const LazySymbol &other) { in resolve() function in Symbol
665 void Symbol::resolve(const SharedSymbol &other) { in resolve() function in Symbol
/freebsd-14.2/crypto/heimdal/lib/krb5/
H A Dtest_plugin.c76 krb5plugin_service_locate_ftable resolve = { variable
100 KRB5_PLUGIN_LOCATE, &resolve); in main()
/freebsd-14.2/kerberos5/lib/libroken/
H A DMakefile15 resolve.h \
58 resolve.c \
/freebsd-14.2/tools/build/
H A Dbeinstall.sh135 ${ETCUPDATE_CMD} resolve -D ${BE_MNTPT} || return $?
141 chroot ${BE_MNTPT} ${ETCUPDATE_CMD} resolve
/freebsd-14.2/sys/contrib/libsodium/dist-build/
H A Demscripten.sh99 Module.ready = new Promise(function (resolve, reject) {
106 resolve();
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSymbol.cpp244 Reference->resolve(); in resolveReferences()
254 Element->resolve(); in resolveReferences()
259 Element->resolve(); in resolveReferences()
/freebsd-14.2/crypto/openssl/providers/fips/
H A Dbuild.info2 # platforms can resolve symbols in other members of that library.
/freebsd-14.2/lib/ofed/libibmad/
H A DMakefile19 resolve.c \
/freebsd-14.2/contrib/bsnmp/
H A DFREEBSD-upgrade18 4. resolve conflicts
/freebsd-14.2/lib/libz/
H A DFREEBSD-upgrade10 version of upstream source, resolve any conflicts.

1234567