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

  /external/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/autotest/client/cros/tendo/n_faced_peerd/
peer.py 15 class Peer(dbus_property_exposer.DBusPropertyExposer):
19 """Construct a org.chromium.peerd.Peer DBus object.
23 @param peer_id: string peerd peer ID; a UUID.
24 @param is_self: True iff this object will servce as a self peer.
28 super(Peer, self).__init__(
55 @return dbus.String containing our peer ID.
64 @return dbus.UInt64 containing the last time this peer was seen
75 has to report a last seen time of 0 for the peer object representing
88 raise NotImplementedError('Peer.close() does not work properly')
92 """Update a service associated with this peer
    [all...]
  /external/autotest/client/cros/tendo/
peerd_dbus_helper.py 17 Peer = collections.namedtuple('Peer', ['uuid', 'last_seen', 'services'])
22 DBUS_INTERFACE_PEER = 'org.chromium.peerd.Peer'
112 peer = Peer(uuid=peer_properties[PEER_PROPERTY_ID],
115 peers.append(peer)
141 Return a Peer instance if peerd has found a matching peer.
145 @param uuid: string unique identifier of peer.
146 @return Peer tuple if a matching peer exists, None otherwise
    [all...]

Completed in 1981 milliseconds