Home
last modified time | relevance | path

Searched full:attributes (Results 1 – 25 of 577) sorted by relevance

12345678910>>...24

/hardware/interfaces/automotive/can/1.0/default/libnl++/
DAttributes.cpp17 #include <libnl++/Attributes.h>
21 Attributes::Attributes() {} in Attributes() function in android::nl::Attributes
23 Attributes::Attributes(Buffer<nlattr> buffer) : Buffer<nlattr>(buffer) {} in Attributes() function in android::nl::Attributes
25 const Attributes::Index& Attributes::index() const { in index()
38 bool Attributes::contains(nlattrtype_t attrtype) const { in contains()
45 Attributes Attributes::parse(Buffer<nlattr> buf) { in parse()
50 std::string Attributes::parse(Buffer<nlattr> buf) { in parse()
65 uint8_t Attributes::parse(Buffer<nlattr> buf) { in parse()
70 uint16_t Attributes::parse(Buffer<nlattr> buf) { in parse()
75 uint32_t Attributes::parse(Buffer<nlattr> buf) { in parse()
[all …]
/hardware/interfaces/automotive/can/1.0/default/libnl++/include/libnl++/
DMessage.h19 #include <libnl++/Attributes.h>
52 const auto attributes = buf.data<nlattr>(sizeof(T)); in parse() local
54 return Message<T>(buf, nlHeader, dataHeader, attributes); in parse()
90 * Netlink message attributes.
92 const Attributes attributes; variable
98 Attributes attributes) in Message() argument
99 : Buffer<nlmsghdr>(buffer), header(nlHeader), data(dataHeader), attributes(attributes) {} in Message()
DAttributes.h32 * message attributes. The class doesn't own the underlying data, so the instance is valid as long
38 class Attributes : private Buffer<nlattr> {
43 Attributes();
50 Attributes(Buffer<nlattr> buffer);
69 * const auto flags = msg->attributes.
70 * get<nl::Attributes>(IFLA_AF_SPEC).
71 * get<nl::Attributes>(AF_INET6). // IFLA_AF_SPEC index lazy-calculated
73 * const auto& cacheinfo = msg->attributes.
74 * get<nl::Attributes>(IFLA_AF_SPEC). // new instance of IFLA_AF_SPEC index
75 * get<nl::Attributes>(AF_INET6). // IFLA_AF_SPEC index calculated again
[all …]
/hardware/interfaces/media/omx/1.0/
DIOmxStore.hal53 * Optional service attributes:
64 * List attributes that are service-specific (not node-specific).
66 * @return attributes The list of `Attribute`s that are specific to this
72 vec<ServiceAttribute> attributes
78 * Optional node attributes to describe supported values:
83 * Optional node attributes for audio nodes to describe supported values:
87 * Optional node attributes for video nodes to describe supported values:
98 * Required node attributes for video nodes that are required by Android to
103 * Optional node attributes for decoders to describe supported values:
108 * Optional node attributes for video decoders to describe supported values:
[all …]
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/vu-to-json/
Dextension.rb34 …# Keep track of all attributes defined throughout the document, as Asciidoctor will not do this au…
35 # See https://discuss.asciidoctor.org/asciidoctorj-and-document-attributes-tp5960p6525.html
36 document.playback_attributes(block.attributes)
39 if block.context == :open and block.attributes['refpage']
40 parent = block.attributes['refpage']
49 # Play back list attributes
50 document.playback_attributes(list.attributes)
55 … # Attribute definitions split lists, so no need to play back attributes between list items
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/ifdef-mismatch/
Dextension.rb17 attr_reader :attributes accessor in Asciidoctor.IfDefMismatchPreprocessorReader.CursorWithAttributes
20 def initialize cursor, attributes, line
21 @cursor, @attributes, @line = cursor, attributes, line
52 # ifeval conditionals do not have attributes, so store those slightly differently
62 if conditional.attributes == conditional_attributes(line)
95 extra_line = %(endif::#{conditional.attributes}[])
/hardware/google/gfxstream/host/tests/
DGLSnapshotPrograms_unittest.cpp68 std::vector<GlShaderVariable> attributes; member
114 ASSERT_EQ(m_program_state.attributes.size(), in changedStateCheck()
115 currentState.attributes.size()); in changedStateCheck()
116 for (int i = 0; i < currentState.attributes.size(); i++) { in changedStateCheck()
118 EXPECT_EQ(m_program_state.attributes[i].size, in changedStateCheck()
119 currentState.attributes[i].size); in changedStateCheck()
120 EXPECT_EQ(m_program_state.attributes[i].type, in changedStateCheck()
121 currentState.attributes[i].type); in changedStateCheck()
122 EXPECT_STREQ(m_program_state.attributes[i].name.data(), in changedStateCheck()
123 currentState.attributes[i].name.data()); in changedStateCheck()
[all …]
/hardware/qcom/sm8150/gps/android/2.0/
DAGnssRil.cpp110 Return<bool> AGnssRil::updateNetworkState_2_0(const V2_0::IAGnssRil::NetworkAttributes& attributes)… in updateNetworkState_2_0() argument
112 std::string apn = attributes.apn; in updateNetworkState_2_0()
116 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_METERED) { in updateNetworkState_2_0()
121 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_ROAMING) { in updateNetworkState_2_0()
125 mGnss->getGnssInterface()->updateConnectionStatus(attributes.isConnected, in updateNetworkState_2_0()
126 typeout, roaming, (NetworkHandle) attributes.networkHandle, apn); in updateNetworkState_2_0()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/xml/
Dgenerate-core-block.rb47 attributes = element.attributes
48 if element.attributes['offset']
49attributes['value'] = element.attribute('offset').content.to_i + extension_enum_offset
50 attributes.delete('offset')
54 attributes.each_pair do |key, value|
/hardware/qcom/sm7250/gps/android/2.0/
DAGnssRil.cpp110 Return<bool> AGnssRil::updateNetworkState_2_0(const V2_0::IAGnssRil::NetworkAttributes& attributes)… in updateNetworkState_2_0() argument
112 std::string apn = attributes.apn; in updateNetworkState_2_0()
116 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_METERED) { in updateNetworkState_2_0()
121 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_ROAMING) { in updateNetworkState_2_0()
125 mGnss->getGnssInterface()->updateConnectionStatus(attributes.isConnected, in updateNetworkState_2_0()
126 typeout, roaming, (NetworkHandle) attributes.networkHandle, apn); in updateNetworkState_2_0()
/hardware/qcom/sm7250/gps/android/2.1/
DAGnssRil.cpp110 Return<bool> AGnssRil::updateNetworkState_2_0(const V2_0::IAGnssRil::NetworkAttributes& attributes)… in updateNetworkState_2_0() argument
112 std::string apn = attributes.apn; in updateNetworkState_2_0()
116 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_METERED) { in updateNetworkState_2_0()
121 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_ROAMING) { in updateNetworkState_2_0()
125 mGnss->getGnssInterface()->updateConnectionStatus(attributes.isConnected, in updateNetworkState_2_0()
126 typeout, roaming, (NetworkHandle) attributes.networkHandle, apn); in updateNetworkState_2_0()
/hardware/qcom/sm8150/gps/android/2.1/
DAGnssRil.cpp110 Return<bool> AGnssRil::updateNetworkState_2_0(const V2_0::IAGnssRil::NetworkAttributes& attributes)… in updateNetworkState_2_0() argument
112 std::string apn = attributes.apn; in updateNetworkState_2_0()
116 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_METERED) { in updateNetworkState_2_0()
121 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_ROAMING) { in updateNetworkState_2_0()
125 mGnss->getGnssInterface()->updateConnectionStatus(attributes.isConnected, in updateNetworkState_2_0()
126 typeout, roaming, (NetworkHandle) attributes.networkHandle, apn); in updateNetworkState_2_0()
/hardware/interfaces/gnss/aidl/default/
DAGnssRil.cpp50 ndk::ScopedAStatus AGnssRil::updateNetworkState(const NetworkAttributes& attributes) { in updateNetworkState() argument
54 attributes.networkHandle, attributes.isConnected, attributes.capabilities, in updateNetworkState()
55 attributes.apn.c_str()); in updateNetworkState()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/spec-macros/
Dextension.rb23 def process parent, target, attributes
35 def process parent, target, attributes
56 if parent.document.attributes['cross-file-links']
59 …w(parent, :anchor, target, :type => :xref, :target => ('#' + target), :attributes => {'fragment' =…
65 def process parent, target, attributes
77 def process parent, target, attributes
83 def process parent, target, attributes
314 def process parent, target, attributes
/hardware/qcom/display/msm8909/libdisplayconfig/
DDisplayConfig.cpp214 DisplayAttributes attributes; in getDisplayAttributes() local
218 return attributes; in getDisplayAttributes()
227 attributes.vsync_period = tmpAttributes.vsyncPeriod; in getDisplayAttributes()
228 attributes.xres = tmpAttributes.xRes; in getDisplayAttributes()
229 attributes.yres = tmpAttributes.yRes; in getDisplayAttributes()
230 attributes.xdpi = tmpAttributes.xDpi; in getDisplayAttributes()
231 attributes.ydpi = tmpAttributes.yDpi; in getDisplayAttributes()
232 attributes.panel_type = MapDisplayPortType(tmpAttributes.panelType); in getDisplayAttributes()
233 attributes.is_yuv = tmpAttributes.isYuv; in getDisplayAttributes()
236 return attributes; in getDisplayAttributes()
/hardware/qcom/display/msm8909w_3100/libdisplayconfig/
DDisplayConfig.cpp214 DisplayAttributes attributes; in getDisplayAttributes() local
218 return attributes; in getDisplayAttributes()
227 attributes.vsync_period = tmpAttributes.vsyncPeriod; in getDisplayAttributes()
228 attributes.xres = tmpAttributes.xRes; in getDisplayAttributes()
229 attributes.yres = tmpAttributes.yRes; in getDisplayAttributes()
230 attributes.xdpi = tmpAttributes.xDpi; in getDisplayAttributes()
231 attributes.ydpi = tmpAttributes.yDpi; in getDisplayAttributes()
232 attributes.panel_type = MapDisplayPortType(tmpAttributes.panelType); in getDisplayAttributes()
233 attributes.is_yuv = tmpAttributes.isYuv; in getDisplayAttributes()
236 return attributes; in getDisplayAttributes()
/hardware/qcom/sm8150p/gps/android/2.0/
DAGnssRil.cpp109 Return<bool> AGnssRil::updateNetworkState_2_0(const V2_0::IAGnssRil::NetworkAttributes& attributes)… in updateNetworkState_2_0() argument
115 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_METERED) { in updateNetworkState_2_0()
120 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_ROAMING) { in updateNetworkState_2_0()
123 mGnss->getGnssInterface()->updateConnectionStatus(attributes.isConnected, in updateNetworkState_2_0()
124 typeout, roaming, (NetworkHandle) attributes.networkHandle); in updateNetworkState_2_0()
/hardware/qcom/sm7150/gps/android/2.0/
DAGnssRil.cpp109 Return<bool> AGnssRil::updateNetworkState_2_0(const V2_0::IAGnssRil::NetworkAttributes& attributes)… in updateNetworkState_2_0() argument
115 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_METERED) { in updateNetworkState_2_0()
120 if (attributes.capabilities & IAGnssRil::NetworkCapability::NOT_ROAMING) { in updateNetworkState_2_0()
123 mGnss->getGnssInterface()->updateConnectionStatus(attributes.isConnected, in updateNetworkState_2_0()
124 typeout, roaming, (NetworkHandle) attributes.networkHandle); in updateNetworkState_2_0()
/hardware/qcom/wlan/wcn6740/qcwcn/wifi_hal/
Dqca-vendor_copy.h103 * NL80211_CMD_ROAM event with optional attributes including information
105 * enum qca_wlan_vendor_attr_roam_auth attributes. Only used
110 * hostapd. Uses enum qca_wlan_vendor_attr_acs_offload attributes.
137 * Attributes defined in enum qca_wlan_vendor_attr_get_wifi_info.
140 * based on enum wifi_logger_supported_features. Attributes defined in
145 * attribute for this command. Attributes defined in
149 * capabilities of the driver, parameters includes the attributes defined
153 * sending of certain periodic IP packet to firmware, attributes defined in
159 * and RSSI value that was breached. Attributes defined in
163 * Data Path (NDP) related operations, attributes defined in
[all …]
/hardware/interfaces/graphics/composer/aidl/android/hardware/graphics/composer3/
DLayerLifecycleBatchCommandType.aidl26 * Layer attributes are being modified for already created layer.
31 * before processing the other attributes in the LayerCommand.
36 * before processing the other attributes in the LayerCommand.
/hardware/qcom/wlan/wcn6740/qcwcn/wpa_supplicant_8_lib/
Dqca-vendor_copy.h72 * NL80211_CMD_ROAM event with optional attributes including information
74 * enum qca_wlan_vendor_attr_roam_auth attributes. Only used
79 * hostapd. Uses enum qca_wlan_vendor_attr_acs_offload attributes.
106 * Attributes defined in enum qca_wlan_vendor_attr_get_wifi_info.
109 * based on enum wifi_logger_supported_features. Attributes defined in
114 * attribute for this command. Attributes defined in
118 * capabilities of the driver, parameters includes the attributes defined
122 * sending of certain periodic IP packet to firmware, attributes defined in
128 * and RSSI value that was breached. Attributes defined in
132 * Data Path (NDP) related operations, attributes defined in
[all …]
/hardware/qcom/wlan/legacy/qcwcn/wifi_hal/
Dqca-vendor_copy.h69 * NL80211_CMD_ROAM event with optional attributes including information
71 * enum qca_wlan_vendor_attr_roam_auth attributes. Only used
76 * hostapd. Uses enum qca_wlan_vendor_attr_acs_offload attributes.
103 * Attributes defined in enum qca_wlan_vendor_attr_get_wifi_info.
106 * based on enum wifi_logger_supported_features. Attributes defined in
111 * attribute for this command. Attributes defined in
115 * capabilities of the driver, parameters includes the attributes defined
119 * sending of certain periodic IP packet to firmware, attributes defined in
125 * and RSSI value that was breached. Attributes defined in
129 * Data Path (NDP) related operations, attributes defined in
[all …]
/hardware/interfaces/graphics/mapper/2.1/
DIMapper.hal64 * individual buffer attributes is optional.
67 * @param descriptorInfo specifies the attributes of the buffer.
111 * @param descriptorInfo specifies the attributes of the descriptor.
113 * BAD_VALUE when any of the specified attributes is
117 * UNSUPPORTED when any of the specified attributes is
/hardware/interfaces/audio/aidl/default/
DEngineConfigXmlConverter.cpp77 bool isDefaultAudioAttributes(const AudioAttributes& attributes) { in isDefaultAudioAttributes() argument
78 return ((attributes.contentType == AudioContentType::UNKNOWN) && in isDefaultAudioAttributes()
79 (attributes.usage == AudioUsage::UNKNOWN) && in isDefaultAudioAttributes()
80 (attributes.source == AudioSource::DEFAULT) && (attributes.flags == 0) && in isDefaultAudioAttributes()
81 (attributes.tags.empty())); in isDefaultAudioAttributes()
138 aidlAttributesGroup.attributes = in convertAttributesGroupToAidl()
148 aidlAttributesGroup.attributes.push_back(VALUE_OR_FATAL(convertAudioAttributesToAidl( in convertAttributesGroupToAidl()
156 LOG(ERROR) << __func__ << " Review Audio Policy config: no audio attributes provided for " in convertAttributesGroupToAidl()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/VK_NV_external_memory_win32/
Dhandle_permissions.adoc5 [open,refpage='VkExportMemoryWin32HandleInfoNV',desc='Specify security attributes and access rights…
11 attributes and access rights for the memory object's external handle.
21 structure specifying security attributes of the handle.

12345678910>>...24