Searched refs:hints (Results 1 - 25 of 228) sorted by relevance

12345678910

/openbsd-current/gnu/usr.bin/perl/hints/
H A Dgnukfreebsd.sh6 . ./hints/linux.sh
H A Dgnuknetbsd.sh6 . ./hints/linux.sh
H A Dnonstopux.sh4 . $src/hints/svr4.sh
H A Dos400.sh2 # We will just reuse the AIX hints since we support only building
3 # for the PASE and the PASE hints are merged with the AIX hints.
18 *** Using the AIX hints file, $src/hints/aix.sh.
22 . $src/hints/aix.sh
/openbsd-current/gnu/usr.bin/perl/cpan/autodie/t/lib/
H A DHints_test.pm11 use autodie::hints;
21 autodie::hints->set_hints_for(
23 list => autodie::hints::EMPTY_ONLY ,
24 scalar => autodie::hints::EMPTY_ONLY
28 autodie::hints->set_hints_for(
30 list => autodie::hints::EMPTY_OR_FALSE ,
31 scalar => autodie::hints::EMPTY_OR_FALSE
35 autodie::hints->set_hints_for(
37 list => autodie::hints::EMPTY_OR_UNDEF ,
38 scalar => autodie::hints
[all...]
H A DHints_provider_isa.pm8 { package autodie::hints::provider; }
10 push(our @ISA, 'autodie::hints::provider');
H A DHints_pod_examples.pm7 our %DOES = ( 'autodie::hints::provider' => 1 );
15 use autodie::hints;
54 autodie::hints->set_hints_for(
66 autodie::hints->set_hints_for(
77 autodie::hints->set_hints_for(
88 autodie::hints->set_hints_for(
99 autodie::hints->set_hints_for(
/openbsd-current/regress/lib/libc/asr/bin/
H A Dgetaddrinfo.c45 struct addrinfo *ai, *res, hints; local
49 memset(&hints, 0, sizeof hints);
54 hints.ai_flags |= AI_CANONNAME;
57 hints.ai_flags |= AI_FQDN;
60 hints.ai_flags |= AI_NUMERICHOST;
63 hints.ai_flags |= AI_PASSIVE;
69 hints.ai_flags |= AI_NUMERICSERV;
76 hints.ai_family = AF_INET;
78 hints
[all...]
/openbsd-current/usr.sbin/unbound/iterator/
H A Diter_hints.h2 * iterator/iter_hints.h - iterative resolver module stub and root hints.
40 * Keep track of stub and root hints, and read those from config.
51 * Iterator hints structure
66 * Iterator hints for a particular stub.
78 * Create hints
79 * @return new hints or NULL on error.
84 * Delete hints.
85 * @param hints: to delete.
87 void hints_delete(struct iter_hints* hints);
90 * Process hints confi
[all...]
H A Diter_hints.c2 * iterator/iter_hints.c - iterative resolver module stub and root hints.
40 * Keep track of stub and root hints, and read those from config.
56 struct iter_hints* hints = (struct iter_hints*)calloc(1, local
58 if(!hints)
60 return hints;
76 static void hints_del_tree(struct iter_hints* hints) argument
78 traverse_postorder(&hints->tree, &delhintnode, NULL);
82 hints_delete(struct iter_hints* hints) argument
84 if(!hints)
86 hints_del_tree(hints);
168 hints_insert(struct iter_hints* hints, uint16_t c, struct delegpt* dp, int noprime) argument
277 read_stubs(struct iter_hints* hints, struct config_file* cfg) argument
307 read_root_hints(struct iter_hints* hints, char* fname) argument
420 read_root_hints_list(struct iter_hints* hints, struct config_file* cfg) argument
439 hints_apply_cfg(struct iter_hints* hints, struct config_file* cfg) argument
468 hints_lookup_root(struct iter_hints* hints, uint16_t qclass) argument
480 hints_lookup_stub(struct iter_hints* hints, uint8_t* qname, uint16_t qclass, struct delegpt* cache_dp) argument
516 hints_next_root(struct iter_hints* hints, uint16_t* qclass) argument
522 hints_get_mem(struct iter_hints* hints) argument
535 hints_add_stub(struct iter_hints* hints, uint16_t c, struct delegpt* dp, int noprime) argument
551 hints_delete_stub(struct iter_hints* hints, uint16_t c, uint8_t* nm) argument
[all...]
/openbsd-current/sbin/unwind/libunbound/iterator/
H A Diter_hints.h2 * iterator/iter_hints.h - iterative resolver module stub and root hints.
40 * Keep track of stub and root hints, and read those from config.
51 * Iterator hints structure
66 * Iterator hints for a particular stub.
78 * Create hints
79 * @return new hints or NULL on error.
84 * Delete hints.
85 * @param hints: to delete.
87 void hints_delete(struct iter_hints* hints);
90 * Process hints confi
[all...]
H A Diter_hints.c2 * iterator/iter_hints.c - iterative resolver module stub and root hints.
40 * Keep track of stub and root hints, and read those from config.
56 struct iter_hints* hints = (struct iter_hints*)calloc(1, local
58 if(!hints)
60 return hints;
76 static void hints_del_tree(struct iter_hints* hints) argument
78 traverse_postorder(&hints->tree, &delhintnode, NULL);
82 hints_delete(struct iter_hints* hints) argument
84 if(!hints)
86 hints_del_tree(hints);
168 hints_insert(struct iter_hints* hints, uint16_t c, struct delegpt* dp, int noprime) argument
277 read_stubs(struct iter_hints* hints, struct config_file* cfg) argument
307 read_root_hints(struct iter_hints* hints, char* fname) argument
420 read_root_hints_list(struct iter_hints* hints, struct config_file* cfg) argument
439 hints_apply_cfg(struct iter_hints* hints, struct config_file* cfg) argument
468 hints_lookup_root(struct iter_hints* hints, uint16_t qclass) argument
480 hints_lookup_stub(struct iter_hints* hints, uint8_t* qname, uint16_t qclass, struct delegpt* cache_dp) argument
516 hints_next_root(struct iter_hints* hints, uint16_t* qclass) argument
522 hints_get_mem(struct iter_hints* hints) argument
535 hints_add_stub(struct iter_hints* hints, uint16_t c, struct delegpt* dp, int noprime) argument
551 hints_delete_stub(struct iter_hints* hints, uint16_t c, uint8_t* nm) argument
[all...]
/openbsd-current/usr.sbin/radiusd/
H A Dutil.c36 struct addrinfo hints; local
61 memset(&hints, 0, sizeof(hints));
62 hints.ai_flags = AI_NUMERICHOST;
63 hints.ai_family = AF_UNSPEC;
66 hints.ai_socktype = SOCK_STREAM;
69 hints.ai_socktype = SOCK_DGRAM;
72 hints.ai_protocol = proto;
74 return (getaddrinfo(nodep, servp, &hints, p_ai));
/openbsd-current/gnu/usr.bin/perl/cpan/autodie/t/
H A Dhints.t4 use autodie::hints;
38 my $hints = "autodie::hints";
42 is( $hints->sub_fullname(\&copy), 'File::Copy::copy' , "Id: copy" );
44 $hints->sub_fullname(\&cp),
48 is( $hints->sub_fullname(\&move), 'File::Copy::move' , "Id: move" );
49 is( $hints->sub_fullname(\&mv),
54 ok( $hints->get_hints_for(\&copy)->{scalar}->(0) ,
55 "copy() hints should fail on 0 for scalars."
57 ok( $hints
[all...]
H A Dversion.t22 require autodie::hints;
30 ok(defined($autodie::hints::VERSION), 'autodie::hints has a version');
35 is($Fatal::VERSION, $autodie::hints::VERSION);
/openbsd-current/gnu/usr.bin/perl/cpan/autodie/t/lib/my/
H A Dautodie.pm7 use autodie::hints;
9 autodie::hints->set_hints_for(
/openbsd-current/regress/sys/netinet/ipsec/
H A Dnonxt-sendrecv.c43 struct addrinfo hints, *res, *res0; local
68 memset(&hints, 0, sizeof(hints));
69 hints.ai_family = AF_UNSPEC;
70 hints.ai_socktype = SOCK_RAW;
71 hints.ai_protocol = IPPROTO_NONE;
72 error = getaddrinfo(remote, NULL, &hints, &res0);
95 memset(&hints, 0, sizeof(hints));
96 hints
[all...]
H A Dnonxt-reflect.c43 struct addrinfo hints, *res, *res0; local
62 memset(&hints, 0, sizeof(hints));
63 hints.ai_family = AF_UNSPEC;
64 hints.ai_socktype = SOCK_RAW;
65 hints.ai_protocol = IPPROTO_NONE;
66 hints.ai_flags = AI_PASSIVE;
67 error = getaddrinfo(local, NULL, &hints, &res0);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20020615-1.c23 int hints; local
37 hints = dy > 0 ? 2 : 1;
39 hints ^= 3;
41 hints = dx < 0 ? 8 : 4;
43 hints ^= 12;
45 hints = 0;
46 return hints;
/openbsd-current/regress/lib/libpthread/getaddrinfo/
H A Dgetaddrinfo.c67 struct addrinfo hints, *res; local
71 memset(&hints, 0, sizeof(hints));
72 hints.ai_family = PF_UNSPEC;
73 hints.ai_socktype = SOCK_DGRAM;
74 hints.ai_flags = AI_CANONNAME;
79 if (getaddrinfo("www.openbsd.org", "0", &hints, &res))
/openbsd-current/regress/sys/netinet6/srcaddr/
H A Dsrcaddr.c36 struct addrinfo hints, *res; local
56 memset(&hints, 0, sizeof(hints));
57 hints.ai_flags = AI_NUMERICHOST | AI_NUMERICSERV;
58 hints.ai_family = AF_INET6;
59 hints.ai_socktype = SOCK_DGRAM;
61 if ((error = getaddrinfo(target, "8888", &hints, &res)))
/openbsd-current/lib/libc/asr/
H A Dgetaddrinfo.c29 const struct addrinfo *hints, struct addrinfo **res)
35 if (hints == NULL || (hints->ai_flags & AI_NUMERICHOST) == 0)
38 as = getaddrinfo_async(hostname, servname, hints, NULL);
28 getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
/openbsd-current/usr.sbin/ntpd/
H A Dconfig.c61 struct addrinfo hints, *res; local
64 memset(&hints, 0, sizeof(hints));
65 hints.ai_family = AF_UNSPEC;
66 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
67 hints.ai_flags = AI_NUMERICHOST;
68 if (getaddrinfo(s, "0", &hints, &res) == 0) {
95 struct addrinfo hints, *res0, *res; local
99 memset(&hints, 0, sizeof(hints));
[all...]
/openbsd-current/usr.sbin/lpr/lpd/
H A Dallowedhost.c135 struct addrinfo hints, *res, *r; local
145 memset(&hints, 0, sizeof(hints));
146 hints.ai_family = raddr->sa_family;
147 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
149 error = getaddrinfo(lhost, "0", &hints, &res);
182 struct addrinfo hints, *res, *r; local
197 memset(&hints, 0, sizeof(hints));
198 hints
231 struct addrinfo hints; local
[all...]
/openbsd-current/regress/usr.bin/nc/
H A Dclient-tcp.c93 struct addrinfo hints, *res, *res0; local
99 memset(&hints, 0, sizeof(hints));
100 hints.ai_family = AF_UNSPEC;
101 hints.ai_socktype = SOCK_STREAM;
102 error = getaddrinfo(host, port, &hints, &res0);

Completed in 177 milliseconds

12345678910