Home
last modified time | relevance | path

Searched refs:mConfigIndex (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
H A DUsbConfigDescriptor.java37 private byte mConfigIndex; // 6:1 Index of String Descriptor describing this configuration field in UsbConfigDescriptor
67 return mConfigIndex; in getConfigIndex()
98 String name = parser.getDescriptorString(mConfigIndex); in toAndroid()
119 mConfigIndex = stream.getByte(); in parseRawDescriptors()
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
H A DVehicleHalManager.cpp81 auto& halConfig = mConfigIndex->getAllConfigs(); in getAllPropConfigs()
97 if (mConfigIndex->hasConfig(prop)) { in getPropConfigs()
98 configs.push_back(mConfigIndex->getConfig(prop)); in getPropConfigs()
301 auto& halConfig = mConfigIndex->getAllConfigs(); in cmdListAllProperties()
315 auto& halConfig = mConfigIndex->getAllConfigs(); in cmdDumpAllProperties()
431 mConfigIndex.reset(new VehiclePropConfigIndex(supportedPropConfigs)); in init()
560 return mConfigIndex->hasConfig(prop) in getPropConfigOrNull()
561 ? &mConfigIndex->getConfig(prop) : nullptr; in getPropConfigOrNull()
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
H A DVehicleHalManager.h145 std::unique_ptr<VehiclePropConfigIndex> mConfigIndex; variable