OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Peer
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/v8/tools/testrunner/objects/
peer.py
29
class
Peer
(object):
39
self.trusting_me = False # This
peer
trusts my public key.
40
self.trusted = False # I trust this
peer
's public key.
43
return ("
Peer
at %s, jobs: %d, performance: %.2f, trust I/O: %s/%s" %
48
"""Adds tests from |shell| to this
peer
.
63
"""Forcibly adds another test to this
peer
, disregarding needed_work."""
73
"""Creates a JSON serializable representation of this
Peer
."""
78
"""Creates a
Peer
object built from a packed representation."""
80
return
Peer
(packed[0], packed[1], packed[2], pubkey_dummy)
/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/chromium_org/webkit/child/
resource_loader_bridge.h
13
// In turn, the bridge's owner on the WebKit end will implement the
Peer
124
// within webkit. The
Peer
and it's bridge should have identical lifetimes
130
class WEBKIT_CHILD_EXPORT
Peer
{
185
virtual ~
Peer
() {}
197
// the
peer
's methods will be called asynchronously to report various events.
198
virtual bool Start(
Peer
*
peer
) = 0;
203
// the
peer
is still valid.
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
WorkerThreadableWebSocketChannel.h
80
// Generated by the bridge. The
Peer
and its bridge should have identical
82
class
Peer
: public WebSocketChannelClient {
83
WTF_MAKE_NONCOPYABLE(
Peer
); WTF_MAKE_FAST_ALLOCATED;
87
static
Peer
* create(PassRefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ExecutionContext* context, const String& taskMode, const String& sourceURLAtConnection, unsigned lineNumberAtConnection)
89
return new
Peer
(clientWrapper, loaderProxy, context, taskMode, sourceURLAtConnection, lineNumberAtConnection);
91
~
Peer
();
114
Peer
(PassRefPtr<ThreadableWebSocketChannelClientWrapper>, WorkerLoaderProxy&, ExecutionContext*, const String& taskMode, const String& sourceURL, unsigned lineNumber);
131
// Bridge for
Peer
. Running on the worker thread.
159
static void setWebSocketChannel(ExecutionContext*, Bridge* thisPtr,
Peer
*, PassRefPtr<ThreadableWebSocketChannelClientWrapper>);
161
// Executed on the main thread to create a
Peer
for this bridge
[
all
...]
WorkerThreadableWebSocketChannel.cpp
162
WorkerThreadableWebSocketChannel::
Peer
::
Peer
(PassRefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ExecutionContext* context, const String& taskMode, const String& sourceURL, unsigned lineNumber)
178
WorkerThreadableWebSocketChannel::
Peer
::~
Peer
()
185
void WorkerThreadableWebSocketChannel::
Peer
::connect(const KURL& url, const String& protocol)
199
void WorkerThreadableWebSocketChannel::
Peer
::send(const String& message)
208
void WorkerThreadableWebSocketChannel::
Peer
::send(const ArrayBuffer& binaryData)
217
void WorkerThreadableWebSocketChannel::
Peer
::send(PassRefPtr<BlobDataHandle> blobData)
232
void WorkerThreadableWebSocketChannel::
Peer
::bufferedAmount()
241
void WorkerThreadableWebSocketChannel::
Peer
::close(int code, const String& reason
397
OwnPtr<WorkerThreadableWebSocketChannel::Peer>
peer
= adoptPtr(m_
peer
);
variable
425
Peer*
peer
= Peer::create(clientWrapper, *loaderProxy, context, taskMode, sourceURL, lineNumber);
local
607
OwnPtr<Peer>
peer
= adoptPtr(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.
/art/jdwpspy/
Net.cpp
36
struct
Peer
{
58
Peer
dbg;
59
Peer
vm;
417
static bool haveFullPacket(
Peer
* pPeer)
437
static void consumeBytes(
Peer
* pPeer, int count)
525
static bool handlePacket(
Peer
* pDst,
Peer
* pSrc)
554
static bool handleIncoming(
Peer
* pWritePeer,
Peer
* pReadPeer)
Completed in 380 milliseconds