/hardware/interfaces/radio/aidl/compat/libradiocompat/voice/ |
D | structs.cpp | 67 aidl::CdmaSignalInfoRecord toAidl(const V1_0::CdmaSignalInfoRecord& record) { in toAidl() argument 69 .isPresent = record.isPresent, in toAidl() 70 .signalType = record.signalType, in toAidl() 71 .alertPitch = record.alertPitch, in toAidl() 72 .signal = record.signal, in toAidl() 87 aidl::CdmaInformationRecord toAidl(const V1_0::CdmaInformationRecord& record) { in toAidl() argument 89 .name = static_cast<int32_t>(record.name), in toAidl() 90 .display = toAidl(record.display), in toAidl() 91 .number = toAidl(record.number), in toAidl() 92 .signal = toAidl(record.signal), in toAidl() [all …]
|
D | structs.h | 48 toAidl(const V1_0::CdmaSignalInfoRecord& record); 53 toAidl(const V1_0::CdmaInformationRecord& record); 56 toAidl(const V1_0::CdmaDisplayInfoRecord& record); 59 toAidl(const V1_0::CdmaNumberInfoRecord& record); 62 toAidl(const V1_0::CdmaRedirectingNumberInfoRecord& record); 65 toAidl(const V1_0::CdmaLineControlInfoRecord& record); 68 toAidl(const V1_0::CdmaT53ClirInfoRecord& record); 71 toAidl(const V1_0::CdmaT53AudioControlInfoRecord& record);
|
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/src/ |
D | VehiclePropertyStore.cpp | 78 const VehiclePropValue& propValue, const VehiclePropertyStore::Record& record) const in getRecordIdLocked() 83 if (record.tokenFunction != nullptr) { in getRecordIdLocked() 84 recId.token = record.tokenFunction(propValue); in getRecordIdLocked() 90 const RecordId& recId, const Record& record) const REQUIRES(mLock) { in readValueLocked() 91 if (auto it = record.values.find(recId); it != record.values.end()) { in readValueLocked() 115 VehiclePropertyStore::Record* record = getRecordLocked(propId); in writeValue() local 116 if (record == nullptr) { in writeValue() 120 if (!isGlobalProp(propId) && getAreaConfig(*propValue, record->propConfig) == nullptr) { in writeValue() 125 VehiclePropertyStore::RecordId recId = getRecordIdLocked(*propValue, *record); in writeValue() 127 if (auto it = record->values.find(recId); it != record->values.end()) { in writeValue() [all …]
|
/hardware/interfaces/security/keymint/support/ |
D | attestation_record.cpp | 284 static ErrorCode extract_auth_list(const KM_AUTH_LIST* record, AuthorizationSet* auth_list) { in extract_auth_list() argument 285 if (!record) return ErrorCode::OK; in extract_auth_list() 288 copyAuthTag(record->purpose, TAG_PURPOSE, auth_list); in extract_auth_list() 289 copyAuthTag(record->algorithm, TAG_ALGORITHM, auth_list); in extract_auth_list() 290 copyAuthTag(record->key_size, TAG_KEY_SIZE, auth_list); in extract_auth_list() 291 copyAuthTag(record->digest, TAG_DIGEST, auth_list); in extract_auth_list() 292 copyAuthTag(record->padding, TAG_PADDING, auth_list); in extract_auth_list() 293 copyAuthTag(record->ec_curve, TAG_EC_CURVE, auth_list); in extract_auth_list() 294 copyAuthTag(record->rsa_public_exponent, TAG_RSA_PUBLIC_EXPONENT, auth_list); in extract_auth_list() 295 copyAuthTag(record->mgf_digest, TAG_RSA_OAEP_MGF_DIGEST, auth_list); in extract_auth_list() [all …]
|
/hardware/interfaces/keymaster/4.0/support/ |
D | attestation_record.cpp | 268 static ErrorCode extract_auth_list(const KM_AUTH_LIST* record, AuthorizationSet* auth_list) { in extract_auth_list() argument 269 if (!record) return ErrorCode::OK; in extract_auth_list() 271 copyAuthTag(record->active_date_time, TAG_ACTIVE_DATETIME, auth_list); in extract_auth_list() 272 copyAuthTag(record->algorithm, TAG_ALGORITHM, auth_list); in extract_auth_list() 273 copyAuthTag(record->application_id, TAG_APPLICATION_ID, auth_list); in extract_auth_list() 274 copyAuthTag(record->auth_timeout, TAG_AUTH_TIMEOUT, auth_list); in extract_auth_list() 275 copyAuthTag(record->creation_date_time, TAG_CREATION_DATETIME, auth_list); in extract_auth_list() 276 copyAuthTag(record->digest, TAG_DIGEST, auth_list); in extract_auth_list() 277 copyAuthTag(record->ec_curve, TAG_EC_CURVE, auth_list); in extract_auth_list() 278 copyAuthTag(record->key_size, TAG_KEY_SIZE, auth_list); in extract_auth_list() [all …]
|
/hardware/interfaces/keymaster/4.1/support/ |
D | attestation_record.cpp | 283 static ErrorCode extract_auth_list(const KM_AUTH_LIST* record, AuthorizationSet* auth_list) { in extract_auth_list() argument 284 if (!record) return ErrorCode::OK; in extract_auth_list() 286 copyAuthTag(record->active_date_time, TAG_ACTIVE_DATETIME, auth_list); in extract_auth_list() 287 copyAuthTag(record->algorithm, TAG_ALGORITHM, auth_list); in extract_auth_list() 288 copyAuthTag(record->application_id, TAG_APPLICATION_ID, auth_list); in extract_auth_list() 289 copyAuthTag(record->auth_timeout, TAG_AUTH_TIMEOUT, auth_list); in extract_auth_list() 290 copyAuthTag(record->creation_date_time, TAG_CREATION_DATETIME, auth_list); in extract_auth_list() 291 copyAuthTag(record->digest, TAG_DIGEST, auth_list); in extract_auth_list() 292 copyAuthTag(record->ec_curve, TAG_EC_CURVE, auth_list); in extract_auth_list() 293 copyAuthTag(record->key_size, TAG_KEY_SIZE, auth_list); in extract_auth_list() [all …]
|
/hardware/interfaces/keymaster/3.0/vts/functional/ |
D | attestation_record.cpp | 224 static ErrorCode extract_auth_list(const KM_AUTH_LIST* record, AuthorizationSet* auth_list) { in extract_auth_list() argument 225 if (!record) return ErrorCode::OK; in extract_auth_list() 227 copyAuthTag(record->active_date_time, TAG_ACTIVE_DATETIME, auth_list); in extract_auth_list() 228 copyAuthTag(record->algorithm, TAG_ALGORITHM, auth_list); in extract_auth_list() 229 copyAuthTag(record->all_applications, TAG_ALL_APPLICATIONS, auth_list); in extract_auth_list() 230 copyAuthTag(record->application_id, TAG_APPLICATION_ID, auth_list); in extract_auth_list() 231 copyAuthTag(record->auth_timeout, TAG_AUTH_TIMEOUT, auth_list); in extract_auth_list() 232 copyAuthTag(record->creation_date_time, TAG_CREATION_DATETIME, auth_list); in extract_auth_list() 233 copyAuthTag(record->digest, TAG_DIGEST, auth_list); in extract_auth_list() 234 copyAuthTag(record->ec_curve, TAG_EC_CURVE, auth_list); in extract_auth_list() [all …]
|
/hardware/qcom/wlan/legacy/qcwcn/wifi_hal/ |
D | list.cpp | 63 void del_from_list(struct list_head *record) in del_from_list() argument 65 list_del(record->prev, record->next); in del_from_list() 66 record->next = NULL; in del_from_list() 67 record->prev = NULL; in del_from_list()
|
/hardware/qcom/wlan/wcn6740/qcwcn/wifi_hal/ |
D | list.cpp | 63 void del_from_list(struct list_head *record) in del_from_list() argument 65 list_del(record->prev, record->next); in del_from_list() 66 record->next = NULL; in del_from_list() 67 record->prev = NULL; in del_from_list()
|
/hardware/interfaces/tv/tuner/1.0/vts/functional/ |
D | VtsHalTvTunerV1_0TestConfigurations.h | 59 static DvrRecordHardwareConnections record; variable 145 TunerTestingConfigReader1_0::connectDvrRecord(record); in connectHardwaresToTestCases() 158 if (record.support && !record.hasFrontendConnection && in validateConnections() 159 record.dvrSourceId.compare(emptyHardwareId) == 0) { in validateConnections() 175 feIsValid &= record.support && record.hasFrontendConnection in validateConnections() 176 ? frontendMap.find(record.frontendId) != frontendMap.end() in validateConnections() 194 if (record.support) { in validateConnections() 195 if (record.hasFrontendConnection) { in validateConnections() 196 if (frontendMap[record.frontendId].isSoftwareFe) { in validateConnections() 197 dvrIsValid &= dvrMap.find(record.dvrSoftwareFeId) != dvrMap.end(); in validateConnections() [all …]
|
D | VtsHalTvTunerV1_0TargetTest.cpp | 167 if (mLnbId || record.hasFrontendConnection) { in recordSingleFilterTest() 177 mFrontendTests.setSoftwareFrontendDvrConfig(dvrMap[record.dvrSoftwareFeId]); in recordSingleFilterTest() 182 dvrSourceConfig = dvrMap[record.dvrSourceId]; in recordSingleFilterTest() 200 mDvrTests.startRecordOutputThread(dvrConf.settings.record()); in recordSingleFilterTest() 205 if (mLnbId || record.hasFrontendConnection) { in recordSingleFilterTest() 217 if (mLnbId || record.hasFrontendConnection) { in recordSingleFilterTest() 230 if (mLnbId || record.hasFrontendConnection) { in recordSingleFilterTest() 273 if (record.hasFrontendConnection) { in attachSingleFilterToRecordDvrTest() 281 dvrSourceConfig = dvrMap[record.dvrSourceId]; in attachSingleFilterToRecordDvrTest() 311 if (record.hasFrontendConnection) { in attachSingleFilterToRecordDvrTest() [all …]
|
/hardware/interfaces/tv/tuner/1.1/vts/functional/ |
D | VtsHalTvTunerV1_1TestConfigurations.h | 68 static DvrRecordHardwareConnections record; variable 147 TunerTestingConfigReader1_0::connectDvrRecord(record); in connectHardwaresToTestCases() 151 if (record.support && !record.hasFrontendConnection && in validateConnections() 152 record.dvrSourceId.compare(emptyHardwareId) == 0) { in validateConnections() 158 feIsValid &= record.support ? frontendMap.find(record.frontendId) != frontendMap.end() : true; in validateConnections() 169 if (record.support) { in validateConnections() 170 if (record.hasFrontendConnection) { in validateConnections() 171 if (frontendMap[record.frontendId].config1_0.isSoftwareFe) { in validateConnections() 172 dvrIsValid &= dvrMap.find(record.dvrSoftwareFeId) != dvrMap.end(); in validateConnections() 175 dvrIsValid &= dvrMap.find(record.dvrSourceId) != dvrMap.end(); in validateConnections() [all …]
|
D | VtsHalTvTunerV1_1TargetTest.cpp | 145 if (record.hasFrontendConnection) { in recordSingleFilterTest() 152 mFrontendTests.setSoftwareFrontendDvrConfig(dvrMap[record.dvrSoftwareFeId]); in recordSingleFilterTest() 157 dvrSourceConfig = dvrMap[record.dvrSourceId]; in recordSingleFilterTest() 176 mDvrTests.startRecordOutputThread(dvrConf.settings.record()); in recordSingleFilterTest() 181 if (record.hasFrontendConnection) { in recordSingleFilterTest() 193 if (record.hasFrontendConnection) { in recordSingleFilterTest() 206 if (record.hasFrontendConnection) { in recordSingleFilterTest() 248 if (!record.support) { in TEST_P() 251 recordSingleFilterTest(filterMap[record.recordFilterId], frontendMap[record.frontendId], in TEST_P() 252 dvrMap[record.dvrRecordId]); in TEST_P()
|
/hardware/interfaces/memtrack/1.0/ |
D | types.hal | 33 * Only zero or one of these may be set in a record. 34 * If none are set, record is assumed to count shared + private memory. 39 * or separate video memory. Only zero or one of these may be set in a record. 40 * If none are set, record is assumed to count system + dedicated memory. 44 * memory that is protected. Only zero or one of these may be set in a record. 45 * If none are set, record is assumed to count secure + nonsecure memory. 76 * Each record consists of the size of the memory used by the process and 77 * flags indicate the all the MemtrackFlag that are valid for this record. 84 * are valid for this record.
|
/hardware/libhardware/modules/sensors/dynamic_sensor/ |
D | HidRawSensor.cpp | 181 ReportTranslateRecord record = { in HidRawSensor() local 201 record.index = mTranslateTable.size(); in HidRawSensor() 202 mTranslateTable.push_back(record); in HidRawSensor() 203 record.byteOffset += digest.bitSize / 8; in HidRawSensor() 254 ReportTranslateRecord record = { in processQuaternionUsage() local 266 record.index = 0; in processQuaternionUsage() 267 record.a = quat.a; in processQuaternionUsage() 268 record.byteOffset = (quat.bitOffset + quat.bitSize) / 8; in processQuaternionUsage() 269 mTranslateTable.push_back(record); in processQuaternionUsage() 271 record.index = 1; in processQuaternionUsage() [all …]
|
/hardware/interfaces/gatekeeper/1.0/software/ |
D | SoftGateKeeper.h | 101 virtual bool GetFailureRecord(uint32_t uid, secure_id_t user_id, failure_record_t* record, in GetFailureRecord() argument 109 memcpy(record, stored, sizeof(*record)); in GetFailureRecord() 121 virtual bool WriteFailureRecord(uint32_t uid, failure_record_t* record, bool /* secure */) { in WriteFailureRecord() argument 122 failure_map_[uid] = *record; in WriteFailureRecord()
|
/hardware/interfaces/tv/tuner/aidl/vts/functional/ |
D | VtsHalTvTunerTestConfigurations.h | 73 static DvrRecordHardwareConnections record; variable 451 record_configs = {record}; in generateRecordConfigurations() 770 record.support = true; in determineDvrRecord() 786 TunerTestingConfigAidlReader1_0::connectDvrRecord(record); in connectHardwaresToTestCases() 808 if (record.support && !record.hasFrontendConnection && in validateConnections() 809 record.dvrSourceId.compare(emptyHardwareId) == 0) { in validateConnections() 818 feIsValid &= record.support && record.hasFrontendConnection in validateConnections() 819 ? frontendMap.find(record.frontendId) != frontendMap.end() in validateConnections() 843 if (record.support) { in validateConnections() 844 if (record.hasFrontendConnection) { in validateConnections() [all …]
|
/hardware/interfaces/scripts/ |
D | list_hal_vts.py | 36 def emit(self, record): argument 37 super(CriticalHandler, self).emit(record) 38 if record.levelno >= logging.CRITICAL:
|
/hardware/interfaces/tv/tuner/1.0/ |
D | IDvr.hal | 22 * Digtal Video Record (DVR) interface provides record control on Demux's 30 * Message Queue. The FMQ is used to transfer record or playback data 57 * to record. 85 * or producing data for record. 98 * or producing data for record. 111 * not consumed by HAL for playback or the client for record yet.
|
/hardware/google/graphics/common/memtrack-pixel/core/ |
D | Memtrack.cpp | 53 MemtrackRecord record = { in getMemory() local 57 _aidl_return->emplace_back(record); in getMemory()
|
/hardware/interfaces/tv/tuner/config/ |
D | TunerTestingConfigReaderV1_0.h | 330 dvrMap[id].settings.record(readRecordSettings(dvrConfig)); in readDvrConfig1_0() 477 static void connectDvrRecord(DvrRecordHardwareConnections& record) { in connectDvrRecord() 480 record.support = true; in connectDvrRecord() 482 record.support = false; in connectDvrRecord() 486 record.recordFilterId = recordConfig.getRecordFilterConnection(); in connectDvrRecord() 487 record.dvrRecordId = recordConfig.getDvrRecordConnection(); in connectDvrRecord() 489 record.dvrSoftwareFeId = recordConfig.getDvrSoftwareFeConnection(); in connectDvrRecord() 492 record.hasFrontendConnection = true; in connectDvrRecord() 493 record.dvrSourceId = emptyHardwareId; in connectDvrRecord() 494 record.frontendId = recordConfig.getFrontendConnection(); in connectDvrRecord() [all …]
|
/hardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/current/android/hardware/tv/tuner/ |
D | DvrSettings.aidl | 38 android.hardware.tv.tuner.RecordSettings record;
|
/hardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/1/android/hardware/tv/tuner/ |
D | DvrSettings.aidl | 38 android.hardware.tv.tuner.RecordSettings record;
|
/hardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/2/android/hardware/tv/tuner/ |
D | DvrSettings.aidl | 38 android.hardware.tv.tuner.RecordSettings record;
|
/hardware/interfaces/tv/tuner/aidl/android/hardware/tv/tuner/ |
D | DvrSettings.aidl | 28 RecordSettings record;
|