Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0a4e7f4 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Update comments for doc comments.

am: 913c0713

Change-Id: Ia0860203c00b7a2441b4e23cecbf3c2500d0d248
parents bb0f7925 913c0713
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -136,7 +136,8 @@ struct Properties {
    uint32_t        numAudioSources;
    /** the hardware supports capture of audio source from audio HAL */
    bool            supportsCapture;
    vec<BandConfig> bands; /** band descriptors */
    /** band descriptors */
    vec<BandConfig> bands;
};

enum MetadataType : int32_t {
@@ -229,6 +230,7 @@ struct ProgramInfo {
     */
    uint32_t signalStrength;

    vec<MetaData> metadata; /** Metadata: PTY, song title etc. */
    /** Metadata: PTY, song title etc. */
    vec<MetaData> metadata;
};
+13 −0
Original line number Diff line number Diff line
@@ -251,3 +251,16 @@ c8bc853546dd55584611def2a9fa1d99f657e3366c976d2f60fe6b8aa6d2cb87 android.hardwar
12e8dca4ab7d8aadd0ef8f1b438021938e2396139e85db2ed65783b08800aa52 android.hardware.neuralnetworks@1.0::IExecutionCallback
18e6885e184fe48401c2c53f1d1b8bfb07240f40c81ae6b9d2e336fca6efdbb7 android.hardware.neuralnetworks@1.0::types

# Documentation fixups for b/78135149
9e7a0b650d0e461ece2cfec0e1072abf8676f592b41a7fb48f01e88fc3c8f780 android.hardware.broadcastradio@1.0::types
190ea4898809de6cf379afe318f5fa9564686157b24d9a2d7f5698b0c977d8b2 android.hardware.graphics.bufferqueue@1.0::IGraphicBufferProducer
25892789b50eb673506b6c5a2cdab5d9aa428d41608aab10280cc898538b524a android.hardware.graphics.composer@2.1::IComposerClient
e205dd30f5ff99445b706a901de8ebc46c379e9d7c1921d6a327ed2082cfa83d android.hardware.graphics.composer@2.1::types
a46251718abfada458dc64c41ce94915757bf6c87cfa2d9e99cfb01fa8e32331 android.hardware.graphics.mapper@2.0::IMapper
bd33ac23c57b4a07632691d2191bc2c93930f57e62f4ccf459748fdaa5c0f480 android.hardware.graphics.mapper@2.0::types
ad8a28ca3a5549fb9bc24cf5f80ac8f660cc27be885210d76266780aa52ddb8d android.hardware.keymaster@3.0::types
f96cbc59dfe16c8d0c2a7e06db24d8738a6328b6e90f7b8e1640ea2b4600debd android.hardware.radio@1.1::ISap
2d86929794795e5c70f4fdb5073485fd05835c9c6f496116687c3d9f32e6df3e android.hardware.radio@1.2::ISap
905a4af79c8329b39d8b11b08f015137216bb078b427b6986f32884a04bc1bec android.hardware.tv.cec@1.0::types
aebcd9ff2da05c9d4c439916f40dfd219ba7629919007cb981ebf150064b4f82 android.hardware.usb@1.1::IUsb
e29fb1941b40a990676f8e9c676a38761defd890b81a9c034608eb7ba6496023 android.hardware.wifi@1.0::IWifiP2pIface
+1 −1
Original line number Diff line number Diff line
@@ -546,7 +546,7 @@ interface IGraphicBufferProducer {
     */
    disconnect(
            int32_t api,
            DisconnectMode mode /** = DisconnectMode::API */
            DisconnectMode mode /* = DisconnectMode::API */
        ) generates (
            Status status
        );
+2 −2
Original line number Diff line number Diff line
@@ -1138,7 +1138,7 @@ interface IComposerClient {
        SET_LAYER_Z_ORDER                  = 0x40a << OPCODE_SHIFT,
        SET_PRESENT_OR_VALIDATE_DISPLAY_RESULT = 0x40b << OPCODE_SHIFT,

        /** 0x800 - 0xfff are reserved for vendor extensions */
        /** 0x1000 - 0xffff are reserved */
        /* 0x800 - 0xfff are reserved for vendor extensions */
        /* 0x1000 - 0xffff are reserved */
    };
};
+9 −9
Original line number Diff line number Diff line
@@ -18,15 +18,15 @@ package android.hardware.graphics.composer@2.1;

/** Return codes from all functions. */
enum Error : int32_t {
    NONE            = 0, /** no error */
    BAD_CONFIG      = 1, /** invalid Config */
    BAD_DISPLAY     = 2, /** invalid Display */
    BAD_LAYER       = 3, /** invalid Layer */
    BAD_PARAMETER   = 4, /** invalid width, height, etc. */
    /** 5 is reserved */
    NO_RESOURCES    = 6, /** temporary failure due to resource contention */
    NOT_VALIDATED   = 7, /** validateDisplay has not been called */
    UNSUPPORTED     = 8, /** permanent failure */
    NONE            = 0, /* no error */
    BAD_CONFIG      = 1, /* invalid Config */
    BAD_DISPLAY     = 2, /* invalid Display */
    BAD_LAYER       = 3, /* invalid Layer */
    BAD_PARAMETER   = 4, /* invalid width, height, etc. */
    /* 5 is reserved */
    NO_RESOURCES    = 6, /* temporary failure due to resource contention */
    NOT_VALIDATED   = 7, /* validateDisplay has not been called */
    UNSUPPORTED     = 8, /* permanent failure */
};

typedef uint32_t Config;
Loading