summaryrefslogtreecommitdiffstats
path: root/audio/4.0
diff options
context:
space:
mode:
authorKevin Rocard <krocard@google.com>2018-01-25 12:52:50 -0800
committerKevin Rocard <krocard@google.com>2018-02-01 15:24:25 -0800
commit0fd5bc2dcec7b951d070ae485a34d291ce35e647 (patch)
tree7df74fc83425d945923a830a6c29637594a18f1b /audio/4.0
parent79c574082d956f39fe34414094db673e07d7ba56 (diff)
downloadandroid_hardware_interfaces-0fd5bc2dcec7b951d070ae485a34d291ce35e647.tar.gz
android_hardware_interfaces-0fd5bc2dcec7b951d070ae485a34d291ce35e647.tar.bz2
android_hardware_interfaces-0fd5bc2dcec7b951d070ae485a34d291ce35e647.zip
Audio V4: Remove deprecated function and enum
The debugDump function was deprecated by the introduction of the debug method in the IBase. AudioMode CURRENT and INVALID should not be passed to the vendor. Bug: 38184704 Test: none Change-Id: I0e14c71ce7216524587a6ba28cae0cdb821bae23 Signed-off-by: Kevin Rocard <krocard@google.com>
Diffstat (limited to 'audio/4.0')
-rw-r--r--audio/4.0/IDevice.hal12
-rw-r--r--audio/4.0/IStream.hal12
2 files changed, 0 insertions, 24 deletions
diff --git a/audio/4.0/IDevice.hal b/audio/4.0/IDevice.hal
index 2f121c1e8..4bc2d4db0 100644
--- a/audio/4.0/IDevice.hal
+++ b/audio/4.0/IDevice.hal
@@ -254,16 +254,4 @@ interface IDevice {
*/
setParameters(vec<ParameterValue> context, vec<ParameterValue> parameters)
generates (Result retval);
-
- /**
- * Dumps information about the device into the provided file descriptor.
- * This is used for the dumpsys facility.
- * The implementation should not block as the caller might have time
- * constraint on the dump.
- * A back to back dump of all HAL Device and Stream should take under 100ms.
- *
- * @param fd dump file descriptor.
- * @return retval operation completion status: OK or NOT_SUPPORTED.
- */
- debugDump(handle fd) generates (Result retval);
};
diff --git a/audio/4.0/IStream.hal b/audio/4.0/IStream.hal
index 306152b37..34e7a140c 100644
--- a/audio/4.0/IStream.hal
+++ b/audio/4.0/IStream.hal
@@ -259,18 +259,6 @@ interface IStream {
generates (Result retval);
/**
- * Dumps information about the stream into the provided file descriptor.
- * This is used for the dumpsys facility.
- * The implementation should not block as the caller might have time
- * constraint on the dump.
- * A back to back dump of all HAL Device and Stream should take under 100ms.
- *
- * @param fd dump file descriptor.
- * @return retval operation completion status: OK or NOT_SUPPORTED.
- */
- debugDump(handle fd) generates (Result retval);
-
- /**
* Called by the framework to start a stream operating in mmap mode.
* createMmapBuffer() must be called before calling start().
* Function only implemented by streams operating in mmap mode.