Searched defs:interfaces (Results 1 - 10 of 10) sorted by relevance

/system/libvintf/include/vintf/
H A DManifestHal.h42 std::map<std::string, HalInterface> interfaces; member in struct:android::vintf::ManifestHal
H A DMatrixHal.h40 std::map<std::string, HalInterface> interfaces; member in struct:android::vintf::MatrixHal
/system/tools/aidl/tests/
H A Dend_to_end_tests.cpp44 void AddStubAidls(const char** parcelables, const char** interfaces, argument
50 for ( ; *interfaces; ++interfaces) {
51 io_delegate_.AddStubInterface(*interfaces);
/system/connectivity/wificond/
H A Dserver.cpp182 ss << "Cached interfaces list from kernel message: " << endl;
208 vector<InterfaceInfo> interfaces; local
210 netlink_utils_->GetInterfaces(wiphy_index, &interfaces)) {
211 for (InterfaceInfo& interface : interfaces) {
225 // In the future we may support multiple interfaces at once. However,
227 LOG(ERROR) << "Cannot create AP interface when other interfaces exist";
243 LOG(ERROR) << "Failed to get interfaces info from kernel";
250 // p2p interface from station interfaces.
251 // Currently NAN interfaces also use station type.
252 // We should blacklist NAN interfaces a
[all...]
/system/connectivity/wificond/tests/
H A Dnetlink_utils_unittest.cpp302 vector<InterfaceInfo> interfaces; local
303 EXPECT_TRUE(netlink_utils_->GetInterfaces(kFakeWiphyIndex, &interfaces));
304 EXPECT_TRUE(interfaces.size() == 1);
305 EXPECT_EQ(kFakeInterfaceIndex, interfaces[0].index);
306 EXPECT_EQ(string(kFakeInterfaceName), interfaces[0].name);
307 EXPECT_EQ(if_mac_addr, interfaces[0].mac_address);
344 vector<InterfaceInfo> interfaces; local
345 EXPECT_TRUE(netlink_utils_->GetInterfaces(kFakeWiphyIndex, &interfaces));
346 EXPECT_TRUE(interfaces.size() == 1);
347 EXPECT_EQ(kFakeInterfaceIndex, interfaces[
397 vector<InterfaceInfo> interfaces; local
417 vector<InterfaceInfo> interfaces; local
[all...]
/system/core/adf/libadf/
H A Dadf.cpp140 adf_id_t *interfaces, size_t n_interfaces,
148 data.interfaces = interfaces;
163 adf_id_t *interfaces, __u32 n_interfaces,
173 data.interfaces = (uintptr_t)interfaces;
222 ssize_t adf_interfaces(struct adf_device *dev, adf_id_t **interfaces) argument
227 return adf_find_nodes(pattern, interfaces);
231 adf_id_t overlay_engine, adf_id_t **interfaces)
244 return adf_id_vector_to_array(ids, interfaces);
139 adf_device_post(struct adf_device *dev, adf_id_t *interfaces, size_t n_interfaces, struct adf_buffer_config *bufs, size_t n_bufs, void *custom_data, size_t custom_data_size) argument
162 adf_device_post_v2(struct adf_device *dev, adf_id_t *interfaces, __u32 n_interfaces, struct adf_buffer_config *bufs, __u32 n_bufs, void *custom_data, __u64 custom_data_size, enum adf_complete_fence_type complete_fence_type, int *complete_fence) argument
230 adf_interfaces_for_overlay_engine(struct adf_device *dev, adf_id_t overlay_engine, adf_id_t **interfaces) argument
[all...]
/system/core/adf/libadf/include/video/
H A Dadf.h97 __u32 __user * interfaces; member in struct:adf_post_config
109 __u64 interfaces; member in struct:adf_post_config_v2
/system/core/adf/libadf/original-kernel-headers/video/
H A Dadf.h146 * @n_interfaces: number of interfaces targeted by the flip (input)
147 * @interfaces: ids of interfaces targeted by the flip (input)
157 __u32 __user *interfaces; member in struct:adf_post_config
171 * @n_interfaces: number of interfaces targeted by the flip (input)
172 * @interfaces: ids of interfaces targeted by the flip (input)
184 __u64 interfaces; /* __u32 * packed into __u64 */ member in struct:adf_post_config_v2
215 * allocated by a different ADF interface, even if the two interfaces belong to
/system/libvintf/
H A Dparse_xml.cpp489 appendChildren(root, halInterfaceConverter, iterateValues(hal.interfaces), d);
492 std::vector<HalInterface> interfaces; variable
497 !parseChildren(root, halInterfaceConverter, &interfaces)) {
500 for (auto&& interface : interfaces) {
502 auto res = object->interfaces.emplace(std::move(name), std::move(interface));
593 appendChildren(root, halInterfaceConverter, iterateValues(hal.interfaces), d);
596 std::vector<HalInterface> interfaces; variable
601 !parseChildren(root, halInterfaceConverter, &interfaces)) {
628 object->interfaces.clear();
629 for (auto &&interface : interfaces) {
[all...]
/system/tools/aidl/
H A Dast_java.h359 std::vector<const Type*> interfaces; member in struct:android::aidl::java::Class

Completed in 199 milliseconds