HomeSort by relevance Sort by last modified time
    Searched defs:NL80211Attr (Results 1 - 2 of 2) sorted by null

  /system/connectivity/wificond/net/
nl80211_attribute.h 65 class NL80211Attr : public BaseNL80211Attr {
67 NL80211Attr(int id, T value) {
70 "Failed to create NL80211Attr class with non-integral type");
80 explicit NL80211Attr(const std::vector<uint8_t>& data) {
84 ~NL80211Attr() override = default;
105 }; // class NL80211Attr for POD-types
108 class NL80211Attr<std::vector<uint8_t>> : public BaseNL80211Attr {
110 NL80211Attr(int id, const std::vector<uint8_t>& raw_buffer);
111 explicit NL80211Attr(const std::vector<uint8_t>& data);
112 ~NL80211Attr() override = default
    [all...]
nl80211_attribute.cpp 26 template class NL80211Attr<uint8_t>;
27 template class NL80211Attr<uint16_t>;
28 template class NL80211Attr<uint32_t>;
29 template class NL80211Attr<uint64_t>;
30 template class NL80211Attr<vector<uint8_t>>;
31 template class NL80211Attr<string>;
127 // For NL80211Attr<std::vector<uint8_t>>
128 NL80211Attr<vector<uint8_t>>::NL80211Attr(int id,
132 NL80211Attr<vector<uint8_t>>::NL80211Attr
    [all...]

Completed in 1818 milliseconds