Home
last modified time | relevance | path

Searched refs:Uint (Results 1 – 10 of 10) sorted by relevance

/hardware/interfaces/automotive/can/1.0/default/libnl++/protocols/route/
DLink.cpp37 {IFLA_MTU, {"MTU", DataType::Uint}},
38 {IFLA_LINK, {"LINK", DataType::Uint}},
43 {IFLA_MASTER, {"MASTER", DataType::Uint}},
46 {IFLA_TXQLEN, {"TXQLEN", DataType::Uint}},
48 {IFLA_WEIGHT, {"WEIGHT", DataType::Uint}},
49 {IFLA_OPERSTATE, {"OPERSTATE", DataType::Uint}},
50 {IFLA_LINKMODE, {"LINKMODE", DataType::Uint}},
58 {IFLA_NET_NS_PID, {"NET_NS_PID", DataType::Uint}},
60 {IFLA_NUM_VF, {"NUM_VF", DataType::Uint}},
70 {IFLA_INET6_FLAGS, {"INET6_FLAGS", DataType::Uint}},
[all …]
/hardware/interfaces/automotive/can/1.0/default/libnl++/protocols/generic/families/
DNl80211.cpp307 {NL80211_ATTR_WIPHY, {"WIPHY", DataType::Uint}},
310 {NL80211_ATTR_IFINDEX, {"IFINDEX", DataType::Uint}},
312 {NL80211_ATTR_IFTYPE, {"IFTYPE", DataType::Uint}},
338 {NL80211_FREQUENCY_ATTR_FREQ, {"FREQ", DataType::Uint}},
343 {NL80211_FREQUENCY_ATTR_MAX_TX_POWER, {"MAX_TX_POWER", DataType::Uint}},
344 {NL80211_FREQUENCY_ATTR_DFS_STATE, {"DFS_STATE", DataType::Uint}},
345 {NL80211_FREQUENCY_ATTR_DFS_TIME, {"DFS_TIME", DataType::Uint}},
350 {NL80211_FREQUENCY_ATTR_DFS_CAC_TIME, {"DFS_CAC_TIME", DataType::Uint}},
357 {NL80211_FREQUENCY_ATTR_OFFSET, {"OFFSET", DataType::Uint}},
367 {NL80211_BITRATE_ATTR_RATE, {"RATE", DataType::Uint}},
[all …]
/hardware/interfaces/automotive/can/1.0/default/libnl++/protocols/generic/
DCtrl.cpp42 {CTRL_ATTR_FAMILY_ID, {"FAMILY_ID", DataType::Uint}},
44 {CTRL_ATTR_VERSION, {"VERSION", DataType::Uint}},
45 {CTRL_ATTR_HDRSIZE, {"HDRSIZE", DataType::Uint}},
46 {CTRL_ATTR_MAXATTR, {"MAXATTR", DataType::Uint}},
49 {CTRL_ATTR_OP_ID, {"ID", DataType::Uint}},
50 {CTRL_ATTR_OP_FLAGS, {"FLAGS", DataType::Uint}},
56 {CTRL_ATTR_MCAST_GRP_ID, {"ID", DataType::Uint}},
/hardware/interfaces/identity/support/tests/
Dcppbor_test.cpp63 Uint val(testCase.first); in TEST()
71 EXPECT_EQ("\x00"s, Uint(0u).toString()); in TEST()
72 EXPECT_EQ("\x01"s, Uint(1u).toString()); in TEST()
73 EXPECT_EQ("\x0a"s, Uint(10u).toString()); in TEST()
74 EXPECT_EQ("\x17"s, Uint(23u).toString()); in TEST()
75 EXPECT_EQ("\x18\x18"s, Uint(24u).toString()); in TEST()
76 EXPECT_EQ("\x18\x19"s, Uint(25u).toString()); in TEST()
77 EXPECT_EQ("\x18\x64"s, Uint(100u).toString()); in TEST()
78 EXPECT_EQ("\x19\x03\xe8"s, Uint(1000u).toString()); in TEST()
79 EXPECT_EQ("\x1a\x00\x0f\x42\x40"s, Uint(1000000u).toString()); in TEST()
[all …]
/hardware/interfaces/identity/support/include/cppbor/
DREADME.md23 * `Uint` corresponds to major type 0, and can hold unsigned integers
30 * `Int` is an abstract base of `Uint` and `Nint` that facilitates
50 * Signed and unsigned integers convert to `Uint` or `Nint`, as
70 cppbor::Uint val(0);
94 an integer literal or variable, a `Uint` or `Nint` is added, depending
/hardware/interfaces/automotive/can/1.0/default/libnl++/protocols/common/
DError.cpp34 {NLMSGERR_ATTR_OFFS, {"OFFS", DataType::Uint}},
/hardware/interfaces/automotive/can/1.0/default/libnl++/protocols/
DMessageDefinition.h82 Uint, enumerator
/hardware/interfaces/identity/aidl/vts/
DUtil.h78 valueCbor = cppbor::Uint(value).encode(); in TestEntryData()
/hardware/interfaces/automotive/can/1.0/default/libnl++/
Dprinter.cpp145 case DataType::Uint: in toStream()
/hardware/interfaces/identity/support/src/
Dcppbor_parse.cpp59 std::unique_ptr<Item> item = std::make_unique<Uint>(value); in handleUint()