Searched defs:GetLength (Results 1 - 3 of 3) sorted by relevance

/system/connectivity/shill/net/
H A Dip_address.h102 size_t GetLength() const { return address_.GetLength(); } function in class:shill::IPAddress
106 GetLength() == GetAddressLength(family_);
H A Dbyte_string.cc42 return (GetLength() == 0) ? nullptr : &data_.front();
46 return (GetLength() == 0) ? nullptr : &data_.front();
49 size_t ByteString::GetLength() const { function in class:shill::ByteString
54 if (offset > GetLength()) {
55 offset = GetLength();
57 if (length > GetLength() - offset) {
58 length = GetLength() - offset;
83 if (val == nullptr || GetLength() != sizeof(*val)) {
101 size_t length = GetLength();
133 if (GetLength() !
[all...]
H A Dnetlink_packet.cc51 size_t NetlinkPacket::GetLength() const { function in class:shill::NetlinkPacket
64 return GetPayload().GetLength() - consumed_bytes_;
76 consumed_bytes_ = GetPayload().GetLength();
87 consumed_bytes_ = std::min(payload_->GetLength(),
99 if (GetPayload().GetLength() < sizeof(*header)) {

Completed in 77 milliseconds