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

12

/osnet-11/usr/src/grub/grub2/include/grub/
H A Dsearch.h23 char **hints, unsigned nhints);
25 char **hints, unsigned nhints);
27 char **hints, unsigned nhints);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dhostaddr.c41 struct addrinfo hints, *ai, *aip; local
46 memset (&hints, 0, sizeof (hints));
47 hints.ai_flags = AI_NUMERICHOST;
52 hints.ai_socktype = SOCK_DGRAM;
54 r = getaddrinfo (name, 0, &hints, &ai);
56 hints.ai_flags &= ~AI_NUMERICHOST;
57 r = getaddrinfo (name, 0, &hints, &ai);
H A Dhst_realm.c105 struct addrinfo *ai, hints; local
108 memset (&hints, 0, sizeof (hints));
109 hints.ai_flags = AI_CANONNAME;
110 err = getaddrinfo (name, 0, &hints, &ai);
/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dsearch_wrap.c84 char **hints = NULL; local
118 hints = grub_malloc (sizeof (hints[0]) * nhints);
119 if (!hints)
125 hints[j++] = state[SEARCH_HINT].args[i];
130 hints[j++] = state[SEARCH_HINT_IEEE1275].args[i];
136 hints[j++] = state[SEARCH_HINT_EFI].args[i];
142 hints[j++] = state[SEARCH_HINT_ARC].args[i];
148 hints[j++] = state[SEARCH_HINT_BIOS].args[i];
153 hints[
[all...]
H A Dsearch.c48 char **hints, unsigned nhints)
223 if (!hints[i][0])
225 end = hints[i] + grub_strlen (hints[i]) - 1;
228 if (iterate_device (hints[i]))
238 dev = grub_device_open (hints[i]);
47 FUNC_NAME(const char *key, const char *var, int no_floppy, char **hints, unsigned nhints) argument
/osnet-11/usr/src/lib/libsocket/inet/
H A Drexec.c70 struct addrinfo hints; local
80 (void) memset(&hints, 0, sizeof (hints));
82 hints.ai_flags = AI_CANONNAME|AI_ADDRCONFIG|AI_V4MAPPED;
83 hints.ai_socktype = SOCK_STREAM;
84 hints.ai_family = af;
85 rc = getaddrinfo(*ahost, aport, &hints, &res);
H A Dgetaddrinfo.c106 * hints - optional argument that points to an addrinfo structure
107 * to provide hints on the type of socket that the caller
109 * Possible setting of the ai_flags member of the hints structure:
180 const struct addrinfo *hints, struct addrinfo **res, int version)
215 if (hints != NULL) {
216 /* check for bad flags in hints */
217 if ((hints->ai_flags != 0) && (hints->ai_flags & ~AI_MASK)) {
222 (hints->ai_flags & AI_CANONNAME)) {
226 if (hints
179 _getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res, int version) argument
541 getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
548 __xnet_getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
[all...]
H A Drcmd.c105 struct addrinfo hints; local
134 (void) memset(&hints, 0, sizeof (hints));
135 hints.ai_socktype = SOCK_STREAM;
136 hints.ai_flags = AI_CANONNAME;
138 hints.ai_flags |= AI_V4MAPPED;
139 hints.ai_family = AF_UNSPEC;
141 hints.ai_family = af;
144 rc = getaddrinfo(*ahost, aport, &hints, &res);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dsort.pm5 # Currently the hints for pp_sort are stored in the global variable
6 # $sort::hints. An improvement would be to store them in $^H{SORT} and have
10 our $hints = 0;
29 $hints &= ~$sort::sort_bits;
30 $hints |= $sort::quicksort_bit;
32 $hints &= ~$sort::sort_bits;
33 $hints |= $sort::mergesort_bit;
35 $hints |= $sort::stable_bit;
37 $hints = 0;
55 $hints
[all...]
H A Dsubs.pm20 Unlike pragmas that affect the C<$^H> hints variable, the C<use vars> and
H A Dvars.pm67 Unlike pragmas that affect the C<$^H> hints variable, the C<use vars> and
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/
H A Dhints.t22 mkdir('hints', 0777);
23 my $hint_file = File::Spec->catfile('hints', "$^O.pl");
24 open(HINT, ">$hint_file") || die "Can't write dummy hints file $hint_file: $!";
37 is( $out->read, "Processing hints file $hint_file\n" );
39 open(HINT, ">$hint_file") || die "Can't write dummy hints file $hint_file: $!";
47 Processing hints file $hint_file
53 rmtree ['hints'];
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Time/HiRes/
H A DMakefile.PL38 use vars qw($self); # Used in 'sourcing' the hints.
231 my $hints = File::Spec->catfile("hints", "$^O.pl");
232 if (-f $hints) {
233 print "Using hints $hints...\n";
235 do $hints;
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/include/
H A Dfake-addrinfo.h214 const struct addrinfo *hints,
/osnet-11/usr/src/grub/grub2/util/grub.d/
H A D10_kfreebsd.in145 if [ -f /boot/device.hints ] ; then
146 devices=/boot/device.hints
/osnet-11/usr/src/lib/libsmbfs/common/
H A Dsmbfs_ctx.c697 struct addrinfo hints, *res; local
731 (void) memset(&hints, 0, sizeof (hints));
732 hints.ai_flags = AI_CANONNAME;
733 hints.ai_family = PF_UNSPEC;
734 hints.ai_socktype = SOCK_STREAM;
735 gaierr = getaddrinfo(srvaddr_str, NULL, &hints, &res);
/osnet-11/usr/src/lib/libdladm/common/
H A Dlibdliptun.c89 struct addrinfo *ai, hints; local
116 (void) memset(&hints, 0, sizeof (hints));
120 hints.ai_family = AF_INET;
123 hints.ai_family = AF_INET6;
129 if (getaddrinfo(params->iptun_param_laddr, NULL, &hints, &ai) !=
143 if (getaddrinfo(params->iptun_param_raddr, NULL, &hints, &ai) !=
/osnet-11/usr/src/lib/libresolv2/common/irs/
H A Dgetaddrinfo.c217 "Invalid value for hints", /*%< EAI_BADHINTS */
320 getaddrinfo(hostname, servname, hints, res)
322 const struct addrinfo *hints;
355 if (hints) {
356 /* error check for hints */
357 if (hints->ai_addrlen || hints->ai_canonname ||
358 hints->ai_addr || hints->ai_next)
360 if (hints
[all...]
/osnet-11/usr/src/lib/libsuri/common/
H A Dsuri_aux.c158 * description string. This way the caller hints at that the dev path is going
723 struct addrinfo hints; local
742 (void) memset(&hints, 0, sizeof (hints));
743 hints.ai_family = AF_UNSPEC;
744 hints.ai_socktype = SOCK_STREAM;
746 if ((err = getaddrinfo(s, NULL, &hints, res)) != 0) {
H A Dsuri_iscsi.c561 struct addrinfo *resolved, hints = {NULL}; local
614 hints.ai_family = AF_UNSPEC;
615 hints.ai_socktype = SOCK_STREAM;
616 if ((err = getaddrinfo(saddr, NULL, &hints, &resolved)) != 0) {
/osnet-11/usr/src/lib/libsasl/plugin/
H A Dplugin_common.c132 struct addrinfo hints, *ai = NULL; local
204 memset(&hints, 0, sizeof(hints));
205 hints.ai_family = PF_UNSPEC;
206 hints.ai_socktype = SOCK_STREAM;
207 hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
210 if (getaddrinfo(hbuf, p, &hints, &ai) != 0) {
212 if (getaddrinfo(hbuf, &addr[i], &hints, &ai) != 0) {
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-install.in690 hints="`"$grub_probe" --device-map="${device_map}" --target=baremetal_hints --device "${grub_device}"`"
692 hints="`"$grub_probe" --device-map="${device_map}" --target=bios_hints --device "${grub_device}"`"
694 hints="`"$grub_probe" --device-map="${device_map}" --target=efi_hints --device "${grub_device}"`"
696 hints="`"$grub_probe" --device-map="${device_map}" --target=ieee1275_hints --device "${grub_device}"`"
698 hints="`"$grub_probe" --device-map="${device_map}" --target=baremetal_hints --device "${grub_device}"`"
700 echo "No hints available for your platform. Expect reduced performance"
701 hints=
703 echo "search.fs_uuid ${uuid} root $hints " >> "${grubdir}/load.cfg"
/osnet-11/usr/src/lib/libresolv2/common/resolv/
H A Dres_init.c490 struct addrinfo hints, *ai; local
500 memset(&hints, 0, sizeof(hints));
501 hints.ai_family = PF_UNSPEC;
502 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
503 hints.ai_flags = AI_NUMERICHOST;
505 if (getaddrinfo(cp, sbuf, &hints, &ai) == 0 &&
/osnet-11/usr/src/lib/libinetsvc/common/
H A Dinetsvc.c532 struct addrinfo hints, *res; local
537 (void) memset(&hints, 0, sizeof (hints));
538 hints.ai_flags = AI_DEFAULT;
539 hints.ai_socktype = SOCK_STREAM;
540 hints.ai_family = ss->ss_family;
541 if (getaddrinfo(bind_addr, "", &hints, &res) != 0) {
/osnet-11/usr/src/lib/libsmbns/common/
H A Dsmbns_dyndns.c1145 struct addrinfo hints, *res = NULL; local
1162 bzero((char *)&hints, sizeof (hints));
1163 hints.ai_family = family;
1164 hints.ai_flags = AI_NUMERICHOST;
1165 if (getaddrinfo(hostname, NULL, &hints, &res)) {

Completed in 80 milliseconds

12