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

  /external/autotest/client/common_lib/cros/network/
ping_runner.py 64 class PingResult(object):
111 """Construct a PingResult from ping command output.
118 sent = PingResult._regex_int_from_string('([0-9]+) packets transmitted',
120 received = PingResult._regex_int_from_string('([0-9]+) received',
122 loss = PingResult._regex_int_from_string('([0-9]+)% packet loss',
130 return PingResult(sent, received, loss,
138 return PingResult(sent, received, loss)
144 """Construct a PingResult.
155 super(PingResult, self).__init__()
225 return PingResult(ping_config.count, 0, 100
    [all...]
  /external/webrtc/webrtc/base/
winping.h 77 enum PingResult { PING_FAIL, PING_INVALID_PARAMS,
79 PingResult Ping(IPAddress ip,

Completed in 301 milliseconds