Searched refs:port (Results 226 - 250 of 1892) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Drplay.tcl6 puts {Usage: rplay.tcl file [host1:port] [host2:port] ...}
11 # Please edit here to set default host and port number
29 # Quick way to set both host and port
31 foreach {host port} [split $hostport :] break
35 if [catch {set sock [socket $host $port]} res] {
36 puts "Error: no aserver.tcl at $host,$port"
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/smtpd/clients/
H A Dmail-test.py7 def __init__(self, interface='localhost', port=25):
8 self.svr = smtplib.SMTP(interface, port)
/macosx-10.10/tcl-105/tcl_ext/tls/tls/tests/oldTests/
H A DtlsAuto.tcl39 -port 1234
51 #set chan [tls::socket -async -request 0 $opts(-host) $opts(-port)]
52 set chan [tls::socket -request 0 $opts(-host) $opts(-port)]
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/apps/actiweb/
H A DReceiver.xotcl8 HtmlPlace receiver -port 8087
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIODataQueue.h39 #include <mach/port.h>
56 * <br>In order for the IODataQueue instance to notify the user process that data is available, a notification mach port must be set. When the queue is empty and a new entry is added, a message is sent to the specified port.
58 * <br>User client code exists in the IOKit framework that facilitates the creation of the receive notification port as well as the listen process for new data available notifications.
79 * @abstract Sends a dataAvailableNotification message to the specified mach port.
80 * @discussion This method sends a message to the mach port passed to setNotificationPort(). It is used to indicate that data is available in the queue.
135 * @abstract Creates a simple mach message targeting the mach port specified in port.
137 * @param port The mach port t
[all...]
H A DIODataQueueShared.h33 #include <mach/port.h>
69 * @field msgh Mach message header containing the notification mach port associated with this queue.
/macosx-10.10/xnu-2782.1.97/osfmk/kdp/
H A Dkdp_core.h84 const char *routerip, const uint32_t port);
86 uint32_t *port);
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dgetnameinfo.c42 int port,
71 snprintf (serv, servlen, "%u", ntohs(port));
79 se = getservbyport (port, proto);
81 snprintf (serv, servlen, "%u", ntohs(port));
39 doit(int af, const void *addr, size_t addrlen, int port, char *host, size_t hostlen, char *serv, size_t servlen, int flags) argument
/macosx-10.10/Heimdal-398.1.2/tests/can/
H A Dtest_can.in51 port=@port@
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/tests/progs/
H A Dslapd-common.h35 extern char * tester_uri( char *uri, char *host, int port );
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Durl.cpp100 IPPort URL::port(IPPort defaultPort) const function in class:Security::Network::URL
102 SInt32 port = CFURLGetPortNumber(ref); local
103 return (port == -1) ? defaultPort : port;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Durl.cpp100 IPPort URL::port(IPPort defaultPort) const function in class:Security::Network::URL
102 SInt32 port = CFURLGetPortNumber(ref); local
103 return (port == -1) ? defaultPort : port;
/macosx-10.10/WebCore-7600.1.25/workers/
H A DSharedWorker.h46 MessagePort* port() const { return m_port.get(); } function in class:WebCore::final
/macosx-10.10/curl-83.1.2/curl/tests/
H A Dhttpserver.pl38 my $port = 8990; # just a default
80 elsif($ARGV[0] eq '--port') {
82 $port = $1;
120 $flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\"";
H A Drtspserver.pl38 my $port = 8990; # just a default
75 elsif($ARGV[0] eq '--port') {
77 $port = $1;
107 $flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\"";
H A Dtftpserver.pl38 my $port = 8997; # just a default
76 elsif($ARGV[0] eq '--port') {
78 $port = $1;
108 $flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\"";
/macosx-10.10/emacs-93/emacs/lisp/url/
H A Durl-nfs.el38 %n -- the port # of the NFS server
46 (defun url-nfs-unescape (format host port user pass file)
58 (?n (insert (or port "")))
66 (port (url-port url))
72 host port user pass file))))
/macosx-10.10/network_cmds-457/mnc.tproj/
H A Dmnc.h58 /* The UDP port MNC will use by default */
66 /* What UDP port are we using ? */
67 char * port; member in struct:mnc_configuration
/macosx-10.10/postfix-255/postfix/src/util/
H A Dinet_connect.c24 /* The destination to connect to. The format is host:port. If no
25 /* host is specified, a port on the local host is assumed.
26 /* Host and port information may be given in numerical form
81 char *port; local
96 if ((parse_err = host_port(buf, &host, "localhost", &port, (char *) 0)) != 0)
98 if ((aierr = hostname_to_sockaddr(host, port, SOCK_STREAM, &res0)) != 0)
100 host, port, MAI_STRERROR(aierr));
/macosx-10.10/ppp-786.1.1/Authenticators/Radius/
H A Dradius.h42 int port; member in struct:auth_server
/macosx-10.10/ruby-106/ruby/sample/openssl/
H A Dwget.rb14 prx_port = prx_uri.port
17 h = Net::HTTP.new(uri.host, uri.port, prx_host, prx_port)
/macosx-10.10/ruby-106/ruby/test/xmlrpc/
H A Dtest_cookie.rb68 def setup_http_server(port)
69 option = {:Port => port}
73 @s = XMLRPC::Client.new3(:port => port)
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/ftp/
H A Dftp_geturl.tcl31 if {$urlparts(port) == {}} {
32 set urlparts(port) 21
36 -port $urlparts(port)]
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dux_exception.h62 #include <mach/port.h>
/macosx-10.10/xnu-2782.1.97/osfmk/ipc/
H A Dipc_voucher.c282 ipc_port_t port = iv->iv_port; local
303 * if a port was allocated for this voucher,
305 * because the port's reference on the voucher
308 if (IP_VALID(port)) {
309 assert(ip_active(port));
310 assert(port->ip_srights == 0);
312 ipc_port_dealloc_kernel(port);
349 * Unsafe conversion of a port to a voucher.
356 * Caller has a send-right reference to port.
361 ipc_port_t port)
360 unsafe_convert_port_to_voucher( ipc_port_t port) argument
388 convert_port_to_voucher( ipc_port_t port) argument
425 ipc_port_t port; local
476 ipc_port_t port = notification->not_header.msgh_remote_port; local
492 ipc_port_t port, send; local
598 ipc_port_t port = ivac->ivac_port; local
675 convert_port_to_voucher_attr_control( ipc_port_t port) argument
702 ipc_port_t port = notification->not_header.msgh_remote_port; local
725 ipc_port_t port, send; local
2207 ipc_port_t port = MACH_PORT_NULL; local
[all...]

Completed in 191 milliseconds

1234567891011>>