-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore-AOSP-First: part of SC finalization Bug: 188713899 Test: m Change-Id: Iee18cd05954dc8ea08cc4f985499a70977d1af4f
- Loading branch information
Showing
259 changed files
with
9,350 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,5 @@ aidl_interface { | |
}, | ||
}, | ||
}, | ||
versions: ["1"], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
729cca96cb4732246b6ed1b3d15e2cbe63413afd |
38 changes: 38 additions & 0 deletions
38
.../aidl/aidl_api/android.hardware.authsecret/1/android/hardware/authsecret/IAuthSecret.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright 2020 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // | ||
/////////////////////////////////////////////////////////////////////////////// | ||
|
||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are | ||
// two cases: | ||
// 1). this is a frozen version file - do not edit this in any case. | ||
// 2). this is a 'current' file. If you make a backwards compatible change to | ||
// the interface (from the latest frozen version), the build system will | ||
// prompt you to update this file with `m <name>-update-api`. | ||
// | ||
// You must not make a backward incompatible change to any AIDL file built | ||
// with the aidl_interface module type with versions property set. The module | ||
// type is used to build AIDL files in a way that they can be used across | ||
// independently updatable components of the system. If a device is shipped | ||
// with such a backward incompatible change, it has a high risk of breaking | ||
// later when a module using the interface is updated, e.g., Mainline modules. | ||
|
||
package android.hardware.authsecret; | ||
@VintfStability | ||
interface IAuthSecret { | ||
oneway void setPrimaryUserCredential(in byte[] secret); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,5 @@ aidl_interface { | |
sdk_version: "module_current", | ||
}, | ||
}, | ||
versions: ["1"], | ||
} |
1 change: 1 addition & 0 deletions
1
automotive/audiocontrol/aidl/aidl_api/android.hardware.automotive.audiocontrol/1/.hash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ba2a7caca61683385b3b100e4faab1b4139fc547 |
45 changes: 45 additions & 0 deletions
45
....automotive.audiocontrol/1/android/hardware/automotive/audiocontrol/AudioFocusChange.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright (C) 2020 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // | ||
/////////////////////////////////////////////////////////////////////////////// | ||
|
||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are | ||
// two cases: | ||
// 1). this is a frozen version file - do not edit this in any case. | ||
// 2). this is a 'current' file. If you make a backwards compatible change to | ||
// the interface (from the latest frozen version), the build system will | ||
// prompt you to update this file with `m <name>-update-api`. | ||
// | ||
// You must not make a backward incompatible change to any AIDL file built | ||
// with the aidl_interface module type with versions property set. The module | ||
// type is used to build AIDL files in a way that they can be used across | ||
// independently updatable components of the system. If a device is shipped | ||
// with such a backward incompatible change, it has a high risk of breaking | ||
// later when a module using the interface is updated, e.g., Mainline modules. | ||
|
||
package android.hardware.automotive.audiocontrol; | ||
@Backing(type="int") @VintfStability | ||
enum AudioFocusChange { | ||
NONE = 0, | ||
GAIN = 1, | ||
GAIN_TRANSIENT = 2, | ||
GAIN_TRANSIENT_MAY_DUCK = 3, | ||
GAIN_TRANSIENT_EXCLUSIVE = 4, | ||
LOSS = -1, | ||
LOSS_TRANSIENT = -2, | ||
LOSS_TRANSIENT_CAN_DUCK = -3, | ||
} |
41 changes: 41 additions & 0 deletions
41
...dware.automotive.audiocontrol/1/android/hardware/automotive/audiocontrol/DuckingInfo.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright (C) 2020 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // | ||
/////////////////////////////////////////////////////////////////////////////// | ||
|
||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are | ||
// two cases: | ||
// 1). this is a frozen version file - do not edit this in any case. | ||
// 2). this is a 'current' file. If you make a backwards compatible change to | ||
// the interface (from the latest frozen version), the build system will | ||
// prompt you to update this file with `m <name>-update-api`. | ||
// | ||
// You must not make a backward incompatible change to any AIDL file built | ||
// with the aidl_interface module type with versions property set. The module | ||
// type is used to build AIDL files in a way that they can be used across | ||
// independently updatable components of the system. If a device is shipped | ||
// with such a backward incompatible change, it has a high risk of breaking | ||
// later when a module using the interface is updated, e.g., Mainline modules. | ||
|
||
package android.hardware.automotive.audiocontrol; | ||
@VintfStability | ||
parcelable DuckingInfo { | ||
int zoneId; | ||
String[] deviceAddressesToDuck; | ||
String[] deviceAddressesToUnduck; | ||
String[] usagesHoldingFocus; | ||
} |
43 changes: 43 additions & 0 deletions
43
...are.automotive.audiocontrol/1/android/hardware/automotive/audiocontrol/IAudioControl.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright (C) 2020 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // | ||
/////////////////////////////////////////////////////////////////////////////// | ||
|
||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are | ||
// two cases: | ||
// 1). this is a frozen version file - do not edit this in any case. | ||
// 2). this is a 'current' file. If you make a backwards compatible change to | ||
// the interface (from the latest frozen version), the build system will | ||
// prompt you to update this file with `m <name>-update-api`. | ||
// | ||
// You must not make a backward incompatible change to any AIDL file built | ||
// with the aidl_interface module type with versions property set. The module | ||
// type is used to build AIDL files in a way that they can be used across | ||
// independently updatable components of the system. If a device is shipped | ||
// with such a backward incompatible change, it has a high risk of breaking | ||
// later when a module using the interface is updated, e.g., Mainline modules. | ||
|
||
package android.hardware.automotive.audiocontrol; | ||
@VintfStability | ||
interface IAudioControl { | ||
oneway void onAudioFocusChange(in String usage, in int zoneId, in android.hardware.automotive.audiocontrol.AudioFocusChange focusChange); | ||
oneway void onDevicesToDuckChange(in android.hardware.automotive.audiocontrol.DuckingInfo[] duckingInfos); | ||
oneway void onDevicesToMuteChange(in android.hardware.automotive.audiocontrol.MutingInfo[] mutingInfos); | ||
oneway void registerFocusListener(in android.hardware.automotive.audiocontrol.IFocusListener listener); | ||
oneway void setBalanceTowardRight(in float value); | ||
oneway void setFadeTowardFront(in float value); | ||
} |
39 changes: 39 additions & 0 deletions
39
...re.automotive.audiocontrol/1/android/hardware/automotive/audiocontrol/IFocusListener.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (C) 2020 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // | ||
/////////////////////////////////////////////////////////////////////////////// | ||
|
||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are | ||
// two cases: | ||
// 1). this is a frozen version file - do not edit this in any case. | ||
// 2). this is a 'current' file. If you make a backwards compatible change to | ||
// the interface (from the latest frozen version), the build system will | ||
// prompt you to update this file with `m <name>-update-api`. | ||
// | ||
// You must not make a backward incompatible change to any AIDL file built | ||
// with the aidl_interface module type with versions property set. The module | ||
// type is used to build AIDL files in a way that they can be used across | ||
// independently updatable components of the system. If a device is shipped | ||
// with such a backward incompatible change, it has a high risk of breaking | ||
// later when a module using the interface is updated, e.g., Mainline modules. | ||
|
||
package android.hardware.automotive.audiocontrol; | ||
@VintfStability | ||
interface IFocusListener { | ||
oneway void abandonAudioFocus(in String usage, in int zoneId); | ||
oneway void requestAudioFocus(in String usage, in int zoneId, in android.hardware.automotive.audiocontrol.AudioFocusChange focusGain); | ||
} |
40 changes: 40 additions & 0 deletions
40
...rdware.automotive.audiocontrol/1/android/hardware/automotive/audiocontrol/MutingInfo.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Copyright (C) 2020 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // | ||
/////////////////////////////////////////////////////////////////////////////// | ||
|
||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are | ||
// two cases: | ||
// 1). this is a frozen version file - do not edit this in any case. | ||
// 2). this is a 'current' file. If you make a backwards compatible change to | ||
// the interface (from the latest frozen version), the build system will | ||
// prompt you to update this file with `m <name>-update-api`. | ||
// | ||
// You must not make a backward incompatible change to any AIDL file built | ||
// with the aidl_interface module type with versions property set. The module | ||
// type is used to build AIDL files in a way that they can be used across | ||
// independently updatable components of the system. If a device is shipped | ||
// with such a backward incompatible change, it has a high risk of breaking | ||
// later when a module using the interface is updated, e.g., Mainline modules. | ||
|
||
package android.hardware.automotive.audiocontrol; | ||
@VintfStability | ||
parcelable MutingInfo { | ||
int zoneId; | ||
String[] deviceAddressesToMute; | ||
String[] deviceAddressesToUnmute; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,5 +21,6 @@ aidl_interface { | |
cpp: { | ||
enabled: false, | ||
}, | ||
} | ||
}, | ||
versions: ["1"], | ||
} |
1 change: 1 addition & 0 deletions
1
biometrics/common/aidl/aidl_api/android.hardware.biometrics.common/1/.hash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9ad0b938db247283c4a8c1bf7e4218a420019024 |
41 changes: 41 additions & 0 deletions
41
.../android.hardware.biometrics.common/1/android/hardware/biometrics/common/CommonProps.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright (C) 2020 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // | ||
/////////////////////////////////////////////////////////////////////////////// | ||
|
||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are | ||
// two cases: | ||
// 1). this is a frozen version file - do not edit this in any case. | ||
// 2). this is a 'current' file. If you make a backwards compatible change to | ||
// the interface (from the latest frozen version), the build system will | ||
// prompt you to update this file with `m <name>-update-api`. | ||
// | ||
// You must not make a backward incompatible change to any AIDL file built | ||
// with the aidl_interface module type with versions property set. The module | ||
// type is used to build AIDL files in a way that they can be used across | ||
// independently updatable components of the system. If a device is shipped | ||
// with such a backward incompatible change, it has a high risk of breaking | ||
// later when a module using the interface is updated, e.g., Mainline modules. | ||
|
||
package android.hardware.biometrics.common; | ||
@VintfStability | ||
parcelable CommonProps { | ||
int sensorId; | ||
android.hardware.biometrics.common.SensorStrength sensorStrength = android.hardware.biometrics.common.SensorStrength.CONVENIENCE; | ||
int maxEnrollmentsPerUser; | ||
android.hardware.biometrics.common.ComponentInfo[] componentInfo; | ||
} |
42 changes: 42 additions & 0 deletions
42
...ndroid.hardware.biometrics.common/1/android/hardware/biometrics/common/ComponentInfo.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Copyright (C) 2020 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // | ||
/////////////////////////////////////////////////////////////////////////////// | ||
|
||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are | ||
// two cases: | ||
// 1). this is a frozen version file - do not edit this in any case. | ||
// 2). this is a 'current' file. If you make a backwards compatible change to | ||
// the interface (from the latest frozen version), the build system will | ||
// prompt you to update this file with `m <name>-update-api`. | ||
// | ||
// You must not make a backward incompatible change to any AIDL file built | ||
// with the aidl_interface module type with versions property set. The module | ||
// type is used to build AIDL files in a way that they can be used across | ||
// independently updatable components of the system. If a device is shipped | ||
// with such a backward incompatible change, it has a high risk of breaking | ||
// later when a module using the interface is updated, e.g., Mainline modules. | ||
|
||
package android.hardware.biometrics.common; | ||
@VintfStability | ||
parcelable ComponentInfo { | ||
String componentId; | ||
String hardwareVersion; | ||
String firmwareVersion; | ||
String serialNumber; | ||
String softwareVersion; | ||
} |
Oops, something went wrong.