Home
last modified time | relevance | path

Searched refs:aidl (Results 1 – 25 of 165) sorted by relevance

1234567

/system/bt/binder/
DAndroid.bp10 "android/bluetooth/IBluetoothSocketManager.aidl",
13 "android/bluetooth/IBluetooth.aidl",
14 "android/bluetooth/IBluetoothA2dp.aidl",
15 "android/bluetooth/IBluetoothA2dpSink.aidl",
16 "android/bluetooth/IBluetoothAvrcpController.aidl",
17 "android/bluetooth/IBluetoothAvrcpTarget.aidl",
18 "android/bluetooth/IBluetoothCallback.aidl",
19 "android/bluetooth/IBluetoothProfileServiceConnection.aidl",
20 "android/bluetooth/IBluetoothHeadset.aidl",
21 "android/bluetooth/IBluetoothHeadsetPhone.aidl",
[all …]
/system/bt/service/common/
DAndroid.bp45 "android/bluetooth/IBluetooth.aidl",
46 "android/bluetooth/IBluetoothA2dpSink.aidl",
47 "android/bluetooth/IBluetoothA2dpSinkCallback.aidl",
48 "android/bluetooth/IBluetoothA2dpSource.aidl",
49 "android/bluetooth/IBluetoothA2dpSourceCallback.aidl",
50 "android/bluetooth/IBluetoothAvrcpControl.aidl",
51 "android/bluetooth/IBluetoothAvrcpControlCallback.aidl",
52 "android/bluetooth/IBluetoothAvrcpTarget.aidl",
53 "android/bluetooth/IBluetoothAvrcpTargetCallback.aidl",
54 "android/bluetooth/IBluetoothCallback.aidl",
[all …]
/system/security/identity/
DAndroid.bp50 "binder/android/security/identity/ICredential.aidl",
51 "binder/android/security/identity/IWritableCredential.aidl",
52 "binder/android/security/identity/ICredentialStore.aidl",
53 "binder/android/security/identity/AccessControlProfileParcel.aidl",
54 "binder/android/security/identity/EntryNamespaceParcel.aidl",
55 "binder/android/security/identity/EntryParcel.aidl",
56 "binder/android/security/identity/RequestNamespaceParcel.aidl",
57 "binder/android/security/identity/RequestEntryParcel.aidl",
58 "binder/android/security/identity/ResultNamespaceParcel.aidl",
59 "binder/android/security/identity/ResultEntryParcel.aidl",
[all …]
/system/tools/aidl/
DAndroid.bp51 // Logic shared between aidl and its unittests
58 "aidl.cpp",
90 // aidl executable
92 name: "aidl",
102 // aidl-cpp legacy executable, please use 'aidl' instead
104 name: "aidl-cpp",
243 srcs: ["tests/android/aidl/tests/*.aidl"],
248 name: "aidl-test-versioned-interface",
251 "tests/versioned/**/*.aidl",
262 aidl: {
[all …]
Daidl_unittest.cpp35 using android::aidl::internals::parse_preprocessed_file;
36 using android::aidl::test::FakeIoDelegate;
47 namespace aidl { namespace
89 … 28, publicAlternatives = "dummy", trackingBug = 42L, overrideSourcePosition="Rect.aidl:7:1:10:14")
175 AidlError actual_error = ::android::aidl::internals::load_and_validate_aidl(
447 EXPECT_EQ(0, ::android::aidl::compile_aidl(java_options, io_delegate_)); in TEST_F()
448 EXPECT_EQ(0, ::android::aidl::compile_aidl(cpp_options, io_delegate_)); in TEST_F()
453 EXPECT_NE(0, ::android::aidl::compile_aidl(cpp_structured_options, io_delegate_)); in TEST_F()
461 EXPECT_EQ(0, ::android::aidl::compile_aidl(java_options, io_delegate_)); in TEST_F()
469 EXPECT_EQ(0, ::android::aidl::compile_aidl(cpp_options, io_delegate_)); in TEST_F()
[all …]
Daidl_to_ndk.cpp28 namespace aidl { namespace
318 static TypeInfo::Aspect GetTypeAspect(const AidlTypenames& types, const AidlTypeSpecifier& aidl) { in GetTypeAspect() argument
319 CHECK(aidl.IsResolved()) << aidl.ToString(); in GetTypeAspect()
320 auto& aidl_name = aidl.GetName(); in GetTypeAspect()
326 AIDL_FATAL_IF(!aidl.IsGeneric(), aidl) << "List must be generic type."; in GetTypeAspect()
327 AIDL_FATAL_IF(aidl.GetTypeParameters().size() != 1, aidl) in GetTypeAspect()
329 auto& type_param = aidl.GetTypeParameters()[0]; in GetTypeAspect()
331 AIDL_FATAL_IF(type_param->IsGeneric(), aidl) << "AIDL doesn't support nested type parameter"; in GetTypeAspect()
335 nullptr /* type_params */, aidl.GetComments()); in GetTypeAspect()
337 AIDL_FATAL(aidl) << "The type parameter is wrong."; in GetTypeAspect()
[all …]
Daidl_to_java.h30 namespace aidl {
46 string JavaSignatureOf(const AidlTypeSpecifier& aidl, const AidlTypenames& typenames);
50 string InstantiableJavaSignatureOf(const AidlTypeSpecifier& aidl, const AidlTypenames& typenames);
53 string DefaultJavaValueOf(const AidlTypeSpecifier& aidl, const AidlTypenames& typenames);
Dgenerate_java.h27 namespace aidl {
34 std::unique_ptr<android::aidl::java::Class> generate_binder_interface_class(
37 std::unique_ptr<android::aidl::java::Class> generate_parcel_class(
/system/tools/hidl/hidl2aidl/test/
Dndk_test_compile.cpp38 void testIFoo(const std::shared_ptr<aidl::hidl2aidl::IFoo>& foo) { in testIFoo()
46 void testIBar(const std::shared_ptr<aidl::hidl2aidl::IBar>& bar) { in testIBar()
50 aidl::hidl2aidl::IBarInner inner; in testIBar()
56 static_assert(static_cast<int>(aidl::hidl2aidl::Value::A) == 3);
57 static_assert(static_cast<int>(aidl::hidl2aidl::Value::B) == 7);
58 static_assert(static_cast<int>(aidl::hidl2aidl::Value::C) == 8);
59 static_assert(static_cast<int>(aidl::hidl2aidl::Value::D) == 9);
60 static_assert(static_cast<int>(aidl::hidl2aidl::Value::E) == 27);
61 static_assert(static_cast<int>(aidl::hidl2aidl::Value::F) == 28);
63 void testIFoo2(const std::shared_ptr<aidl::hidl2aidl2::IFoo>& foo) { in testIFoo2()
DAndroid.bp33 "hidl2aidl/IBar.aidl",
34 "hidl2aidl/IBarInner.aidl",
35 "hidl2aidl/IFoo.aidl",
36 "hidl2aidl/IFooBigStruct.aidl",
37 "hidl2aidl/NameCollision.aidl",
38 "hidl2aidl/OnlyIn10.aidl",
39 "hidl2aidl/OnlyIn11.aidl",
40 "hidl2aidl/Outer.aidl",
41 "hidl2aidl/OuterInner.aidl",
42 "hidl2aidl/OverrideMe.aidl",
[all …]
/system/gsid/
DAndroid.bp118 local_include_dir: "aidl",
129 "aidl/android/gsi/AvbPublicKey.aidl",
130 "aidl/android/gsi/GsiProgress.aidl",
131 "aidl/android/gsi/IGsiService.aidl",
132 "aidl/android/gsi/IGsiServiceCallback.aidl",
133 "aidl/android/gsi/IImageService.aidl",
134 "aidl/android/gsi/IProgressCallback.aidl",
135 "aidl/android/gsi/MappedImage.aidl",
137 path: "aidl",
/system/tools/aidl/build/
DAndroid.bp16 name: "aidl-soong-rules",
17 pkgPath: "android/soong/aidl",
39 visibility: ["//system/tools/aidl:__subpackages__"],
42 // These configurations are inherited by all aidl-gen modules
45 name: "aidl-cpp-module-defaults",
56 name: "aidl-java-module-defaults",
62 name: "aidl-test-filegroup",
64 "tests_1/some_package/IFoo.aidl",
65 "tests_1/some_package/Thing.aidl",
66 "tests_1/some_package/sub_package/*.aidl",
[all …]
/system/tools/aidl/tests/
Dend_to_end_tests.cpp30 using android::aidl::test::CanonicalNameToPath;
31 using android::aidl::test::FakeIoDelegate;
37 namespace aidl { namespace
74 using namespace ::android::aidl::test_data::example_interface; in TEST_F()
92 EXPECT_EQ(android::aidl::compile_aidl(options, io_delegate_), 0); in TEST_F()
98 using namespace ::android::aidl::test_data::example_interface; in TEST_F()
117 EXPECT_EQ(android::aidl::compile_aidl(options, io_delegate_), 0); in TEST_F()
123 using namespace ::android::aidl::test_data::example_interface; in TEST_F()
142 EXPECT_EQ(android::aidl::compile_aidl(options, io_delegate_), 0); in TEST_F()
148 using namespace ::android::aidl::test_data::example_interface; in TEST_F()
[all …]
Dtest_data_example_interface.cpp20 namespace aidl { namespace
126 …tation.UnsupportedAppUsage(overrideSourcePosition="android/test/IExampleInterface.aidl:10:1:10:21")
574 …tation.UnsupportedAppUsage(overrideSourcePosition="android/test/IExampleInterface.aidl:19:1:19:25")
594 …tation.UnsupportedAppUsage(overrideSourcePosition="android/test/IExampleInterface.aidl:10:1:10:21")
1094 …tation.UnsupportedAppUsage(overrideSourcePosition="android/test/IExampleInterface.aidl:19:1:19:25")
1114 …tation.UnsupportedAppUsage(overrideSourcePosition="android/test/IExampleInterface.aidl:10:1:10:21")
1634 …tation.UnsupportedAppUsage(overrideSourcePosition="android/test/IExampleInterface.aidl:19:1:19:25")
/system/connectivity/wificond/
DAndroid.bp132 aidl: {
133 local_include_dirs: ["aidl"],
154 "aidl/android/net/wifi/IApInterface.aidl",
155 "aidl/android/net/wifi/IApInterfaceEventCallback.aidl",
156 "aidl/android/net/wifi/IClientInterface.aidl",
157 "aidl/android/net/wifi/IInterfaceEventCallback.aidl",
158 "aidl/android/net/wifi/IPnoScanEvent.aidl",
159 "aidl/android/net/wifi/IScanEvent.aidl",
160 "aidl/android/net/wifi/ISendMgmtFrameEvent.aidl",
161 "aidl/android/net/wifi/IWificond.aidl",
[all …]
/system/tools/aidl/tests/android/aidl/tests/
DStructuredParcelable.aidl17 package android.aidl.tests;
19 import android.aidl.tests.ByteEnum;
20 import android.aidl.tests.IntEnum;
21 import android.aidl.tests.LongEnum;
22 import android.aidl.tests.ConstantExpressionEnum;
DParcelableForToString.aidl17 package android.aidl.tests;
19 import android.aidl.tests.OtherParcelableForToString;
20 import android.aidl.tests.IntEnum;
/system/tools/aidl/tests/stability_test/
DAndroid.bp20 "android/aidl/tests/nonvintf/*.aidl",
40 "android/aidl/tests/unstable/*.aidl",
59 "android/aidl/tests/vintf/*.aidl",
/system/security/keystore/
DAndroid.bp79 aidl: {
201 aidl: {
222 ":IKeyAttestationApplicationIdProvider.aidl",
287 aidl: {
296 "binder/android/security/IConfirmationPromptCallback.aidl",
297 "binder/android/security/keystore/ICredstoreTokenCallback.aidl",
298 "binder/android/security/keystore/IKeystoreCertificateChainCallback.aidl",
299 "binder/android/security/keystore/IKeystoreExportKeyCallback.aidl",
300 "binder/android/security/keystore/IKeystoreKeyCharacteristicsCallback.aidl",
301 "binder/android/security/keystore/IKeystoreOperationResultCallback.aidl",
[all …]
/system/tools/aidl/tests/android/aidl/tests/generic/
DIFaz.aidl17 package android.aidl.tests.generic;
19 import android.aidl.tests.generic.Baz;
20 import android.aidl.tests.generic.Pair;
/system/hardware/interfaces/suspend/1.0/default/internal_aidl/
DAndroid.bp6 "android/system/suspend/ISuspendControlService.aidl",
7 "android/system/suspend/ISuspendCallback.aidl",
8 "android/system/suspend/WakeLockInfo.aidl",
/system/tools/aidl/tests/android/aidl/tests/map/
DFoo.aidl17 package android.aidl.tests.map;
19 import android.aidl.tests.map.Bar;
20 import android.aidl.tests.map.IEmpty;
/system/tools/aidl/tests/java_app/src/android/aidl/tests/
DExtensionTests.java17 package android.aidl.tests;
23 import android.aidl.tests.extension.ExtendableParcelable;
24 import android.aidl.tests.extension.MyExt;
25 import android.aidl.tests.extension.MyExt2;
26 import android.aidl.tests.extension.MyExtLike;
27 import android.aidl.tests.nonvintf.NonVintfExtendableParcelable;
28 import android.aidl.tests.nonvintf.NonVintfParcelable;
29 import android.aidl.tests.unstable.UnstableExtendableParcelable;
30 import android.aidl.tests.unstable.UnstableParcelable;
31 import android.aidl.tests.vintf.VintfExtendableParcelable;
[all …]
DGenericTests.java17 package android.aidl.tests;
22 import android.aidl.tests.generic.Baz;
23 import android.aidl.tests.generic.IFaz;
24 import android.aidl.tests.generic.Pair;
/system/netd/server/
DAndroid.bp5 "binder/android/net/INetd.aidl",
7 "binder/android/net/INetdUnsolicitedEventListener.aidl",
8 "binder/android/net/InterfaceConfigurationParcel.aidl",
9 "binder/android/net/MarkMaskParcel.aidl",
10 "binder/android/net/RouteInfoParcel.aidl",
11 "binder/android/net/TetherConfigParcel.aidl",
12 "binder/android/net/TetherOffloadRuleParcel.aidl",
13 "binder/android/net/TetherStatsParcel.aidl",
14 "binder/android/net/UidRangeParcel.aidl",
44 "binder/android/net/metrics/INetdEventListener.aidl",
[all …]

1234567