Searched refs:MessageChannel (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMessageChannel.cpp28 #include "core/dom/MessageChannel.h"
35 MessageChannel::MessageChannel(ScriptExecutionContext* context) function in class:WebCore::MessageChannel
43 MessageChannel::~MessageChannel()
H A DMessageChannel.h40 class MessageChannel : public RefCounted<MessageChannel>, public ScriptWrappable { class in namespace:WebCore
42 static PassRefPtr<MessageChannel> create(ScriptExecutionContext* context) { return adoptRef(new MessageChannel(context)); }
43 ~MessageChannel();
49 explicit MessageChannel(ScriptExecutionContext*);
H A DMessageChannel.idl32 ] interface MessageChannel {
/external/chromium_org/content/renderer/pepper/
H A Dmessage_channel.h21 // MessageChannel implements bidirectional postMessage functionality, allowing
26 // Currently, only 1 MessageChannel can exist, to implement postMessage
34 class MessageChannel { class in namespace:content
37 // MessageChannel instance. This way, we can use an NPObject to allow
38 // JavaScript interactions without forcing MessageChannel to inherit from
44 base::WeakPtr<MessageChannel> message_channel;
47 explicit MessageChannel(PepperPluginInstanceImpl* instance);
48 ~MessageChannel();
73 // set up for the plugin, users of MessageChannel should call
103 base::WeakPtrFactory<MessageChannel> weak_ptr_factory
[all...]
H A Dmessage_channel.cc53 // Helper function to get the MessageChannel that is associated with an
55 MessageChannel* ToMessageChannel(NPObject* object) {
56 return static_cast<MessageChannel::MessageChannelNPObject*>(object)->
61 MessageChannel* channel = ToMessageChannel(object);
157 return new MessageChannel::MessageChannelNPObject;
161 MessageChannel::MessageChannelNPObject* instance =
162 static_cast<MessageChannel::MessageChannelNPObject*>(object);
189 MessageChannel* message_channel = ToMessageChannel(np_obj);
323 // MessageChannel --------------------------------------------------------------
324 MessageChannel
329 MessageChannel::MessageChannel(PepperPluginInstanceImpl* instance) function in class:content::MessageChannel
[all...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DServerResponseInterface.java61 MessageChannel incomingChannel,
74 MessageChannel incomingChannel);
H A DStackMessageFactory.java58 MessageChannel msgChan);
69 MessageChannel msgChan);
H A DServerRequestInterface.java59 MessageChannel incomingChannel);
H A DTCPMessageProcessor.java214 public synchronized MessageChannel createMessageChannel(HostPort targetHostPort)
216 String key = MessageChannel.getKey(targetHostPort, "TCP");
246 public synchronized MessageChannel createMessageChannel(InetAddress host, int port)
249 String key = MessageChannel.getKey(host, port, "TCP");
H A DTLSMessageProcessor.java230 public synchronized MessageChannel createMessageChannel(HostPort targetHostPort)
232 String key = MessageChannel.getKey(targetHostPort, "TLS");
262 public synchronized MessageChannel createMessageChannel(InetAddress host, int port)
265 String key = MessageChannel.getKey(host, port, "TLS");
H A DMessageProcessor.java282 * @return New MessageChannel for this processor.
284 public abstract MessageChannel createMessageChannel(HostPort targetHostPort)
290 * @return New MessageChannel for this processor.
292 public abstract MessageChannel createMessageChannel(InetAddress targetHost,
H A DUDPMessageProcessor.java309 public MessageChannel createMessageChannel(HostPort targetHostPort)
315 public MessageChannel createMessageChannel(InetAddress host, int port)
H A DSIPTransaction.java75 public abstract class SIPTransaction extends MessageChannel implements
190 private transient MessageChannel encapsulatedChannel;
329 MessageChannel newEncapsulatedChannel) {
472 * @return Encapsulated MessageChannel.
475 public MessageChannel getMessageChannel() {
1097 public void setEncapsulatedChannel(MessageChannel messageChannel) {
H A DTCPMessageChannel.java64 public class TCPMessageChannel extends MessageChannel implements SIPMessageListener, Runnable,
168 this.key = MessageChannel.getKey(peerAddress, peerPort, "TCP");
701 this.key = MessageChannel.getKey(this.peerAddress, this.peerPort, "TCP");
H A DTLSMessageChannel.java72 public final class TLSMessageChannel extends MessageChannel implements SIPMessageListener,
182 this.key = MessageChannel.getKey(peerAddress, peerPort, "TLS");
680 this.key = MessageChannel.getKey(this.peerAddress, this.peerPort, "TLS");
H A DMessageChannel.java70 public abstract class MessageChannel { class
209 MessageChannel messageChannel = messageProcessor.createMessageChannel(
H A DSIPTransactionStack.java1143 MessageChannel requestMessageChannel) {
1248 MessageChannel responseMessageChannel) {
1342 public MessageChannel createMessageChannel(SIPRequest request, MessageProcessor mp,
1355 MessageChannel mc = mp.createMessageChannel(targetHostPort);
1376 * Creates a client transaction that encapsulates a MessageChannel. Useful for implementations
1382 MessageChannel encapsulatedMessageChannel) {
1389 * Creates a server transaction that encapsulates a MessageChannel. Useful for implementations
1394 public SIPServerTransaction createServerTransaction(MessageChannel encapsulatedMessageChannel) {
1990 * Creates a new MessageChannel for a given Hop.
1996 * @param nextHop Hop to create a MessageChannel t
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8MessageChannelCustom.cpp39 #include "core/dom/MessageChannel.h"
51 RefPtr<MessageChannel> obj = MessageChannel::create(context);
55 // Create references from the MessageChannel wrapper to the two
57 // stay alive as long as the MessageChannel wrapper is around.
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DSharedWorker.cpp37 #include "core/dom/MessageChannel.h"
61 RefPtr<MessageChannel> channel = MessageChannel::create(context);
/external/chromium/chrome/browser/extensions/
H A Dextension_message_service.h52 struct MessageChannel;
120 typedef std::map<int, MessageChannel*> MessageChannelMap;
H A Dextension_message_service.cc44 struct ExtensionMessageService::MessageChannel { struct in class:ExtensionMessageService
229 MessageChannel* channel(new MessageChannel);
/external/nist-sip/java/gov/nist/javax/sip/
H A DNistSipMessageFactoryImpl.java62 * is the MessageChannel abstraction for this SIPServerRequest.
65 MessageChannel messageChannel) {
98 * is the MessageChannel abstraction for this SIPServerResponse
101 SIPResponse sipResponse, MessageChannel messageChannel) {
H A DListeningPointImpl.java251 MessageChannel messageChannel = this.messageProcessor.createMessageChannel(targetHostPort);
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dmessage_service.h65 struct MessageChannel;
160 typedef std::map<int, MessageChannel*> MessageChannelMap;
178 void AddChannel(MessageChannel* channel, int receiver_port_id);
H A Dmessage_service.cc69 struct MessageService::MessageChannel { struct in class:extensions::MessageService
322 scoped_ptr<MessageChannel> channel(new MessageChannel());
412 MessageChannel* channel(new MessageChannel);
439 void MessageService::AddChannel(MessageChannel* channel, int receiver_port_id) {
469 MessageChannel* channel = channel_iter->second;

Completed in 318 milliseconds

123