Searched defs:socket_info (Results 1 - 2 of 2) sorted by relevance

/system/connectivity/shill/
H A Dsocket_info.cc17 #include "shill/socket_info.h"
50 SocketInfo::SocketInfo(const SocketInfo& socket_info) argument
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
63 operator =(const SocketInfo& socket_info) argument
[all...]
H A Dsocket_info_reader.cc79 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
86 ParseSocketInfo(const string& input, SocketInfo* socket_info) argument
[all...]

Completed in 43 milliseconds