Searched refs:hints (Results 176 - 200 of 231) sorted by relevance

12345678910

/openbsd-current/usr.sbin/unbound/daemon/
H A Ddaemon.c726 if(!(daemon->env->hints = hints_create()) ||
727 !hints_apply_cfg(daemon->env->hints, daemon->cfg))
728 fatal_exit("Could not set root or stub hints");
851 hints_delete(daemon->env->hints);
852 daemon->env->hints = NULL;
H A Dcachedump.c900 stub = hints_lookup_stub(worker->env.hints, nm, qinfo.qclass,
906 lock_rw_unlock(&worker->env.hints->lock);
912 lock_rw_unlock(&worker->env.hints->lock);
918 lock_rw_unlock(&worker->env.hints->lock);
/openbsd-current/sbin/unwind/libunbound/util/
H A Dmodule.h519 * The hints -- these aren't stored in the cache because they don't
520 * expire. The hints are always used to "prime" the cache. Note
521 * that both root hints and stub zone "hints" are stored in this
524 struct iter_hints* hints; member in struct:module_env
624 /** if this is a (stub or root) priming query (with hints) */
/openbsd-current/usr.sbin/inetd/
H A Dinetd.c1226 struct addrinfo hints, *res0, *res; local
1237 memset(&hints, 0, sizeof(hints));
1238 hints.ai_family = sep->se_family;
1239 hints.ai_socktype = sep->se_socktype;
1240 hints.ai_flags = AI_PASSIVE;
1243 port, &hints, &res0);
/openbsd-current/usr.sbin/bgpctl/
H A Dparser.c965 struct addrinfo hints, *r; local
979 memset(&hints, 0, sizeof(hints));
980 hints.ai_family = AF_INET6;
981 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
982 hints.ai_flags = AI_NUMERICHOST;
983 if (getaddrinfo(word, "0", &hints, &r) == 0) {
/openbsd-current/usr.sbin/relayd/
H A Dparse.y3105 struct addrinfo hints, *res;
3108 memset(&hints, 0, sizeof(hints));
3109 hints.ai_family = AF_UNSPEC;
3110 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
3111 hints.ai_flags = AI_NUMERICHOST;
3112 if (getaddrinfo(s, "0", &hints, &res) == 0) {
3129 struct addrinfo hints, *res0, *res;
3136 bzero(&hints, sizeof(hints));
[all...]
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dbump-perl-version189 qr/win32|hints/, # README.win32, win32/*, hints/*
H A Dbisect-runner.pl845 such as F<hints/freebsd.sh>. F<bisect-runner.pl> defaults this to I<blead>,
1721 # to true in hints/linux.sh
1726 # until commit faae14e6e968e1c0 adds it to the hints.
1741 # by current hints/linux.sh
2901 # There are rather too many version-specific FreeBSD hints fixes to
2902 # patch individually. Also, more than once the FreeBSD hints file has
2908 checkout_file('hints/freebsd.sh');
2911 # We can't build on darwin without some of the data in the hints
2913 # hints/darwin.sh and then edit in place just below, than use
2915 # f556e5b971932902 - before it, hints bug
[all...]
/openbsd-current/gnu/usr.bin/perl/regen/
H A Dmg_vtable.pl144 hints => { char => 'H', vtable => 'hints', desc => '%^H hash' },
304 'hints' => {clear => 'clearhints'},
/openbsd-current/games/adventure/
H A Dio.c233 case 11: /* hints */
488 hints[hintnum][i] = rnum();
H A Dmain.c87 int hints[20][5]; /* info on hints */ variable
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/
H A DHistory.pm124 status to provide hints to indexers
/openbsd-current/gnu/llvm/libcxx/benchmarks/
H A Dmap.bench.cpp34 // The positions of the hints to pick:
78 auto& hints = R.Hints.emplace_back(); local
80 hints.push_back(map.insert(std::make_pair(2 * I + 2, 0)).first);
83 std::shuffle(hints.begin(), hints.end(), std::mt19937());
/openbsd-current/usr.sbin/pkg_add/OpenBSD/
H A DUpdate.pm340 for my $h ($set->older, $set->hints) {
H A DFwUpdate.pm338 for my $h ($set->hints) {
/openbsd-current/usr.sbin/adduser/
H A Dadduser.perl50 &hints;
999 # hints
1000 sub hints { subroutine
1036 elsif (/^--?(config_create)$/) { &hints; &create_conf; exit(0); }
/openbsd-current/gnu/usr.bin/perl/lib/B/
H A DDeparse.pm100 # comp/hints 6 - location of BEGIN blocks wrt. block openings
852 $self->{'hints'} = $self->{'ambient_hints'};
1337 local(@$self{qw'curstash warnings hints hinthash'})
1338 = @$self{qw'curstash warnings hints hinthash'};
1424 local(@$self{qw'curstash warnings hints hinthash'})
1425 = @$self{qw'curstash warnings hints hinthash'};
1724 local(@$self{qw'curstash warnings hints hinthash'})
1725 = @$self{qw'curstash warnings hints hinthash'} if $real_block;
1779 local(@$self{qw'curstash warnings hints hinthash'})
1780 = @$self{qw'curstash warnings hints hinthas
[all...]
/openbsd-current/libexec/spamd/
H A Dspamd.c1243 struct addrinfo hints, *res; local
1432 memset(&hints, 0, sizeof(hints));
1433 hints.ai_family = AF_INET;
1437 if ((error = getaddrinfo(addr, portstr, &hints, &res)) != 0) {
/openbsd-current/usr.sbin/smtpd/
H A Dparse.y3430 struct addrinfo hints, *res0, *res;
3436 memset(&hints, 0, sizeof(hints));
3437 hints.ai_family = lo->family;
3438 hints.ai_socktype = SOCK_STREAM;
3439 hints.ai_flags = AI_ADDRCONFIG;
3440 error = getaddrinfo(lo->ifx, NULL, &hints, &res0);
H A Dsmtp_session.c638 struct addrinfo hints; local
657 memset(&hints, 0, sizeof(hints));
658 hints.ai_family = s->ss.ss_family;
659 hints.ai_socktype = SOCK_STREAM;
660 resolver_getaddrinfo(s->rdns, NULL, &hints, smtp_getaddrinfo_cb, s);
/openbsd-current/usr.sbin/syslogd/
H A Dsyslogd.c926 struct addrinfo hints, *res, *res0; local
936 memset(&hints, 0, sizeof(hints));
937 hints.ai_family = Family;
939 hints.ai_socktype = SOCK_DGRAM;
940 hints.ai_protocol = IPPROTO_UDP;
942 hints.ai_socktype = SOCK_STREAM;
943 hints.ai_protocol = IPPROTO_TCP;
945 hints.ai_flags = AI_PASSIVE;
947 if ((error = getaddrinfo(host, port, &hints,
[all...]
/openbsd-current/gnu/usr.bin/perl/
H A Dpeep.c1893 * 'hints' contains any hints flags that need adding (currently just
1898 S_maybe_multideref(pTHX_ OP *start, OP *orig_o, UV orig_action, U8 hints) argument
2016 hints = (o->op_private & OPpHINT_STRICT_REFS);
2363 mderef->op_private |= hints;
2747 U8 hints = 0; local
2896 hints |= (o2->op_private & OPpHINT_STRICT_REFS);
2900 S_maybe_multideref(aTHX_ o, o2, action, hints);
3036 Yves asked what about if they have different hints or features?
/openbsd-current/usr.bin/dig/
H A Ddighost.c499 struct addrinfo *ai = NULL, *tmpai, hints; local
508 memset(&hints, 0, sizeof(hints));
510 hints.ai_family = PF_INET;
512 hints.ai_family = PF_INET6;
514 hints.ai_family = PF_UNSPEC;
515 hints.ai_flags = AI_ADDRCONFIG;
517 hints.ai_socktype = SOCK_DGRAM;
520 result = getaddrinfo(hostname, dport, &hints, &ai);
/openbsd-current/gnu/usr.bin/perl/hints/
H A Dhpux.sh533 # execute the following call-back script. See hints/README.hints
550 if $cc -o t001 -O $ccflags $ldflags -lm ../hints/t001.c; then
/openbsd-current/usr.bin/ssh/
H A Dservconf.c775 struct addrinfo hints, *ai, *aitop; local
802 memset(&hints, 0, sizeof(hints));
803 hints.ai_family = options->address_family;
804 hints.ai_socktype = SOCK_STREAM;
805 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
807 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)

Completed in 240 milliseconds

12345678910