Searched refs:ports (Results 1 - 25 of 78) sorted by relevance

1234

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DMessagePort.cpp62 MessagePortArray ports; local
64 ports.append(port);
65 postMessage(message, &ports, ec);
68 void MessagePort::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionCode& ec) argument
75 // Make sure we aren't connected to any of the passed-in ports.
76 if (ports) {
77 for (unsigned int i = 0; i < ports->size(); ++i) {
78 MessagePort* dataPort = (*ports)[i].get();
84 channels = MessagePort::disentanglePorts(ports, ec);
97 // We can't receive any messages or generate any events, so remove ourselves from the list of active ports
203 disentanglePorts(const MessagePortArray* ports, ExceptionCode& ec) argument
[all...]
H A DMessageEvent.cpp52 , m_ports(adoptPtr(new MessagePortArray(initializer.ports)))
56 MessageEvent::MessageEvent(const ScriptValue& data, const String& origin, const String& lastEventId, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortArray> ports) argument
63 , m_ports(ports)
67 MessageEvent::MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortArray> ports) argument
74 , m_ports(ports)
109 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, const ScriptValue& data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports) argument
121 m_ports = ports;
124 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports) argument
136 m_ports = ports;
157 OwnPtr<MessagePortArray> ports; local
[all...]
H A DMessageEvent.h50 MessagePortArray ports; member in struct:WebCore::MessageEventInit
59 static PassRefPtr<MessageEvent> create(PassOwnPtr<MessagePortArray> ports, const ScriptValue& data = ScriptValue(), const String& origin = "", const String& lastEventId = "", PassRefPtr<DOMWindow> source = 0) argument
61 return adoptRef(new MessageEvent(data, origin, lastEventId, source, ports));
63 static PassRefPtr<MessageEvent> create(PassOwnPtr<MessagePortArray> ports, PassRefPtr<SerializedScriptValue> data, const String& origin = "", const String& lastEventId = "", PassRefPtr<DOMWindow> source = 0) argument
65 return adoptRef(new MessageEvent(data, origin, lastEventId, source, ports));
91 MessagePortArray ports() const { return m_ports ? *m_ports : MessagePortArray(); } function in class:WebCore::MessageEvent
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Drepmgr001.tcl45 set ports [available_ports 2]
59 -local [list localhost [lindex $ports 0]] \
68 -local [list localhost [lindex $ports 1]] \
69 -remote [list localhost [lindex $ports 0]] \
103 -local [list localhost [lindex $ports 1]] \
104 -remote [list localhost [lindex $ports 0]] \
119 -local [list localhost [lindex $ports 1]] \
120 -remote [list localhost [lindex $ports 0]] \
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/
H A DTestSerializedScriptValueInterface.idl34 readonly attribute MessagePort[] ports;
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DDedicatedWorkerContext.cpp68 MessagePortArray ports; local
70 ports.append(port);
71 postMessage(message, &ports, ec);
74 void DedicatedWorkerContext::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionCode& ec) argument
77 OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, ec);
H A DWorker.cpp99 MessagePortArray ports; local
101 ports.append(port);
102 postMessage(message, &ports, ec);
105 void Worker::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionCode& ec) argument
108 OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, ec);
/macosx-10.9.5/top-89.1.2/tests/
H A Doverfill-stats.sh2 sudo ./build/Release/top -stats pid,command,cpu,time,th,wq,ports,mreg,rprvt,rshrd,rsize,vsize,vprvt,pgrp,ppid,state,uid,faults,cow,msgsent,msgrecv,sysbsd,sysmach,csw,pageins,user,pid
/macosx-10.9.5/xnu-2422.115.4/osfmk/ipc/
H A Dmig_log.c100 unsigned int ports,
109 size, kpd, retcode, ports, oolports, ool, file, line);
93 MigEventTracer( mig_who_t who, mig_which_event_t what, mach_msg_id_t msgh_id, unsigned int size, unsigned int kpd, unsigned int retcode, unsigned int ports, unsigned int oolports, unsigned int ool, char *file, unsigned int line) argument
/macosx-10.9.5/xnu-2422.115.4/tools/tests/MPMMTest/
H A DMPMMtest.c101 fprintf(stderr, " -set num\t\tuse a portset stuffed with num ports in server\n");
213 void setup_server_ports(struct port_args *ports) argument
220 ports->req_size = MAX(sizeof(ipc_inline_message) +
223 ports->reply_size = sizeof(ipc_trivial_message) -
225 ports->req_msg = malloc(ports->req_size);
226 ports->reply_msg = malloc(ports->reply_size);
231 &(ports->set));
238 /* stuff the portset with ports */
290 setup_client_ports(struct port_args *ports) argument
[all...]
H A DKQMPMMtest.c210 void setup_server_ports(struct port_args *ports) argument
215 ports->req_size = MAX(sizeof(ipc_inline_message) +
218 ports->reply_size = sizeof(ipc_trivial_message) -
220 ports->req_msg = malloc(ports->req_size);
221 ports->reply_msg = malloc(ports->reply_size);
225 &(ports->port));
233 &(ports->pset));
240 ports
275 setup_client_ports(struct port_args *ports) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/kdc/
H A Dconnect.c42 /* A string describing on what ports to listen */
62 static struct port_desc *ports; variable in typeref:struct:port_desc
91 if(ports[i].type == type
92 && ports[i].port == port
93 && ports[i].family == family)
96 ports = realloc(ports, (num_ports + 1) * sizeof(*ports));
97 if (ports == NULL)
99 ports[num_port
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A Dmig_log.h65 unsigned int ports,
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSMessageEventCustom.cpp66 MessagePortArray ports = static_cast<MessageEvent*>(impl())->ports(); local
67 result = serializedValue->deserialize(exec, globalObject(), &ports, NonThrowing);
/macosx-10.9.5/CPANInternal-140/Authen-Krb5/
H A Dsimple_client34 $ports = new Authen::Krb5::Address(ADDRTYPE_IPPORT,pack("n",$s->sockport()));
36 $ac->setports($ports,undef);
H A Dsimple_server34 $ports = new Authen::Krb5::Address(ADDRTYPE_IPPORT,pack("n",$ns->peerport()));
69 $ac->setports(undef,$ports);
/macosx-10.9.5/CPANInternal-140/Krb5-1.9/
H A Dsimple_client34 $ports = new Authen::Krb5::Address(ADDRTYPE_IPPORT,pack("n",$s->sockport()));
36 $ac->setports($ports,undef);
H A Dsimple_server34 $ports = new Authen::Krb5::Address(ADDRTYPE_IPPORT,pack("n",$ns->peerport()));
69 $ac->setports(undef,$ports);
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-cnfp.c74 u_int32_t ports; /* src,dst ports */ member in struct:nfrec
142 EXTRACT_32BITS(&nr->ports) >> 16);
151 EXTRACT_32BITS(&nr->ports) & 0xffff);
/macosx-10.9.5/apache-786.1/httpd/modules/arch/netware/
H A Dmod_nw_ssl.c157 static unsigned long parse_addr(const char *w, unsigned short *ports) argument
164 if (ports != NULL) {
165 *ports = 0;
167 *ports = atoi(p + 1);
455 char *ports, *addr; local
466 ports = strchr(ips, ':');
468 if (ports != NULL) {
469 if (ports == ips)
471 else if (ports[1] == '\0')
474 *(ports
550 char *ports, *addr; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dipc_tt.c179 /* inherit registered ports */
185 /* inherit exception and bootstrap ports */
351 /* destroy the kernel ports */
542 * Both the thread port and its exception ports have
581 * Only ports that were set by root-owned processes
582 * (privileged ports) should survive
773 * special ports.
820 * Changes one of the thread's special ports,
875 * special ports.
940 * Changes one of the task's special ports,
1046 ipc_port_t ports[TASK_PORT_REGISTER_MAX]; local
1122 ipc_port_t *ports; local
1777 thread_swap_exception_ports( thread_t thread, exception_mask_t exception_mask, ipc_port_t new_port, exception_behavior_t new_behavior, thread_state_flavor_t new_flavor, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
1875 task_swap_exception_ports( task_t task, exception_mask_t exception_mask, ipc_port_t new_port, exception_behavior_t new_behavior, thread_state_flavor_t new_flavor, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
1988 thread_get_exception_ports( thread_t thread, exception_mask_t exception_mask, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
2055 task_get_exception_ports( task_t task, exception_mask_t exception_mask, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
[all...]
H A Dipc_host.c62 * Routines to implement host ports.
103 * Allocate and set up the two host ports.
129 /* the rest of the special ports will be set up later */
207 * Initialize ipc control of a processor set by allocating its ports.
243 * Return ports for manipulating default_processor set.
600 * ports specified in the mask and returns the behaviour
620 exception_port_array_t ports,
646 if (host_priv->exc_actions[i].port == ports[j] &&
656 ports[j] =
682 exception_port_array_t ports,
615 host_get_exception_ports( host_priv_t host_priv, exception_mask_t exception_mask, exception_mask_array_t masks, mach_msg_type_number_t * CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors ) argument
674 host_swap_exception_ports( host_priv_t host_priv, exception_mask_t exception_mask, ipc_port_t new_port, exception_behavior_t new_behavior, thread_state_flavor_t new_flavor, exception_mask_array_t masks, mach_msg_type_number_t * CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors ) argument
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/checkconf/
H A Dbad.conf20 avoid-v4-udp-ports { 100; }
21 avoid-v6-udp-ports { 100; };
H A Dgood.conf25 avoid-v4-udp-ports {
28 avoid-v6-udp-ports {
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/examples/mime/
H A Dmaildemo.tcl57 -ports [list $port] \

Completed in 286 milliseconds

1234