Searched refs:type_str (Results 1 - 25 of 27) sorted by relevance

12

/netbsd-current/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dkrbhst-test.c68 const char *type_str[] = {"kdc", "admin", "changepw", "krb524"}; local
93 printf ("%s for %s:\n", type_str[j], argv[i]);
/netbsd-current/external/apache2/argon2/dist/phc-winner-argon2/src/
H A Dgenkat.c184 const char *type_str = (argc > 1) ? argv[1] : "i"; local
187 if (!strcmp(type_str, "d")) {
189 } else if (!strcmp(type_str, "i")) {
191 } else if (!strcmp(type_str, "id")) {
/netbsd-current/external/bsd/unbound/dist/pythonmod/examples/
H A Davahi-resolver.py434 type_str = dns.rdatatype.to_text(type_)
457 dbg("Got request for '%s %s %s'" % (name, class_str, type_str))
466 dbg('Rejected, Avahi does not support the type %s' % type_str)
472 dbg('Rejected, type %s is on the blacklist' % type_str)
478 dbg('Rejected, type %s is not on the whitelist' % type_str)
495 dbg("Resolving '%s %s %s' via Avahi" % (name, class_str, type_str))
547 type_str = sys.argv[2] variable
550 type_ = dns.rdatatype.from_text(type_str)
552 log_err('Unsupported DNS record type "%s"' % type_str)
556 log_err('Meta record type "%s" cannot be resolved via Avahi' % type_str)
[all...]
H A Dlog.py78 print "type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class)
/netbsd-current/external/mit/isl/dist/interface/
H A Dcpp.cc687 std::string type_str; local
700 type_str += param(arg + 1 + i, type);
702 type_str += type.getAsString();
705 type_str += "arg_" + ::to_string(i);
708 type_str += ", ";
711 return type_str;
728 std::string type_str; local
733 type_str = "std::function<";
734 type_str += rettype_str;
735 type_str
773 type2cpp(string type_str) argument
882 std::string type_str = subclass_type->getPointeeType().getAsString(); local
[all...]
H A Dpython.cc563 string type_str; local
564 type_str = generator::extract_type(type);
565 type_str = type2python(type_str);
566 printf("args[%d].__class__ is %s", i, type_str.c_str());
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/asn1/
H A Da_mbstr.c20 static int type_str(unsigned long value, void *arg);
114 if (traverse_string(in, len, inform, type_str, &mask) < 0) {
270 static int type_str(unsigned long value, void *arg) function
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Da_mbstr.c21 static int type_str(unsigned long value, void *arg);
112 if (traverse_string(in, len, inform, type_str, &mask) < 0) {
275 static int type_str(unsigned long value, void *arg) function
/netbsd-current/external/bsd/libc++/dist/libcxxrt/src/
H A Dlibelftc_dem_gnu3.c821 struct vector_type_qualifier *v, const char *type_str)
837 if (type_str != NULL) {
840 if (!VEC_PUSH_STR(&subst_v, type_str))
854 if (type_str != NULL) {
869 if (type_str != NULL) {
884 if (type_str != NULL) {
899 if (type_str != NULL) {
914 if (type_str != NULL) {
943 if (type_str != NULL) {
966 if (type_str !
820 cpp_demangle_push_type_qualifier(struct cpp_demangle_data *ddata, struct vector_type_qualifier *v, const char *type_str) argument
2848 char *type_str, *exp_str, *num_str, *subst_str; local
[all...]
/netbsd-current/external/bsd/libfido2/dist/tools/
H A Dbio.c247 type_str(uint8_t t) function
274 type_str(fido_bio_info_type(i)));
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Ddtrace-probe.c50 : type (type_), type_str (std::move (type_str_)),
58 std::string type_str; member in struct:dtrace_probe_arg
475 std::string type_str (p);
488 expr = parse_expression_with_language (type_str.c_str (),
498 args.emplace_back (type, std::move (type_str), std::move (expr));
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Ddtrace-probe.c51 : type (type_), type_str (std::move (type_str_)),
59 std::string type_str; member in struct:dtrace_probe_arg
476 std::string type_str (p);
489 expr = parse_expression_with_language (type_str.c_str (),
499 args.emplace_back (type, std::move (type_str), std::move (expr));
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/
H A Dexplore.py609 def get_type_from_str(type_str):
614 type_str: The type string from which the gdb.Type value should be
622 return gdb.parse_and_eval("(%s *)0" % type_str).type.target()
627 return gdb.lookup_type(type_str)
/netbsd-current/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/
H A Dexplore.py637 def get_type_from_str(type_str):
642 type_str: The type string from which the gdb.Type value should be
650 return gdb.parse_and_eval("(%s *)0" % type_str).type.target()
655 return gdb.lookup_type(type_str)
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/python/libstdcxx/v6/
H A Dprinters.py183 def strip_inline_namespaces(type_str):
185 type_str = strip_versioned_namespace(type_str)
186 type_str = type_str.replace('std::__cxx11::', 'std::')
189 type_str = type_str.replace(expt_ns+lfts_ns+'::', expt_ns)
191 type_str = type_str.replace(fs_ns+'v1::', fs_ns)
192 return type_str
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/
H A Dprinters.py183 def strip_inline_namespaces(type_str):
185 type_str = strip_versioned_namespace(type_str)
186 type_str = type_str.replace('std::__cxx11::', 'std::')
189 type_str = type_str.replace(expt_ns+lfts_ns+'::', expt_ns)
191 type_str = type_str.replace(fs_ns+'v1::', fs_ns)
192 return type_str
[all...]
/netbsd-current/external/bsd/unbound/dist/pythonmod/
H A Dubmodule-tst.py87 print("type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class))
H A Dubmodule-msg.py86 print "type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class)
H A Dinterface.i267 type_str = property(_get_type_str)
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/nds32/
H A Dnds32-isr.c309 const char *type_str; local
312 type_str = (object_p) ? "@object" : "@function";
317 fprintf (asm_out_file, "\t.type\t%s, %s\n", symbol_name, type_str);
/netbsd-current/external/gpl3/gcc/dist/gcc/config/nds32/
H A Dnds32-isr.cc309 const char *type_str; local
312 type_str = (object_p) ? "@object" : "@function";
317 fprintf (asm_out_file, "\t.type\t%s, %s\n", symbol_name, type_str);
/netbsd-current/external/bsd/unbound/dist/testdata/pymod_thread.tdir/
H A Dpymod_thread.py91 print ("type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class))
/netbsd-current/external/bsd/unbound/dist/testdata/pymod.tdir/
H A Dpymod.py91 print ("type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class))
/netbsd-current/external/mpl/dhcp/dist/server/
H A Dldap.c2602 char buf[128], *type_str; local
2626 type_str = "ethernet";
2629 type_str = "token-ring";
2632 type_str = "fddi";
2661 type_str, bv_o[0].bv_val, type_str, bv_o[1].bv_val);
/netbsd-current/external/bsd/wpa/dist/wpa_supplicant/dbus/
H A Ddbus_new_handlers.c392 char type_str[] = "a?"; /* ? will be replaced with subtype letter; */ local
403 type_str[1] = sub_type_str[0];
406 type_str, &variant_iter) ||
485 char type_str[] = "aa?"; local
497 type_str[2] = sub_type_str[0];
501 type_str, &variant_iter) ||

Completed in 429 milliseconds

12