Home
last modified time | relevance | path

Searched refs:infos (Results 1 – 23 of 23) sorted by relevance

/freebsd/crypto/openssl/crypto/store/
H A Dstore_result.c593 STACK_OF(OSSL_STORE_INFO) *infos = NULL; in try_pkcs12()
600 if ((infos = sk_OSSL_STORE_INFO_new_null()) != NULL) { in try_pkcs12()
605 && sk_OSSL_STORE_INFO_push(infos, osi_pkey) != 0) in try_pkcs12()
614 && sk_OSSL_STORE_INFO_push(infos, osi_cert) != 0) in try_pkcs12()
624 && sk_OSSL_STORE_INFO_push(infos, osi_ca) != 0) in try_pkcs12()
637 sk_OSSL_STORE_INFO_pop_free(infos, OSSL_STORE_INFO_free); in try_pkcs12()
638 infos = NULL; in try_pkcs12()
640 ctx->cached_info = infos; in try_pkcs12()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.cpp195 std::vector<struct kinfo_lwp> infos; in GetName() local
207 infos.resize(size / sizeof(struct kinfo_lwp)); in GetName()
209 if (sysctl(mib, 5, infos.data(), &size, NULL, 0) == -1 || size == 0) { in GetName()
216 if (static_cast<lldb::tid_t>(infos[i].l_lid) == m_tid) { in GetName()
217 return infos[i].l_name; in GetName()
/freebsd/crypto/heimdal/lib/hx509/
H A Dks_p11.c59 CK_MECHANISM_INFO_PTR *infos; member
299 slot->mechs.infos = calloc(i, sizeof(*slot->mechs.infos)); in p11_mech_info()
307 slot->mechs.infos[i] = calloc(1, sizeof(*(slot->mechs.infos[0]))); in p11_mech_info()
308 if (slot->mechs.infos[i] == NULL) { in p11_mech_info()
314 slot->mechs.infos[i])); in p11_mech_info()
998 if (p->slot[i].mechs.infos) { in p11_release_module()
1002 free(p->slot[i].mechs.infos[j]); in p11_release_module()
1003 free(p->slot[i].mechs.infos); in p11_release_module()
1196 unparse_flags(s->mechs.infos[j]->flags, mechflags, in p11_printinfo()
/freebsd/contrib/llvm-project/compiler-rt/lib/stats/
H A Dstats.h33 StatInfo infos[1]; member
H A Dstats.cpp71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/freebsd/contrib/bmake/unit-tests/
H A Ddirective-misspellings.mk74 .infos msg # Accepted before 2020-12-13 01:07:54.
H A Ddirective-misspellings.exp24 make: "directive-misspellings.mk" line 74: Unknown directive "infos"
/freebsd/contrib/bsnmp/snmp_mibII/
H A DmibII.c1311 static const int infos[][3] = { in update_ifa_info() local
1324 for (i = 0; i < sizeof(infos) / sizeof(infos[0]); i++) { in update_ifa_info()
1325 if ((buf = mib_fetch_rtab(infos[i][0], infos[i][1], infos[i][2], in update_ifa_info()
/freebsd/contrib/file/magic/Magdir/
H A Dos40010 # header in the first descriptor where there are some useful infos,
H A Daudio629 # some infos on the header file available at :
/freebsd/contrib/tcsh/nls/french/
H A Dset245 43 Erreur de thread - (utilisez cord -T pour plus d'infos)
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h417 clang::FunctionDecl *func_decl, const TemplateParameterInfos &infos);
421 const TemplateParameterInfos &infos);
426 const TemplateParameterInfos &infos);
434 const TemplateParameterInfos &infos);
H A DTypeSystemClang.cpp1492 const TemplateParameterInfos &infos) { in CreateFunctionTemplateSpecializationInfo() argument
1494 func_decl->getASTContext(), infos.GetArgs()); in CreateFunctionTemplateSpecializationInfo()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dtypeinfo102 // When evaluated in a constant expression, both type infos simply can't come
303 // When evaluated in a constant expression, both type infos simply can't come
/freebsd/sys/contrib/device-tree/src/arm/allwinner/
H A Dsun5i-r8-chip.dts204 * since there's no way currently to pass DT infos to an SDIO device,
/freebsd/crypto/openssl/
H A DConfigure2237 my %infos = ( programs => [ @programs ],
2241 foreach my $k (keys %infos) {
2242 foreach (@{$infos{$k}}) {
/freebsd/contrib/llvm-project/lld/ELF/
H A DOptions.td611 …"When --lto-validate-all-vtables-have-type-infos is enabled, skip validation on these vtables (_ZT…
615 defm lto_validate_all_vtables_have_type_infos: BB<"lto-validate-all-vtables-have-type-infos",
616 "Validate that all vtables have type infos for LTO link",
617 "Do not validate that all vtables have type infos for LTO link">;
/freebsd/contrib/llvm-project/lld/docs/
H A DReleaseNotes.rst34 * ``--lto-validate-all-vtables-have-type-infos``, which complements
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.cpp1800 struct hwloc_info_s *infos; in __kmp_affinity_create_hwloc_map() local
1808 &cpukinds[idx].efficiency, &nr_infos, &infos, in __kmp_affinity_create_hwloc_map()
1811 if (__kmp_str_match("CoreType", 8, infos[i].name)) { in __kmp_affinity_create_hwloc_map()
1813 if (__kmp_str_match("IntelAtom", 9, infos[i].value)) { in __kmp_affinity_create_hwloc_map()
1816 } else if (__kmp_str_match("IntelCore", 9, infos[i].value)) { in __kmp_affinity_create_hwloc_map()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp428 …DEBUG_PRINTF ("class_infos_byte_size = %u (%llu class infos)\n", class_infos_byte_size, (uint64_t)…
/freebsd/sys/netpfil/ipfw/
H A Ddummynet.txt741 gen fields must be filled with corrected infos. The
/freebsd/crypto/heimdal/
H A DChangeLog.2003308 between ENC_TS and SAM2, free the etype{,2}-infos on failure, move
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td5266 HelpText<"Set the output <file> for debug infos">, MetaVarName<"<file>">,