Searched refs:port (Results 276 - 300 of 1942) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/smb-697.95.1/include/netsmb/
H A Dnb_lib.h85 uint16_t port, int allowLocalConn, int tryBothPorts);
88 uint8_t nodeType, CFMutableArrayRef *outAddressArray, uint16_t port,
93 int isLocalIPAddress(struct sockaddr *, uint16_t port, int allowLocalConn);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/transfer/
H A Dconnect.tcl21 option -port -default 0
32 # - connect to host/port
35 # - listen on port for connection
42 set sock [Socket $options(-host) $options(-port)]
48 $options(-port)]
50 # Return port the server socket is listening on for the
/macosx-10.9.5/tcl-102/tcl_ext/tls/tls/tests/
H A DsimpleServer.tcl12 set OPTS(-port) 2468
24 \n\t-port num Port to listen on ($OPTS(-port))"
51 close $chan ;# release the port
78 proc accept { chan ip port } {
85 set chan [tls::socket -server accept -require $OPTS(-require) $OPTS(-port)]
87 puts "Server waiting connection on $chan ($OPTS(-port))"
/macosx-10.9.5/xnu-2422.115.4/osfmk/device/
H A Ddevice_types.h72 #include <mach/port.h>
121 extern io_object_t iokit_lookup_object_port( ipc_port_t port );
122 extern io_connect_t iokit_lookup_connect_port( ipc_port_t port );
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dmachserver.cpp81 // The bootstrap server will clear us from its map when our receive port dies.
104 // Register for mach port notifications
106 void MachServer::notifyIfDead(Port port, bool doNotify) const argument
109 port.requestNotify(mServerPort);
111 port.cancelNotify();
114 void MachServer::notifyIfUnused(Port port, bool doNotify) const argument
117 port.requestNotify(port, MACH_NOTIFY_NO_SENDERS, true);
119 port.cancelNotify(MACH_NOTIFY_NO_SENDERS);
257 if (bufRequest.localPort() == (*it)->port()) {
551 cdsa_mach_notify_dead_name(mach_port_t, mach_port_name_t port) argument
561 cdsa_mach_notify_port_deleted(mach_port_t, mach_port_name_t port) argument
571 cdsa_mach_notify_port_destroyed(mach_port_t, mach_port_name_t port) argument
581 cdsa_mach_notify_send_once(mach_port_t port) argument
591 cdsa_mach_notify_no_senders(mach_port_t port, mach_port_mscount_t count) argument
[all...]
H A Dmach++.h82 // An encapsulation of a Mach 3 port
90 Port(mach_port_t port) { mPort = port; } argument
96 mach_port_t &port () { return mPort; } function in class:Security::MachPlusPlus::Port
97 const mach_port_t &port () const { return mPort; } function in class:Security::MachPlusPlus::Port
106 // port allocation and management
120 // port notification interface
143 AutoPort(mach_port_t port) : Port(port) { } argument
156 void operator += (const Port &port) argument
159 operator -=(const Port &port) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dmachserver.cpp81 // The bootstrap server will clear us from its map when our receive port dies.
104 // Register for mach port notifications
106 void MachServer::notifyIfDead(Port port, bool doNotify) const argument
109 port.requestNotify(mServerPort);
111 port.cancelNotify();
114 void MachServer::notifyIfUnused(Port port, bool doNotify) const argument
117 port.requestNotify(port, MACH_NOTIFY_NO_SENDERS, true);
119 port.cancelNotify(MACH_NOTIFY_NO_SENDERS);
257 if (bufRequest.localPort() == (*it)->port()) {
551 cdsa_mach_notify_dead_name(mach_port_t, mach_port_name_t port) argument
561 cdsa_mach_notify_port_deleted(mach_port_t, mach_port_name_t port) argument
571 cdsa_mach_notify_port_destroyed(mach_port_t, mach_port_name_t port) argument
581 cdsa_mach_notify_send_once(mach_port_t port) argument
591 cdsa_mach_notify_no_senders(mach_port_t port, mach_port_mscount_t count) argument
[all...]
H A Dmach++.h82 // An encapsulation of a Mach 3 port
90 Port(mach_port_t port) { mPort = port; } argument
96 mach_port_t &port () { return mPort; } function in class:Security::MachPlusPlus::Port
97 const mach_port_t &port () const { return mPort; } function in class:Security::MachPlusPlus::Port
106 // port allocation and management
120 // port notification interface
143 AutoPort(mach_port_t port) : Port(port) { } argument
156 void operator += (const Port &port) argument
159 operator -=(const Port &port) argument
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dasyn-thread.c151 const char *hostname, int port,
162 int port; member in struct:thread_sync_data
206 int port,
211 tsd->port = port;
271 snprintf(service, sizeof(service), "%d", tsd->port);
297 tsd->res = Curl_ipv4_resolve_r(tsd->hostname, tsd->port);
343 const char *hostname, int port,
353 conn->async.port = port;
204 init_thread_sync_data(struct thread_sync_data * tsd, const char * hostname, int port, const struct addrinfo *hints) argument
342 init_resolve_thread(struct connectdata *conn, const char *hostname, int port, const struct addrinfo *hints) argument
525 Curl_resolver_getaddrinfo(struct connectdata *conn, const char *hostname, int port, int *waitp) argument
553 Curl_resolver_getaddrinfo(struct connectdata *conn, const char *hostname, int port, int *waitp) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/net/
H A Dpop.rb204 # returns the port for POP3
209 # The default port for POP3 connections, port 110
214 # The default port for POP3S connections, port 995
231 # pop = Net::POP3::APOP($is_apop).new(addr, port)
234 # Net::POP3::APOP($is_apop).start(addr, port) do |pop|
246 # Net::POP3.start(address, port, account, password) do |pop|
262 def POP3.foreach(address, port = nil,
265 start(address, port, accoun
493 def port method in class:Net.POP3
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/xmlrpc/
H A Dclient.rb65 # +port+ is the port on which the XML-RPC server listens.
68 # +proxy_host+ is used. +proxy_port+ is the port of the
71 # Default values for +host+, +path+ and +port+ are 'localhost', '/RPC2' and
81 def initialize(host=nil, path=nil, port=nil, proxy_host=nil, proxy_port=nil,
99 @port = port || 443
101 @port = port || 80
109 @port
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/sdx/sdx/lib/uri/
H A Duri.tcl78 variable port $digits
79 variable hostOrPort "${host}(:${port})?"
200 # //<user>:<password>@<host>:<port>/<cwd1>/.../<cwdN>/<name>;type=<typecode>
207 # "//" [ <user> [":" <password> ] "@"] <host> [":" <port>] "/"
212 array set parts {user {} pwd {} host {} port {} path {} type {}}
227 # Handle user, password, host and port
243 user {} pwd {} host {} port {}
253 set port {}
254 if {[string length $components(port)]} {
255 set port
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/uri/
H A Duri.tcl78 variable port $digits
79 variable hostOrPort "${host}(:${port})?"
200 # //<user>:<password>@<host>:<port>/<cwd1>/.../<cwdN>/<name>;type=<typecode>
207 # "//" [ <user> [":" <password> ] "@"] <host> [":" <port>] "/"
212 array set parts {user {} pwd {} host {} port {} path {} type {}}
227 # Handle user, password, host and port
243 user {} pwd {} host {} port {}
253 set port {}
254 if {[string length $components(port)]} {
255 set port
[all...]
/macosx-10.9.5/CPANInternal-140/IO-Socket-SSL/t/
H A Dtestlib.pl171 # return socket and ip:port
174 my ($addr,$port,$proto) = @_;
178 $port ? ( LocalPort => $port ) : (),
182 ($port,$addr) = unpack_sockaddr_in( getsockname($sock) );
183 return wantarray ? ( $sock, inet_ntoa($addr).':'.$port ) : $sock;
/macosx-10.9.5/Security-55471.14.18/sec/Security/Tool/
H A Dadd_internet_password.c27 UInt16 port, SecProtocolType protocol,
59 values[ix++] = CFNumberCreate(NULL, kCFNumberSInt16Type, &port);
100 UInt16 port = 0; local
110 " -o Use port \n"
132 port = atoi(optarg);
166 accountName, path, port, protocol,authenticationType, passwordData);
25 do_addinternetpassword(const char *keychainName, const char *serverName, const char *securityDomain, const char *accountName, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, const void *passwordData) argument
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/gtk/
H A DWebContextGtk.cpp56 unsigned short port = 2999; local
64 port = result[1].toInt(&ok);
66 port = 2999;
67 LOG_ERROR("Couldn't parse the port. Use 2999 instead.");
72 if (!WebInspectorServer::shared().listen(bindAddress, port))
73 LOG_ERROR("Couldn't start listening on: IP address=%s, port=%d.", bindAddress.utf8().data(), port);
/macosx-10.9.5/bind9-45.100/bind9/bin/named/
H A Dlistenlist.c35 ns_listenelt_create(isc_mem_t *mctx, in_port_t port, argument
45 elt->port = port;
103 ns_listenlist_default(isc_mem_t *mctx, in_port_t port, argument
119 result = ns_listenelt_create(mctx, port, acl, &elt);
/macosx-10.9.5/tcl-102/tcl_ext/thread/thread/tcl/cmdsrv/
H A Dcmdsrv.tcl8 # cmdsrv::create port ?-idletime value? ?-initcmd cmd?
10 # port Tcp port where the server listens
21 # Starts the server on the port 5000, sets idle timer to 1 minute.
43 # Start the server on the given Tcp port.
46 # port Port where the server is listening
56 proc cmdsrv::create {port args} {
88 # Start the server on the given port. Note that we wrap
93 socket -server [namespace current]::_Accept -myaddr 127.0.0.1 $port
107 # port Tc
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Platform/mac/
H A DSharedMemoryMac.cpp79 handle.m_port = machPort.port();
118 // Create a Mach port that represents the shared memory.
119 mach_port_t port; local
121 kern_return_t kr = mach_make_memory_entry_64(mach_task_self(), &memoryObjectSize, toVMAddress(data), VM_PROT_DEFAULT | VM_PROT_IS_MASK, &port, MACH_PORT_NULL);
124 LOG_ERROR("Failed to create a mach port for shared memory. %s (%x)", mach_error_string(kr), kr);
130 mach_port_deallocate(mach_task_self(), port); local
138 sharedMemory->m_port = port;
200 mach_port_t port; local
203 // Just re-use the port we have.
204 port
215 mach_port_deallocate(mach_task_self(), port); local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/nns/
H A Dserver.tcl21 variable port
44 -port $port \
50 log::debug "UP @$port local-only $localonly"
301 ## API: Configuration management (host, port)
309 variable port
313 return [list -localonly $localonly -port $port]
320 -port { return $port }
[all...]
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/RR/
H A DSRV.pm46 @{$self}{qw(priority weight port)} = unpack("\@$offset n3", $$data);
59 @{$self}{qw(priority weight port target)} = ($1, $2, $3, $4);
72 $rdatastr = join(' ', @{$self}{qw(priority weight port target)});
86 $rdata .= pack('n3', @{$self}{qw(priority weight port)});
124 =head2 port
126 print "port = ", $rr->port, "\n";
128 Returns the port on this target host for the service.
/macosx-10.9.5/IOAudioFamily-197.4.2/
H A DIOAudioPort.cpp72 IOAudioPort *port; local
74 port = new IOAudioPort;
75 if (port) {
76 if (!port->initWithAttributes(portType, portName, subType, properties)) {
77 port->release();
78 port = 0;
82 return port;
/macosx-10.9.5/KerberosHelper-148/Source/
H A DLKDCHelper-stubs.c39 static mach_port_t port = MACH_PORT_NULL; local
42 port = MACH_PORT_NULL;
45 if (port == MACH_PORT_NULL &&
46 BOOTSTRAP_SUCCESS != bootstrap_look_up(bootstrap_port, kLKDCHelperName, &port)) {
50 return port;
170 LKDCHelperErrorType LKDCFindKDCForRealm (const char *realm, char **hostname, uint16_t *port) argument
191 *port = kdcport;
/macosx-10.9.5/WebCore-7537.78.1/dom/default/
H A DPlatformMessagePortChannel.cpp76 bool MessagePortChannel::entangleIfOpen(MessagePort* port) argument
79 // but we need to guard against the remote port getting closed/freed, so create a standalone reference.
83 remote->setRemotePort(port);
126 bool MessagePortChannel::isConnectedTo(MessagePort* port) argument
130 return m_channel->m_remotePort == port;
145 // The remote port's ScriptExecutionContext is guaranteed not to change here - MessagePort::contextDestroyed()
146 // will close the port before the context goes away, and close() will block because we are holding the mutex.
170 void PlatformMessagePortChannel::setRemotePort(MessagePort* port) argument
173 // Should never set port if it is already set.
174 ASSERT(!port || !m_remotePor
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/confgen/
H A Drndc-confgen.c80 %s [-a] [-b bits] [-c keyfile] [-k keyname] [-p port] [-r randomfile] \
86 -p port: the port named will listen on and rndc will connect to\n\
110 int port; local
129 port = DEFAULT_PORT;
163 port = strtol(isc_commandline_argument, &p, 10);
164 if (*p != '\0' || port < 0 || port > 65535)
165 fatal("port '%s' out of range",
240 default-port
[all...]

Completed in 458 milliseconds

<<11121314151617181920>>