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

  /system/connectivity/shill/
socket_info.cc 17 #include "shill/socket_info.h"
50 SocketInfo::SocketInfo(const SocketInfo& socket_info)
51 : connection_state_(socket_info.connection_state_),
52 local_ip_address_(socket_info.local_ip_address_),
53 local_port_(socket_info.local_port_),
54 remote_ip_address_(socket_info.remote_ip_address_),
55 remote_port_(socket_info.remote_port_),
56 transmit_queue_value_(socket_info.transmit_queue_value_),
57 receive_queue_value_(socket_info.receive_queue_value_),
58 timer_state_(socket_info.timer_state_)
    [all...]
socket_info_reader.cc 79 SocketInfo socket_info; local
80 if (ParseSocketInfo(line, &socket_info))
81 info_list->push_back(socket_info);
87 SocketInfo* socket_info) {
101 socket_info->set_local_ip_address(ip_address);
102 socket_info->set_local_port(port);
107 socket_info->set_remote_ip_address(ip_address);
108 socket_info->set_remote_port(port);
115 socket_info->set_connection_state(connection_state);
122 socket_info->set_transmit_queue_value(transmit_queue_value)
    [all...]
socket_info.h 69 SocketInfo(const SocketInfo& socket_info);
72 SocketInfo& operator=(const SocketInfo& socket_info);
74 // Returns true if this socket info and |socket_info| refer to the same
77 bool IsSameSocketAs(const SocketInfo& socket_info) const;
socket_info_reader.h 27 #include "shill/socket_info.h"
63 bool ParseSocketInfo(const std::string& input, SocketInfo* socket_info);

Completed in 51 milliseconds