Searched refs:port (Results 176 - 200 of 1942) sorted by relevance

1234567891011>>

/macosx-10.9.5/BerkeleyDB-21/db/os/
H A Dos_addrinfo.c29 __os_getaddrinfo(env, nodename, port, servname, hints, res)
32 u_int port;
43 nodename == NULL ? "" : nodename, port,
83 nodename == NULL ? "" : nodename, port);
100 nodename == NULL ? "" : nodename, port,
105 nodename == NULL ? "" : nodename, port,
126 sin.sin_port = htons((u_int16_t)port);
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dhostip4.c96 int port,
107 ai = Curl_ipv4_resolve_r(hostname, port);
126 int port)
138 return Curl_ip2addr(AF_INET, &in, hostname, port);
149 if(port) {
150 snprintf(sbuf, sizeof(sbuf), "%d", port);
302 ai = Curl_he2ai(h, port);
94 Curl_getaddrinfo(struct connectdata *conn, const char *hostname, int port, int *waitp) argument
125 Curl_ipv4_resolve_r(const char *hostname, int port) argument
H A Dhostip.h77 * and port.
88 int port, struct Curl_dns_entry **dnsentry);
90 int port, struct Curl_dns_entry **dnsentry,
117 int port,
147 Curl_addrinfo *Curl_ipv4_resolve_r(const char * hostname, int port);
181 const char *hostname, int port);
/macosx-10.9.5/tcl-102/tcl_ext/sdx/sdx/lib/app-sdx/
H A Drexecd.tcl45 proc accept {callback chan host port} {
46 log "Accept: $chan $host $port"
77 proc clnt_accept {chan rchan host port} {
79 log "clnt_accept: $rchan $host $port"
80 set state($chan) $port
82 proc connect {host user pass cmd {port 512}} {
84 set chan [socket $host $port]
92 # Tell server which port I am listening on.
139 -port 512
158 -myaddr $opts(-ipaddr) $opts(-port)]
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/apps/comm/
H A Dwebserver.xotcl3 array set opts {-root ../../doc -port 8086 -protected-port 9096 -pkgdir .}
20 ../../src/doc (or the files specified with -root) at port 8086
21 (or at the port specified via the -port option) as unprotected resources.
24 (it accepts test/test as user/password) on port 9096 (or on the
25 port specified via -protected-port). If it receives an request
43 Httpd h1 -port $opts(-port)
[all...]
H A Dget-regression-nb.xotcl8 # ./get-regression-nb.xotcl -port 8086
11 # 1) installation von Apache auf port 80
13 # 2) installation vom webserver.xotcl auf port 8086
28 # get-regression-nb.xotcl -port 8086 -sequential 0
41 # time get-regression-nb.xotcl -port 8086 -sequential 0 -clients 1
49 # mohegan:~/wafe/src/cineast> time ./get-regression-nb.xotcl -port 8086 -sequential 0 -clients 1
65 # mohegan:~/wafe/src/cineast> time ./get-regression-nb.xotcl -port 80 -sequential 0 -clients 1
86 set port ""
96 -port {set port
[all...]
/macosx-10.9.5/IOKitUser-907.100.13/
H A Dionotify.c74 mach_port_t port; local
90 kr = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &port)
98 port, (unsigned int) type, &iter2 )
103 dumpIter( iter2, port );
110 port, (unsigned int) type, &iter1 )
113 dumpIter( iter1, port );
121 port, (unsigned int) obj, &iter3)
124 printf("ports: iter1=%d, iter2=%d, rcv=%d\n", iter1, iter2, port);
130 0, sizeof(msg), port, 0, MACH_PORT_NULL)
150 // remote port i
[all...]
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/java/CyrusSasl/
H A DGenericCommon.java21 private native void jni_sasl_set_server(int ptr, byte []ipnum, int port); argument
22 private native void jni_sasl_set_client(int ptr, byte []ipnum, int port); argument
102 * This sets the IP address and port
105 * @param port port connected to on that server
108 private boolean setRemoteIP(String name,int port) argument
118 jni_sasl_set_server(ptr, ip, port);
124 * This sets the IP address and port
127 * @param port port connectin
130 setLocalIP(String name, int port) argument
152 setClient(InetAddress local,int port) argument
169 setClient(int port) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/apps/
H A Dnnsd35 # Ad 1) nnsd ?-localonly BOOL? ?-port PORT?
37 # Run the server. If no port is specified the default port 38573
69 -port {
73 set port [lindex $argv 1]
76 nameserv::server::configure -port $port
101 ?-localonly BOOL? ?-port PORT?"
122 set p [nameserv::server::cget -port]
/macosx-10.9.5/Libinfo-449.1.3/rpc.subproj/
H A Dbindresvport.c74 * Bind a socket to a privileged port for whatever protocol.
86 u_int16_t port; local
107 port = sin->sin_port;
114 port = sin6->sin6_port;
122 if (port == 0) {
137 if (port == 0) {
158 * Bind a socket to a privileged IP port
H A Dpmap_getport.c76 * Find the mapped port for program,version.
83 u_short port; local
96 port = 0;
108 status = CLNT_CALL(client, PMAPPROC_GETPORT, (xdrproc_t)xdr_pmap, &parms, (xdrproc_t)xdr_u_short, &port, real_tt);
114 else if (port == 0)
124 return port;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/efl/
H A DWebContextEfl.cpp57 unsigned short port = 2999; local
65 port = result[1].toUInt(&ok);
67 port = 2999;
68 LOG_ERROR("Couldn't parse the port. Using 2999 instead.");
73 if (!WebInspectorServer::shared().listen(bindAddress, port))
74 LOG_ERROR("Couldn't start listening on: IP address=%s, port=%d.", bindAddress.utf8().data(), port);
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/include/isc/
H A Dsockaddr.h49 #define ISC_SOCKADDR_CMPPORT 0x0002 /*%< compare the port
94 * is ISC_TRUE, the hash value will not depend on the port.
124 in_port_t port);
126 * Construct an isc_sockaddr_t from an IPv4 address and port.
131 in_port_t port);
133 * Construct an isc_sockaddr_t from an IPv6 address and port.
138 in_port_t port);
145 in_port_t port);
147 * Construct an isc_sockaddr_t from an isc_netaddr_t and port.
166 isc_sockaddr_setport(isc_sockaddr_t *sockaddr, in_port_t port);
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/url/
H A Durl-misc.el50 (defun url-do-terminal-emulator (type server port user)
66 (if port
67 (list server port)
78 (port (url-port url)))
79 (url-do-terminal-emulator type server port name))
/macosx-10.9.5/ntp-88/lib/isc/include/isc/
H A Dsockaddr.h49 #define ISC_SOCKADDR_CMPPORT 0x0002 /*%< compare the port
94 * is ISC_TRUE, the hash value will not depend on the port.
124 in_port_t port);
126 * Construct an isc_sockaddr_t from an IPv4 address and port.
131 in_port_t port);
133 * Construct an isc_sockaddr_t from an IPv6 address and port.
138 in_port_t port);
145 in_port_t port);
147 * Construct an isc_sockaddr_t from an isc_netaddr_t and port.
166 isc_sockaddr_setport(isc_sockaddr_t *sockaddr, in_port_t port);
[all...]
/macosx-10.9.5/ruby-104/ruby/test/openssl/
H A Dssl_server.rb34 port = Integer(ARGV.shift)
52 tcps = TCPServer.new("0.0.0.0", port+i)
53 port = port + i
64 $stdout.puts port
/macosx-10.9.5/Heimdal-323.92.1/kdc/
H A Dconnect.c57 int port; member in struct:port_desc
74 * add `family, port, protocol' to the list with duplicate suppresion.
79 int family, int port, const char *protocol)
92 && ports[i].port == port
101 ports[num_ports].port = port;
106 * add a triple but with service -> port lookup
112 int family, const char *service, int port,
115 port
78 add_port(krb5_context context, int family, int port, const char *protocol) argument
111 add_port_service(krb5_context context, int family, const char *service, int port, const char *protocol) argument
129 int port; local
218 int port; member in struct:descr
256 init_socket(krb5_context context, krb5_kdc_configuration *config, struct descr *d, krb5_address *a, int family, int type, int port) argument
420 char addr[NI_MAXHOST], port[NI_MAXSERV]; local
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dmachserver.h44 void cdsa_mach_notify_dead_name(mach_port_t, mach_port_name_t port);
45 void cdsa_mach_notify_port_destroyed(mach_port_t, mach_port_name_t port);
46 void cdsa_mach_notify_port_deleted(mach_port_t, mach_port_name_t port);
102 // request port status notifications (override virtual methods below to receive)
103 virtual void notifyIfDead(Port port, bool doNotify = true) const;
104 virtual void notifyIfUnused(Port port, bool doNotify = true) const;
149 mach_port_t port() const { return mPort; } function in class:Security::MachPlusPlus::MachServer::Handler
154 void port(mach_port_t p) { assert(mPort == MACH_PORT_NULL); mPort = p; } function in class:Security::MachPlusPlus::MachServer::Handler
175 // override these to receive Mach-style port notifications about your clients
176 virtual void notifyDeadName(Port port);
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dmachserver.h44 void cdsa_mach_notify_dead_name(mach_port_t, mach_port_name_t port);
45 void cdsa_mach_notify_port_destroyed(mach_port_t, mach_port_name_t port);
46 void cdsa_mach_notify_port_deleted(mach_port_t, mach_port_name_t port);
102 // request port status notifications (override virtual methods below to receive)
103 virtual void notifyIfDead(Port port, bool doNotify = true) const;
104 virtual void notifyIfUnused(Port port, bool doNotify = true) const;
149 mach_port_t port() const { return mPort; } function in class:Security::MachPlusPlus::MachServer::Handler
154 void port(mach_port_t p) { assert(mPort == MACH_PORT_NULL); mPort = p; } function in class:Security::MachPlusPlus::MachServer::Handler
175 // override these to receive Mach-style port notifications about your clients
176 virtual void notifyDeadName(Port port);
[all...]
/macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/
H A DIOHIDUserDevice.c46 static void __IOHIDUserDeviceQueueCallback(CFMachPortRef port, void *msg, CFIndex size, void *info);
64 CFMachPortRef port; member in struct:__IOHIDUserDevice::__anon2394
71 IONotificationPortRef port; member in struct:__IOHIDUserDevice::__anon2395
177 if ( device->queue.port ) {
178 mach_port_t port = CFMachPortGetPort(device->queue.port); local
180 CFMachPortInvalidate(device->queue.port);
181 CFRelease(device->queue.port);
184 port, local
188 device->queue.port
291 mach_port_t port = IODataQueueAllocateNotificationPort(); local
[all...]
/macosx-10.9.5/CPANInternal-140/Net-Daemon/lib/Net/Daemon/
H A DTest.pm83 my($handle, $port) = eval {
116 the B<Bind> method attempts to allocate a port automatically. Once a
117 port is allocated, the number is stored in the file "ndtest.prt".
154 to find and allocate a free port in two ways: First of all, it tries to
155 call Bind with port 0, most systems will automatically choose a port in
164 my($port, $socket);
167 $port = $self->{'localpath'} || die "Missing option: localpath";
169 IO::Socket::UNIX->new('Local' => $port,
182 $port
[all...]
/macosx-10.9.5/CPANInternal-140/Net-Daemon-0.48/lib/Net/Daemon/
H A DTest.pm83 my($handle, $port) = eval {
116 the B<Bind> method attempts to allocate a port automatically. Once a
117 port is allocated, the number is stored in the file "ndtest.prt".
154 to find and allocate a free port in two ways: First of all, it tries to
155 call Bind with port 0, most systems will automatically choose a port in
164 my($port, $socket);
167 $port = $self->{'localpath'} || die "Missing option: localpath";
169 IO::Socket::UNIX->new('Local' => $port,
182 $port
[all...]
/macosx-10.9.5/AppleUSBIrDA-145.2.4/AppleUSBIrDA/
H A DAppleUSBIrDA.cpp120 {kLogNewPort, "AppleUSBIrDADriver: new port"},
145 {kLogAcquirePort, "AppleUSBIrDADriver: acquire port"},
146 {kLogReleasePort, "AppleUSBIrDADriver: release port"},
665 // Inputs: port - the port to check
673 void AppleUSBIrDADriver::CheckQueues( PortInfo_t *port )
681 QueuingState = readPortState( port );
684 Used = UsedSpaceinQueue( &port->TX );
685 Free = FreeSpaceinQueue( &port->TX );
704 if ( Used < port
1390 PortInfo_t *port = (PortInfo_t*)param; local
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-SSLeay/eg/
H A Dnet-ssl-test34 Usage: $basename [-d] [-b=NNN] [-h] [-p proxy_name:port] [-CAfile=FILE] [GET|HEAD] [ssl_server_name] [port]
48 port defaults to 443
76 my($host, $port, $path);
83 ($host, $port, $path) = ($2, $4, $5);
86 $port ||= shift || 443;
129 PeerPort => $port,
135 $error && die("Can't connect to $host:$port; $error; $!");
138 $out .= "WEB SITE : $host:$port\n";
/macosx-10.9.5/CPANInternal-140/Crypt-SSLeay-0.64/eg/
H A Dnet-ssl-test34 Usage: $basename [-d] [-b=NNN] [-h] [-p proxy_name:port] [-CAfile=FILE] [GET|HEAD] [ssl_server_name] [port]
48 port defaults to 443
76 my($host, $port, $path);
83 ($host, $port, $path) = ($2, $4, $5);
86 $port ||= shift || 443;
129 PeerPort => $port,
135 $error && die("Can't connect to $host:$port; $error; $!");
138 $out .= "WEB SITE : $host:$port\n";

Completed in 317 milliseconds

1234567891011>>