Searched refs:s_aliases (Results 1 - 11 of 11) sorted by relevance

/macosx-10.9.5/CPANInternal-140/Exporter-Easy/
H A Dbench35 @EXPORT_OK = qw( $s_name @s_aliases $s_port $s_proto );
37 our ($s_name, @s_aliases, $s_port, $sx_proto);
43 @EXPORT_OK = qw( $s_name @s_aliases $s_port $s_proto );
52 @EXPORT_OK = qw( $s_name @s_aliases $s_port $s_proto );
59 OK => [qw( $s_name @s_aliases $s_port $s_proto )],
70 @EXPORT_OK = qw( $s_name @s_aliases $s_port $s_proto );
77 OK => [qw( $s_name @s_aliases $s_port $s_proto )],
/macosx-10.9.5/CPANInternal-140/Exporter-Easy-0.16/
H A Dbench35 @EXPORT_OK = qw( $s_name @s_aliases $s_port $s_proto );
37 our ($s_name, @s_aliases, $s_port, $sx_proto);
43 @EXPORT_OK = qw( $s_name @s_aliases $s_port $s_proto );
52 @EXPORT_OK = qw( $s_name @s_aliases $s_port $s_proto );
59 OK => [qw( $s_name @s_aliases $s_port $s_proto )],
70 @EXPORT_OK = qw( $s_name @s_aliases $s_port $s_proto );
77 OK => [qw( $s_name @s_aliases $s_port $s_proto )],
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosSupport/
H A Dnetdb.h69 /* $Copyright: * * Copyright 1998-2000 by the Massachusetts Institute of Technology. * * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, * provided that the above copyright notice appear in all copies and that * both that copyright notice and this permission notice appear in * supporting documentation, and that the name of M.I.T. not be used in * advertising or publicity pertaining to distribution of the software * without specific, written prior permission. Furthermore if you modify * this software you must label your software as modified software and not * distribute it in such a fashion that it might be confused with the * original MIT software. M.I.T. makes no representations about the * suitability of this software for any purpose. It is provided "as is" * without express or implied warranty. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * * Individual source code files are copyright MIT, Cygnus Support, * OpenVision, Oracle, Sun Soft, FundsXpress, and others. * * Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, * and Zephyr are trademarks of the Massachusetts Institute of Technology * (MIT). No commercial use of these trademarks may be made without prior * written permission of MIT. * * "Commercial use" means use of a name in a product or other for-profit * manner. It does NOT prevent a commercial firm from referring to the MIT * trademarks in order to convey information (although in doing so, * recognition of their trademark status should be given). * $ */ /* $Header: /Volumes/backup/dsmigrate/Dumps/../CVS/passwordserver_sasl/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosSupport/netdb.h,v 1.4 2005/01/10 19:10:48 snsimon Exp $ */ /* MIT Sockets Library * netdb.h * macdev@mit.edu */ #ifndef _NETDB_H #define _NETDB_H #include <stdlib.h> #ifdef __cplusplus extern "C" { #endif struct hostent { char *h_name; /* official (cannonical) name of host */ char **h_aliases; /* pointer to array of pointers of alias names */ int h_addrtype; /* host address type: AF_INET or AF_INET6 */ int h_length; /* length of address: 4 or 16 */ char **h_addr_list; /* pointer to array of pointers with IPv4 or IPv6 addresses */ }; #define h_addr h_addr_list[0] /* first address in list */ struct servent { char *s_name; /* official service name */ char **s_aliases; /* alias list */ int s_port; /* port number, network-byte order */ char (…)
1 /* $Copyright member in struct:servent
/macosx-10.9.5/libpcap-42/libpcap/Win32/Src/
H A Dgetservent.c108 q = serv.s_aliases = serv_aliases;
/macosx-10.9.5/Libinfo-449.1.3/lookup.subproj/
H A Dnetdb.h136 char **s_aliases; /* alias list */ member in struct:servent
H A Dfile_module.c1449 char **tokens, **s_aliases, *xproto; local
1466 s_aliases = NULL;
1467 if (ntokens > 2) s_aliases = &(tokens[2]);
1491 else if (s_aliases != NULL)
1493 for (i = 0; (s_aliases[i] != NULL) && (match == 0); i++)
1494 if (string_equal(name, s_aliases[i])) match = 1;
1508 item = (si_item_t *)LI_ils_create("L4488s*4s", (unsigned long)si, CATEGORY_SERVICE, 1, va, vb, tokens[0], s_aliases, xport, xproto);
H A Dds_module.c1193 if (0 != _extract_string_list_from_xpc_array_index(reply, i++, NULL, (char ***)&tmp.s_aliases)) return NULL;
1196 item = (si_item_t *)LI_ils_create("L4488s*4s", (unsigned long)si, CATEGORY_SERVICE, 1, valid_global, valid_cat, tmp.s_name, tmp.s_aliases, tmp.s_port, tmp.s_proto);
1198 free(tmp.s_aliases);
1215 tmp.s_aliases = NULL;
1226 else if (!strcmp(key, "s_aliases"))
1228 status |= _extract_string_list_from_xpc_array(value, NULL, (char ***)&tmp.s_aliases);
1251 free(tmp.s_aliases);
1255 item = (si_item_t *)LI_ils_create("L4488s*4s", (unsigned long)si, CATEGORY_SERVICE, 1, valid_global, valid_cat, tmp.s_name, tmp.s_aliases, tmp.s_port, tmp.s_proto);
1257 free(tmp.s_aliases);
H A Dsi_module.c421 if (ent.s->s_aliases != NULL)
423 for (i = 0; ent.s->s_aliases[i] != NULL; i++)
425 if (string_equal(name, ent.s->s_aliases[i])) return 1;
/macosx-10.9.5/ntp-88/include/
H A Dntp_machine.h323 char **s_aliases; /* alias list */ member in struct:servent
/macosx-10.9.5/ntp-88/libntp/
H A Dmachines.c69 serv1->s_aliases = NULL; /* alias list */
/macosx-10.9.5/bash-92/bash-3.2/
H A Dbashline.c1765 for (alist = srvent->s_aliases; *alist; alist++)

Completed in 201 milliseconds