HomeSort by relevance Sort by last modified time
    Searched defs:Peer (Results 1 - 6 of 6) sorted by null

  /external/chromium/chrome/browser/extensions/
extension_function_dispatcher.h 53 // The peer object allows us to notify ExtensionFunctions when we are
56 struct Peer : public base::RefCounted<Peer> {
57 explicit Peer(ExtensionFunctionDispatcher* dispatcher)
62 friend class base::RefCounted<Peer>;
64 ~Peer() {}
137 scoped_refptr<Peer> peer_;
  /external/webkit/Source/WebCore/websockets/
WorkerThreadableWebSocketChannel.h 79 // Generated by the bridge. The Peer and its bridge should have identical
81 class Peer : public WebSocketChannelClient {
82 WTF_MAKE_NONCOPYABLE(Peer); WTF_MAKE_FAST_ALLOCATED;
84 static Peer* create(RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const KURL& url, const String& protocol)
86 return new Peer(clientWrapper, loaderProxy, context, taskMode, url, protocol);
88 ~Peer();
103 Peer(RefPtr<ThreadableWebSocketChannelClientWrapper>, WorkerLoaderProxy&, ScriptExecutionContext*, const String& taskMode, const KURL&, const String& protocol);
111 // Bridge for Peer. Running on the worker thread.
133 static void setWebSocketChannel(ScriptExecutionContext*, Bridge* thisPtr, Peer*, RefPtr<ThreadableWebSocketChannelClientWrapper>);
135 // Executed on the main thread to create a Peer for this bridge
    [all...]
WorkerThreadableWebSocketChannel.cpp 111 WorkerThreadableWebSocketChannel::Peer::Peer(RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const KURL& url, const String& protocol)
120 WorkerThreadableWebSocketChannel::Peer::~Peer()
127 void WorkerThreadableWebSocketChannel::Peer::connect()
141 void WorkerThreadableWebSocketChannel::Peer::send(const String& message)
156 void WorkerThreadableWebSocketChannel::Peer::bufferedAmount()
165 void WorkerThreadableWebSocketChannel::Peer::close()
174 void WorkerThreadableWebSocketChannel::Peer::disconnect()
183 void WorkerThreadableWebSocketChannel::Peer::suspend(
248 Peer* peer = Peer::create(clientWrapper, thisPtr->m_loaderProxy, context, taskMode, url, protocol); local
361 Peer* peer = m_peer; local
    [all...]
  /external/chromium/webkit/glue/
resource_loader_bridge.h 14 // In turn, the bridge's owner on the WebKit end will implement the Peer
270 // within webkit. The Peer and it's bridge should have identical lifetimes
276 class Peer {
278 virtual ~Peer() {}
364 // the peer's methods will be called asynchronously to report various events.
365 virtual bool Start(Peer* peer) = 0;
370 // the peer is still valid.
  /development/tools/jdwpspy/
Net.cpp 33 typedef struct Peer {
41 } Peer;
55 Peer dbg;
56 Peer vm;
416 static bool haveFullPacket(Peer* pPeer)
436 static void consumeBytes(Peer* pPeer, int count)
522 static bool handlePacket(Peer* pDst, Peer* pSrc)
551 static bool handleIncoming(Peer* pWritePeer, Peer* pReadPeer
    [all...]
  /system/core/libcutils/
mq.c 63 /** Request for a connection to another peer. */
66 /** A connection to another peer. */
88 // TODO: Use custom headers for master->peer, peer->master, peer->peer.
100 /** A packet which will be sent to a peer. */
107 /** Connection to peer. Used with CONNECTION. */
124 /** Represents a remote peer. */
127 /** Local peer state. You typically have one peer per process. *
191 Peer* peer; member in struct:PeerProxy
304 Peer* peer = peerProxy->peer; local
315 Peer* peer = peerProxy->peer; local
783 Peer* peer = masterProxy->peer; local
895 Peer* peer = masterProxy->peer; local
1094 Peer* peer = calloc(1, sizeof(Peer)); local
1134 Peer* peer = localPeer; local
1202 Peer* peer = localPeer; local
    [all...]

Completed in 477 milliseconds