Home
last modified time | relevance | path

Searched refs:IFoo (Results 1 – 25 of 90) sorted by relevance

1234

/system/tools/hidl/test/version_test/
DAndroid.bp40 "bad1/version/1.0/IFoo.hal",
47 "bad3/version/2.2/IFoo.hal",
50 "bad3/version/2.4/IFoo.hal",
52 "bad3/version/2.5/IFoo.hal",
53 "bad4/version/1.0/IFoo.hal",
55 "bad4/version/2.2/IFoo.hal",
57 "bad5/version/2.2/IFoo.hal",
59 "good/version/1.0/IFoo.hal",
61 "good/version/2.2/IFoo.hal",
65 "good/version/2.4/IFoo.hal",
[all …]
/system/tools/hidl/test/version_test/good/version/2.4/
DIFoo.hal19 import @2.2::IFoo;
21 // Can extend @2.2::IFoo since @2.3 IFoo doesn't exist
22 interface IFoo extends @2.2::IFoo {
/system/tools/hidl/test/version_test/bad3/version/2.4/
DIFoo.hal19 import @2.2::IFoo;
21 // Can extend @2.2::IFoo since @2.3 IFoo doesn't exist
22 interface IFoo extends @2.2::IFoo {
/system/tools/hidl/hidl2aidl/test/
DAndroid.bp25 "1.0/IFoo.hal",
27 "1.1/IFoo.hal",
29 "1.2/IFoo.hal",
30 "2.0/IFoo.hal",
35 "hidl2aidl/IFoo.aidl",
44 "hidl2aidl2/IFoo.aidl",
Dndk_test_compile.cpp38 void testIFoo(const std::shared_ptr<aidl::hidl2aidl::IFoo>& foo) { in testIFoo()
63 void testIFoo2(const std::shared_ptr<aidl::hidl2aidl2::IFoo>& foo) { in testIFoo2()
Dcpp_test_compile.cpp43 void testIFoo(const sp<hidl2aidl::IFoo>& foo) { in testIFoo()
81 void testIFoo2(const sp<hidl2aidl2::IFoo>& foo) { in testIFoo2()
/system/tools/hidl/test/version_test/good/version/2.5/
DIFoo.hal19 import @2.4::IFoo;
21 // Must extend @2.4::IFoo
22 interface IFoo extends @2.4::IFoo {
/system/tools/hidl/test/version_test/bad3/version/2.5/
DIFoo.hal19 import @2.4::IFoo;
21 // Must extend @2.4::IFoo
22 interface IFoo extends @2.4::IFoo {
DIBar.hal19 import @2.4::IFoo;
22 interface IBar extends @2.4::IFoo {
/system/tools/aidl/build/tests_2/another_package/
DIFaz.aidl19 import some_package.IFoo;
22 void CanYouDealWithThisFoo(in IFoo foo); in CanYouDealWithThisFoo()
/system/tools/aidl/build/tests_1/some_package/
DIBar.aidl19 import some_package.IFoo;
22 void CanYouDealWithThisFoo(in IFoo foo); in CanYouDealWithThisFoo()
/system/tools/hidl/hidl2aidl/test/1.2/
DIFoo.hal19 import @1.1::IFoo;
21 interface IFoo extends @1.1::IFoo {
/system/tools/hidl/hidl2aidl/test/2.0/
DIFoo.hal19 import @1.0::IFoo;
23 interface IFoo {
26 shouldImportExternalTypes(@1.0::IFoo foo);
/system/tools/hidl/hidl2aidl/test/1.1/
DIFoo.hal19 import @1.0::IFoo;
22 interface IFoo extends @1.0::IFoo {
/system/tools/hidl/test/hidl_test/
Dstatic_test.cpp11 using ::android::hardware::tests::foo::V1_0::IFoo;
17 static_assert(std::is_same<IFoo::multidimArrayOne, hidl_array<int32_t, 5, 6, 7>>::value,
19 static_assert(std::is_same<IFoo::multidimArrayTwo, hidl_array<int32_t, 8, 9, 10, 5, 6, 7>>::value,
22 std::is_same<IFoo::multidimArrayThree, hidl_array<int32_t, 2, 3, 4, 8, 9, 10, 5, 6, 7>>::value,
26 static_assert(std::is_same<decltype(IFoo::S1::foo), IFoo::InnerTestStruct>::value,
28 static_assert(!std::is_same<decltype(IFoo::S1::foo), IFoo::S1::InnerTestStruct>::value,
30 static_assert((int32_t) decltype(IFoo::S2::foo)::VALUE == 0,
/system/tools/hidl/test/version_test/bad1/version/2.3/
DIBar.hal19 import @1.0::IFoo;
22 interface IBar extends @1.0::IFoo {
/system/tools/hidl/test/version_test/good/version/2.3/
DIBaz.hal19 import @1.0::IFoo;
21 interface IBaz extends @1.0::IFoo {
/system/tools/hidl/test/error_test/no_cyclic_declaration_1/1.0/
DIFoo.hal19 interface IFoo extends IFoo {
/system/tools/hidl/test/format_test/1.0/
DIBar.hal19 import IFoo;
24 interface IBar extends IFoo {};
/system/tools/hidl/test/version_test/bad4/version/2.3/
DIBaz.hal19 import @1.0::IFoo;
22 interface IBaz extends @1.0::IFoo {
/system/tools/hidl/test/error_test/interface_unique_method_names_inheritance/1.0/
DIFoo.hal20 interface IFoo extends IBar {
21 foo(IFoo arg); // duplicates method defined in IBar name
/system/tools/hidl/test/error_test/interface_unique_method_names/1.0/
DIFoo.hal18 interface IFoo {
20 foo(IFoo arg); // duplicates first method name
/system/tools/hidl/hidl2aidl/test/1.0/
DIBar.hal19 import IFoo;
21 interface IBar extends IFoo {
/system/tools/hidl/test/error_test/line_number_doc_comments/1.0/
Drequired_error1 IFoo.hal:35.
/system/tools/hidl/test/error_test/same_name_interface/1.0/
Drequired_error1 does not declare interface type 'IFoo'

1234