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

Commit 81f9968c authored by Tri Vo's avatar Tri Vo
Browse files

Remove .vts spec files.

Test: mmma hardware/interfaces
Change-Id: Iabbcd336d37ceb58ea4cc649ee5c104424494513
parent 5fcb802c
Loading
Loading
Loading
Loading
+0 −87
Original line number Diff line number Diff line
component_class: HAL_HIDL
component_type_version: 1.0
component_name: "IBluetoothHci"

package: "android.hardware.bluetooth"

import: "android.hardware.bluetooth@1.0::IBluetoothHciCallbacks"
import: "android.hardware.bluetooth@1.0::types"
import: "android.hidl.base@1.0::types"

interface: {
    api: {
        name: "initialize"
        arg: {
            type: TYPE_HIDL_INTERFACE
            predefined_type: "::android::hardware::bluetooth::V1_0::IBluetoothHciCallbacks"
        }
        callflow: {
            entry: true
        }
        callflow: {
            next: "sendHciCommand"
            next: "sendAclData"
            next: "sendScoData"
            next: "close"
        }
    }

    api: {
        name: "sendHciCommand"
        arg: {
            type: TYPE_VECTOR
            vector_value: {
                type: TYPE_SCALAR
                scalar_type: "uint8_t"
            }
        }
        callflow: {
            next: "sendHciCommand"
            next: "sendAclData"
            next: "sendScoData"
            next: "close"
        }
    }

    api: {
        name: "sendAclData"
        arg: {
            type: TYPE_VECTOR
            vector_value: {
                type: TYPE_SCALAR
                scalar_type: "uint8_t"
            }
        }
        callflow: {
            next: "sendHciCommand"
            next: "sendAclData"
            next: "sendScoData"
            next: "close"
        }
    }

    api: {
        name: "sendScoData"
        arg: {
            type: TYPE_VECTOR
            vector_value: {
                type: TYPE_SCALAR
                scalar_type: "uint8_t"
            }
        }
        callflow: {
            next: "sendHciCommand"
            next: "sendAclData"
            next: "sendScoData"
            next: "close"
        }
    }

    api: {
        name: "close"
        callflow: {
            exit: true
        }
    }

}
+0 −52
Original line number Diff line number Diff line
component_class: HAL_HIDL
component_type_version: 1.0
component_name: "IBluetoothHciCallbacks"

package: "android.hardware.bluetooth"

import: "android.hardware.bluetooth@1.0::types"
import: "android.hidl.base@1.0::types"

interface: {
    api: {
        name: "initializationComplete"
        arg: {
            type: TYPE_ENUM
            predefined_type: "::android::hardware::bluetooth::V1_0::Status"
        }
    }

    api: {
        name: "hciEventReceived"
        arg: {
            type: TYPE_VECTOR
            vector_value: {
                type: TYPE_SCALAR
                scalar_type: "uint8_t"
            }
        }
    }

    api: {
        name: "aclDataReceived"
        arg: {
            type: TYPE_VECTOR
            vector_value: {
                type: TYPE_SCALAR
                scalar_type: "uint8_t"
            }
        }
    }

    api: {
        name: "scoDataReceived"
        arg: {
            type: TYPE_VECTOR
            vector_value: {
                type: TYPE_SCALAR
                scalar_type: "uint8_t"
            }
        }
    }

}

bluetooth/1.0/vts/types.vts

deleted100644 → 0
+0 −32
Original line number Diff line number Diff line
component_class: HAL_HIDL
component_type_version: 1.0
component_name: "types"

package: "android.hardware.bluetooth"


attribute: {
    name: "::android::hardware::bluetooth::V1_0::Status"
    type: TYPE_ENUM
    enum_value: {
        scalar_type: "int32_t"

        enumerator: "SUCCESS"
        scalar_value: {
            int32_t: 0
        }
        enumerator: "TRANSPORT_ERROR"
        scalar_value: {
            int32_t: 1
        }
        enumerator: "INITIALIZATION_ERROR"
        scalar_value: {
            int32_t: 2
        }
        enumerator: "UNKNOWN"
        scalar_value: {
            int32_t: 3
        }
    }
}

ir/1.0/vts/ConsumerIr.vts

deleted100644 → 0
+0 −45
Original line number Diff line number Diff line
component_class: HAL_HIDL
component_type_version: 1.0
component_name: "IConsumerIr"

package: "android.hardware.ir"

import: "android.hardware.ir@1.0::types"
import: "android.hidl.base@1.0::types"

interface: {
    api: {
        name: "transmit"
        return_type_hidl: {
            type: TYPE_SCALAR
            scalar_type: "bool_t"
        }
        arg: {
            type: TYPE_SCALAR
            scalar_type: "int32_t"
        }
        arg: {
            type: TYPE_VECTOR
            vector_value: {
                type: TYPE_SCALAR
                scalar_type: "int32_t"
            }
        }
    }

    api: {
        name: "getCarrierFreqs"
        return_type_hidl: {
            type: TYPE_SCALAR
            scalar_type: "bool_t"
        }
        return_type_hidl: {
            type: TYPE_VECTOR
            vector_value: {
                type: TYPE_STRUCT
                predefined_type: "::android::hardware::ir::V1_0::ConsumerIrFreqRange"
            }
        }
    }

}

ir/1.0/vts/types.vts

deleted100644 → 0
+0 −22
Original line number Diff line number Diff line
component_class: HAL_HIDL
component_type_version: 1.0
component_name: "types"

package: "android.hardware.ir"


attribute: {
    name: "::android::hardware::ir::V1_0::ConsumerIrFreqRange"
    type: TYPE_STRUCT
    struct_value: {
        name: "min"
        type: TYPE_SCALAR
        scalar_type: "uint32_t"
    }
    struct_value: {
        name: "max"
        type: TYPE_SCALAR
        scalar_type: "uint32_t"
    }
}
Loading