Home
last modified time | relevance | path

Searched refs:Tag (Results 1 – 4 of 4) sorted by relevance

/trusty/user/app/sample/rust-hello-world/
Dlib.rs35 enum Tag { enum
43 tag: Tag,
50 impl From<u8> for Tag { implementation
53 TAG_STRING => Tag::TagString, in from()
54 _ => Tag::TagError, in from()
75 tag: Tag::from(bytes[0]), in deserialize()
96 Tag::TagString => &TAG_STRING, in serialize()
97 Tag::TagError => &TAG_ERROR, in serialize()
146 tag: Tag::TagString, in on_message()
222 tag: Tag::TagString, in hello_world_test()
/trusty/user/app/sample/stats-test/include/
Dconsumer_ctl.h42 VendorAtomValue::Tag tag;
/trusty/user/base/experimental/lib/tidl/include/lib/tidl/android-base/
Dunique_fd.h137 -> decltype(T::Tag(fd, old_tag, new_tag), void()) {
138 T::Tag(fd, old_tag, new_tag);
164 static void Tag(int fd, void* old_addr, void* new_addr) { in Tag() function
/trusty/user/app/sample/stats-test/consumer/
Dconsumer.cpp247 VendorAtomValue::Tag tag = input_value.getTag(); in reportVendorAtom()