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

/system/connectivity/shill/net/
H A Dbyte_string.h30 class SHILL_EXPORT ByteString { class in namespace:shill
32 ByteString() {} function in class:shill::ByteString
33 ByteString(const ByteString& b);
35 explicit ByteString(const std::vector<unsigned char>& data) : data_(data) {} function in class:shill::ByteString
37 explicit ByteString(size_t length) : data_(length) {} function in class:shill::ByteString
39 ByteString(const unsigned char* data, size_t length) function in class:shill::ByteString
42 ByteString(const char* data, size_t length) function in class:shill::ByteString
45 ByteString(const signed char* data, size_t length) function in class:shill::ByteString
48 ByteString(cons function in class:shill::ByteString
[all...]
H A Dbyte_string.cc32 ByteString::ByteString(const ByteString& b) { function in class:shill::ByteString
36 ByteString& ByteString::operator=(const ByteString& b) {
41 unsigned char* ByteString::GetData() {
45 const unsigned char* ByteString::GetConstData() const {
49 size_t ByteString::GetLength() const {
53 ByteString ByteStrin
[all...]

Completed in 1482 milliseconds