Home | History | Annotate | Download | only in base

Lines Matching defs:family_

52   IPAddress() : family_(AF_UNSPEC) {
56 explicit IPAddress(const in_addr& ip4) : family_(AF_INET) {
61 explicit IPAddress(const in6_addr& ip6) : family_(AF_INET6) {
65 explicit IPAddress(uint32 ip_in_host_byte_order) : family_(AF_INET) {
70 IPAddress(const IPAddress& other) : family_(other.family_) {
77 family_ = other.family_;
88 int family() const { return family_; }
115 int family_;