HomeSort by relevance Sort by last modified time
    Searched refs:ArpClient (Results 1 - 11 of 11) sorted by null

  /system/connectivity/shill/
mock_arp_client.cc 21 MockArpClient::MockArpClient() : ArpClient(0) {}
arp_client.h 31 // ArpClient task of creating ARP-capable sockets, as well as
34 class ArpClient {
36 explicit ArpClient(int interface_index);
37 virtual ~ArpClient();
82 DISALLOW_COPY_AND_ASSIGN(ArpClient);
arp_client.cc 33 const size_t ArpClient::kArpOpOffset = sizeof(arphdr) - sizeof(uint16_t);
36 const size_t ArpClient::kMaxArpPacketLength =
39 ArpClient::ArpClient(int interface_index)
44 ArpClient::~ArpClient() {}
46 bool ArpClient::StartReplyListener() {
50 bool ArpClient::StartRequestListener() {
54 bool ArpClient::Start(uint16_t arp_opcode) {
63 void ArpClient::Stop()
    [all...]
mock_arp_client.h 28 class MockArpClient : public ArpClient {
passive_link_monitor.h 27 class ArpClient;
80 // ArpClient instance for monitoring ARP requests.
81 std::unique_ptr<ArpClient> arp_client_;
93 // IOCallback that fires when the socket associated with our ArpClient
active_link_monitor.h 34 class ArpClient;
162 // ArpClient instance used for performing link tests.
163 std::unique_ptr<ArpClient> arp_client_;
196 // IOCallback that fires when the socket associated with our ArpClient
connection_diagnostics.h 34 class ArpClient;
349 std::unique_ptr<ArpClient> arp_client_;
passive_link_monitor.cc 54 new ArpClient(connection ? connection->interface_index() : 0)),
arp_client_unittest.cc 76 size_t GetMaxArpPacketLength() { return ArpClient::kMaxArpPacketLength; }
82 // Owned by ArpClient, and tracked here only for mocks.
84 ArpClient client_;
active_link_monitor.cc 68 new ArpClient(connection ? connection->interface_index() : 0)),
319 // ARP header if not known. The ArpClient will translate an all-zeroes
connection_diagnostics.cc 167 arp_client_(new ArpClient(connection_->interface_index())),
    [all...]

Completed in 140 milliseconds