Home
last modified time | relevance | path

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

123456789

/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDFileSpec.cpp311 FileSpec::SetFile (const char *pathname, bool resolve, PathSyntax syntax) in SetFile() argument
323 if (resolve) in SetFile()
348 FileSpec::SetFile(const char *pathname, bool resolve, ArchSpec arch) in SetFile() argument
350 return SetFile(pathname, resolve, in SetFile()
357 FileSpec::SetFile(const std::string &pathname, bool resolve, PathSyntax syntax) in SetFile() argument
359 return SetFile(pathname.c_str(), resolve, syntax); in SetFile()
363 FileSpec::SetFile(const std::string &pathname, bool resolve, ArchSpec arch) in SetFile() argument
365 return SetFile(pathname.c_str(), resolve, arch); in SetFile()
1294 const bool resolve = false; in CopyByAppendingPathComponent() local
1296 return FileSpec(new_path,resolve); in CopyByAppendingPathComponent()
[all …]
/NextBSD/usr.sbin/etcupdate/tests/
HDconflicts_test.sh218 echo 'p' | $COMMAND resolve -d $WORKDIR -D $TEST >/dev/null
226 echo 'mf' | $COMMAND resolve -d $WORKDIR -D $TEST >/dev/null
236 echo 'tf' | $COMMAND resolve -d $WORKDIR -D $TEST >/dev/null
255 echo 'r' | $COMMAND resolve -d $WORKDIR -D $TEST >/dev/null
265 echo 'p' | $COMMAND resolve -d $WORKDIR -D $TEST | grep -q newalias
271 echo 'mf' | $COMMAND resolve -d $WORKDIR -D $TEST | grep -q newalias
280 echo 'tf' | $COMMAND resolve -d $WORKDIR -D $TEST | grep -q newalias
288 echo 'r' | $COMMAND resolve -d $WORKDIR -D $TEST | grep -q newalias
/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDOptionValueFileSpec.cpp25 OptionValueFileSpec::OptionValueFileSpec (bool resolve) : in OptionValueFileSpec() argument
32 m_resolve (resolve) in OptionValueFileSpec()
37 bool resolve) : in OptionValueFileSpec() argument
44 m_resolve (resolve) in OptionValueFileSpec()
50 bool resolve) : in OptionValueFileSpec() argument
57 m_resolve (resolve) in OptionValueFileSpec()
HDProperty.cpp99 const bool resolve = definition.default_uint_value != 0; in Property() local
100 …alue_sp.reset (new OptionValueFileSpec(FileSpec(definition.default_cstr_value, resolve), resolve)); in Property()
/NextBSD/contrib/llvm/lib/IR/
HDDebugInfo.cpp68 return getDICompositeType(D->getBaseType().resolve(EmptyMap)); in getDICompositeType()
131 processType(DIG->getType().resolve(TypeIdentifierMap)); in processModule()
141 auto *Entity = Import->getEntity().resolve(TypeIdentifierMap); in processModule()
166 processScope(DT->getScope().resolve(TypeIdentifierMap)); in processType()
168 processType(DCT->getBaseType().resolve(TypeIdentifierMap)); in processType()
171 processType(Ref.resolve(TypeIdentifierMap)); in processType()
181 processType(DDT->getBaseType().resolve(TypeIdentifierMap)); in processType()
214 processScope(SP->getScope().resolve(TypeIdentifierMap)); in processSubprogram()
218 processType(TType->getType().resolve(TypeIdentifierMap)); in processSubprogram()
220 processType(TVal->getType().resolve(TypeIdentifierMap)); in processSubprogram()
[all …]
/NextBSD/contrib/gdb/gdb/
HDsol-thread.c1665 #define resolve(X) \ in _initialize_sol_thread() macro
1669 resolve (td_log); in _initialize_sol_thread()
1670 resolve (td_ta_new); in _initialize_sol_thread()
1671 resolve (td_ta_delete); in _initialize_sol_thread()
1672 resolve (td_init); in _initialize_sol_thread()
1673 resolve (td_ta_get_ph); in _initialize_sol_thread()
1674 resolve (td_ta_get_nthreads); in _initialize_sol_thread()
1675 resolve (td_ta_tsd_iter); in _initialize_sol_thread()
1676 resolve (td_ta_thr_iter); in _initialize_sol_thread()
1677 resolve (td_thr_validate); in _initialize_sol_thread()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDProcessInfo.cpp114 const bool resolve = false; in SetArguments() local
115 m_executable.SetFile(first_arg, resolve); in SetArguments()
134 const bool resolve = false; in SetArguments() local
135 m_executable.SetFile(first_arg, resolve); in SetArguments()
/NextBSD/contrib/unbound/libunbound/python/doc/examples/
HDexample8-1.py11 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
18 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
25 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_NS, unbound.RR_CLASS_IN)
HDexample1a.rst7 This basic example shows how to create a context and resolve a host address (DNS record of A type).
17 status, result = ctx.resolve("www.google.com")
26 If only domain name is given, the :meth:`unbound.ub_ctx.resolve` looks for A records in IN class.
HDexample6-1.py7 status, result = ctx.resolve("test.record.xxx", RR_TYPE_A, RR_CLASS_IN)
22 status, result = ctx.resolve("test.record.xxx", RR_TYPE_A, RR_CLASS_IN)
HDexample5.rst22 status, result = ctx.resolve("www.google.com", RR_TYPE_A, RR_CLASS_IN)
28 …t be used before the first resolution (i.e. before :meth:`unbound.ub_ctx.resolve` or :meth:`unboun…
/NextBSD/contrib/unbound/libunbound/python/examples/
HDexample8-1.py42 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
49 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
56 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_NS, unbound.RR_CLASS_IN)
HDidn-lookup.py45 status, result = ctx.resolve(u"www.háčkyčárky.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
52 status, result = ctx.resolve(u"háčkyčárky.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
59 status, result = ctx.resolve(unbound.reverse('217.31.204.66')+'.in-addr.arpa', unbound.RR_TYPE_PTR,…
HDmx-lookup.py42 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
49 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
/NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/
HDDwarfUnit.cpp442 TmpTy = resolve(DTy->getBaseType()); in addBlockByrefAddress()
532 return isUnsignedDIType(DD, DD->resolve(Deriv)); in isUnsignedDIType()
565 auto *BaseType = DD->resolve(Ty->getBaseType()); in getBaseTypeSize()
692 auto *Context = resolve(Ty->getScope()); in createTypeDIE()
712 assert(Ty == resolve(Ty->getRef()) && in getOrCreateTypeDIE()
717 return getOrCreateTypeDIE(resolve(cast<DIDerivedType>(Ty)->getBaseType())); in getOrCreateTypeDIE()
721 auto *Context = resolve(Ty->getScope()); in getOrCreateTypeDIE()
789 Context = resolve(Context->getScope()); in getParentContextString()
836 const DIType *FromTy = resolve(DTy->getBaseType()); in constructTypeDIE()
852 *getOrCreateTypeDIE(resolve(cast<DIDerivedType>(DTy)->getClassType()))); in constructTypeDIE()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDOptionValueFileSpec.h25 OptionValueFileSpec (bool resolve = true);
28 bool resolve = true);
32 bool resolve = true);
/NextBSD/contrib/ipfilter/ipsend/
HDipsend.c123 if (resolve(t, (char *)&ic->icmp_gwaddr) == -1)
130 if (resolve(t, (char *)&ic->icmp_ip.ip_dst) == -1)
137 if (resolve(t,
349 if (resolve(src, (char *)&ip->ip_src) == -1)
355 if (resolve(dst, (char *)&ip->ip_dst) == -1)
363 else if (resolve(gateway, (char *)&gwip) == -1)
HDiptest.c155 if (resolve(dst, (char *)&ip->ip_dst) == -1)
161 if (resolve(src, (char *)&ip->ip_src) == -1)
169 else if (resolve(gateway, (char *)&gwip) == -1)
/NextBSD/gnu/usr.bin/gdb/libgdb/
HDfbsd-threads.c1542 #define resolve(X) \ in thread_db_load() macro
1546 resolve(td_init); in thread_db_load()
1547 resolve(td_ta_new); in thread_db_load()
1548 resolve(td_ta_delete); in thread_db_load()
1549 resolve(td_ta_map_id2thr); in thread_db_load()
1550 resolve(td_ta_map_lwp2thr); in thread_db_load()
1551 resolve(td_ta_thr_iter); in thread_db_load()
1552 resolve(td_thr_get_info); in thread_db_load()
1554 resolve(td_thr_getxmmregs); in thread_db_load()
1556 resolve(td_thr_getfpregs); in thread_db_load()
[all …]
/NextBSD/crypto/heimdal/lib/kafs/
HDMakefile.am58 ROKEN_SRCS = resolve.c strtok_r.c strlcpy.c strsep.c
83 resolve.c:
84 $(LN_S) $(srcdir)/../roken/resolve.c .
/NextBSD/crypto/heimdal/lib/roken/
HDMakefile.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 \
HDChangeLog22 * 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 …]
/NextBSD/crypto/heimdal/lib/krb5/
HDtest_plugin.c76 krb5plugin_service_locate_ftable resolve = { variable
100 KRB5_PLUGIN_LOCATE, &resolve); in main()
/NextBSD/contrib/llvm/tools/opt/
HDBreakpointPrinter.cpp40 getContextName(TY->getScope().resolve(TypeIdentifierMap), N); in getContextName()
59 getContextName(SP->getScope().resolve(TypeIdentifierMap), Name); in runOnModule()
/NextBSD/kerberos5/lib/libroken/
HDMakefile14 resolve.h \
58 resolve.c \

123456789