Searched refs:value (Results 151 - 175 of 601) sorted by relevance

1234567891011>>

/system/media/audio_utils/include/audio_utils/
H A Dfifo_index.h37 * Load value of index now with memory order 'acquire'.
39 * \return Index value
44 * Store new value into index now with memory order 'release'.
46 * \param value New value to store into index
48 void storeRelease(uint32_t value);
52 * Wait for value of index to change from the specified expected value.
55 * \param expected Current/expected value of index.
56 * \param timeout Indicates the maximum time to block while waiting for value t
[all...]
/system/media/brillo/audio/audioservice/test/
H A Daudio_volume_handler_test.cpp68 std::string value; local
75 &value));
76 ASSERT_EQ(handler_.kDefaultCurrentIndex_, stoi(value));
95 std::string value; local
97 handler_.kv_store_->GetString(key, &value);
98 ASSERT_EQ(stoi(value), 100);
116 std::string value; local
117 handler_.kv_store_->GetString("foo", &value);
118 EXPECT_EQ(stoi(value), 100);
125 event.value
[all...]
/system/security/keystore/
H A Dkeystore_get_wifi_hidl.cpp36 ssize_t keystore_get(const char *key, size_t keyLength, uint8_t** value) { argument
37 if (key == NULL || keyLength == 0 || value == NULL) {
53 *value = returnedValue.releaseData();
/system/media/radio/src/
H A Dradio_metadata.c104 const void *value,
129 memcpy(entry->data, value, size);
214 const int32_t value)
221 key, type, &value, sizeof(int32_t));
226 const char *value)
230 value == NULL || strlen(value) >= RADIO_METADATA_TEXT_LEN_MAX) {
233 return add_metadata((radio_metadata_buffer_t **)metadata, key, type, value, strlen(value) + 1);
238 const unsigned char *value,
101 add_metadata(radio_metadata_buffer_t **metadata_ptr, const radio_metadata_key_t key, const radio_metadata_type_t type, const void *value, const size_t size) argument
212 radio_metadata_add_int(radio_metadata_t **metadata, const radio_metadata_key_t key, const int32_t value) argument
224 radio_metadata_add_text(radio_metadata_t **metadata, const radio_metadata_key_t key, const char *value) argument
236 radio_metadata_add_raw(radio_metadata_t **metadata, const radio_metadata_key_t key, const unsigned char *value, const size_t size) argument
287 void *value; local
370 radio_metadata_get_at_index(const radio_metadata_t *metadata, const uint32_t index, radio_metadata_key_t *key, radio_metadata_type_t *type, void **value, size_t *size) argument
398 radio_metadata_get_from_key(const radio_metadata_t *metadata, const radio_metadata_key_t key, radio_metadata_type_t *type, void **value, size_t *size) argument
[all...]
/system/bt/btif/src/
H A Dbtif_config.cc258 bool btif_config_get_int(const char* section, const char* key, int* value) { argument
262 CHECK(value != NULL);
266 if (ret) *value = config_get_int(config, section, key, *value);
271 bool btif_config_set_int(const char* section, const char* key, int value) { argument
277 config_set_int(config, section, key, value);
282 bool btif_config_get_str(const char* section, const char* key, char* value, argument
287 CHECK(value != NULL);
294 strlcpy(value, stored_value, *size_bytes);
297 *size_bytes = strlen(value)
301 btif_config_set_str(const char* section, const char* key, const char* value) argument
313 btif_config_get_bin(const char* section, const char* key, uint8_t* value, size_t* length) argument
351 btif_config_set_bin(const char* section, const char* key, const uint8_t* value, size_t length) argument
[all...]
H A Dbtif_storage.cc190 char value[1024]; local
191 if (prop->len <= 0 || prop->len > (int)sizeof(value) - 1) {
202 strncpy(value, (char*)prop->val, prop->len);
203 value[prop->len] = '\0';
205 btif_config_set_str(bdstr, BTIF_STORAGE_PATH_REMOTE_NAME, value);
207 btif_config_set_str("Adapter", BTIF_STORAGE_KEY_ADAPTER_NAME, value);
210 strncpy(value, (char*)prop->val, prop->len);
211 value[prop->len] = '\0';
212 btif_config_set_str(bdstr, BTIF_STORAGE_PATH_REMOTE_ALIASE, value);
233 value[
341 char value[1280]; local
1263 int value; local
1379 int value; local
[all...]
H A Dbtif_gatt_client.cc121 memcpy(data.value, p_data->notify.value, p_data->notify.len);
317 // Closure will own this value and free it.
383 uint16_t len, uint8_t* value, void* data) {
388 params->value.len = len;
390 if (len > 0) memcpy(params->value.value, value, len);
405 uint16_t handle, uint16_t len, uint8_t* value,
411 params->value
[all...]
/system/chre/apps/chqts/src/general_test/
H A Dbasic_sensor_tests.cc25 static void checkFloat(float value, float extremeLow, float extremeHigh) { argument
26 if ((value < extremeLow) || (value > extremeHigh)) {
27 uint32_t i = static_cast<uint32_t>(value);
59 checkFloat(data->readings[i].value, extremeLow, extremeHigh);
/system/core/libunwindstack/
H A DDwarfDebugFrame.cpp85 uint8_t value; local
87 if (!memory_.ReadBytes(&value, 1)) {
91 } while (value & 0x80);
95 if (!memory_.ReadBytes(&value, 1)) {
99 } while (value & 0x80);
107 if (!memory_.ReadBytes(&value, 1)) {
111 } while (value & 0x80);
116 if (!memory_.ReadBytes(&value, 1)) {
120 } while (value & 0x80);
138 uint64_t value; local
[all...]
H A DDwarfOp.cpp87 uint64_t value; local
88 if (!memory_->ReadEncodedValue<AddressType>(op->operands[i], &value)) {
92 operands_.push_back(value);
116 uint64_t value; local
117 if (!memory_->ReadEncodedValue<AddressType>(op->operands[i], &value)) {
120 log_string += ' ' + std::to_string(value);
143 AddressType value; local
144 if (!regular_memory()->Read(addr, &value, sizeof(value))) {
148 stack_.push_front(value);
161 AddressType value = 0; local
[all...]
H A DDwarfCfa.cpp112 uint64_t value; local
113 if (!memory_->ReadEncodedValue<AddressType>(cfa->operands[i], &value)) {
117 operands_.push_back(value);
131 std::string DwarfCfa<AddressType>::GetOperandString(uint8_t operand, uint64_t value, argument
136 string = " register(" + std::to_string(value) + ")";
139 string += " " + std::to_string(static_cast<SignedType>(value));
142 *cur_pc += value;
143 // Fall through to log the value.
145 string += " " + std::to_string(value);
148 *cur_pc = value;
175 uint8_t value; local
212 uint64_t value; local
226 uint8_t value; local
438 SignedType value = static_cast<SignedType>(operands_[1]) * fde_->cie->data_alignment_factor; local
[all...]
/system/extras/tests/icachetest/
H A DProfiler.h88 uint64_t value; member in struct:utils::Profiler::Counters::__anon1774
97 lhs.counters[i].value -= rhs.counters[i].value;
103 uint64_t getInstructions() const { return counters[INSTRUCTIONS].value; }
104 uint64_t getCpuCycles() const { return counters[CPU_CYCLES].value; }
105 uint64_t getL1DReferences() const { return counters[DCACHE_REFS].value; }
106 uint64_t getL1DMisses() const { return counters[DCACHE_MISSES].value; }
107 uint64_t getL1IReferences() const { return counters[ICACHE_REFS].value; }
108 uint64_t getL1IMisses() const { return counters[ICACHE_MISSES].value; }
109 uint64_t getBranchInstructions() const { return counters[BRANCHES].value; }
[all...]
/system/extras/simpleperf/
H A Dutils.h30 static inline uint64_t Align(uint64_t value, uint64_t alignment) { argument
31 return (value + alignment - 1) & ~(alignment - 1);
110 static_assert(std::is_standard_layout<T>::value, "not standard layout");
117 static_assert(std::is_standard_layout<T>::value, "not standard layout");
125 static_assert(std::is_standard_layout<T>::value, "not standard layout");
132 static_assert(std::is_standard_layout<T>::value, "not standard layout");
141 bool IsPowerOfTwo(uint64_t value);
/system/tpm/trunks/
H A Dtpm_generated.h1084 UINT32 value; member in struct:trunks::TPMS_TAGGED_PROPERTY
1658 TRUNKS_EXPORT TPM_RC Serialize_uint8_t(const uint8_t& value,
1662 uint8_t* value,
1665 TRUNKS_EXPORT TPM_RC Serialize_int8_t(const int8_t& value, std::string* buffer);
1668 int8_t* value,
1671 TRUNKS_EXPORT TPM_RC Serialize_int(const int& value, std::string* buffer);
1674 int* value,
1677 TRUNKS_EXPORT TPM_RC Serialize_uint16_t(const uint16_t& value,
1681 uint16_t* value,
1684 TRUNKS_EXPORT TPM_RC Serialize_int16_t(const int16_t& value,
[all...]
H A Dtpm_generated.cc487 TPM_RC Serialize_uint8_t(const uint8_t& value, std::string* buffer) { argument
489 uint8_t value_net = value;
492 value_net = base::HostToNet16(value);
495 value_net = base::HostToNet32(value);
498 value_net = base::HostToNet64(value);
509 uint8_t* value,
518 *value = base::NetToHost16(value_net);
521 *value = base::NetToHost32(value_net);
524 *value = base::NetToHost64(value_net);
527 *value
508 Parse_uint8_t(std::string* buffer, uint8_t* value, std::string* value_bytes) argument
536 Serialize_int8_t(const int8_t& value, std::string* buffer) argument
557 Parse_int8_t(std::string* buffer, int8_t* value, std::string* value_bytes) argument
585 Serialize_int(const int& value, std::string* buffer) argument
606 Parse_int(std::string* buffer, int* value, std::string* value_bytes) argument
632 Serialize_uint16_t(const uint16_t& value, std::string* buffer) argument
653 Parse_uint16_t(std::string* buffer, uint16_t* value, std::string* value_bytes) argument
681 Serialize_int16_t(const int16_t& value, std::string* buffer) argument
702 Parse_int16_t(std::string* buffer, int16_t* value, std::string* value_bytes) argument
730 Serialize_uint32_t(const uint32_t& value, std::string* buffer) argument
751 Parse_uint32_t(std::string* buffer, uint32_t* value, std::string* value_bytes) argument
779 Serialize_int32_t(const int32_t& value, std::string* buffer) argument
800 Parse_int32_t(std::string* buffer, int32_t* value, std::string* value_bytes) argument
828 Serialize_uint64_t(const uint64_t& value, std::string* buffer) argument
849 Parse_uint64_t(std::string* buffer, uint64_t* value, std::string* value_bytes) argument
877 Serialize_int64_t(const int64_t& value, std::string* buffer) argument
898 Parse_int64_t(std::string* buffer, int64_t* value, std::string* value_bytes) argument
926 Serialize_UINT8(const UINT8& value, std::string* buffer) argument
931 Parse_UINT8(std::string* buffer, UINT8* value, std::string* value_bytes) argument
938 Serialize_BYTE(const BYTE& value, std::string* buffer) argument
943 Parse_BYTE(std::string* buffer, BYTE* value, std::string* value_bytes) argument
948 Serialize_INT8(const INT8& value, std::string* buffer) argument
953 Parse_INT8(std::string* buffer, INT8* value, std::string* value_bytes) argument
958 Serialize_BOOL(const BOOL& value, std::string* buffer) argument
963 Parse_BOOL(std::string* buffer, BOOL* value, std::string* value_bytes) argument
968 Serialize_UINT16(const UINT16& value, std::string* buffer) argument
973 Parse_UINT16(std::string* buffer, UINT16* value, std::string* value_bytes) argument
980 Serialize_INT16(const INT16& value, std::string* buffer) argument
985 Parse_INT16(std::string* buffer, INT16* value, std::string* value_bytes) argument
992 Serialize_UINT32(const UINT32& value, std::string* buffer) argument
997 Parse_UINT32(std::string* buffer, UINT32* value, std::string* value_bytes) argument
1004 Serialize_INT32(const INT32& value, std::string* buffer) argument
1009 Parse_INT32(std::string* buffer, INT32* value, std::string* value_bytes) argument
1016 Serialize_UINT64(const UINT64& value, std::string* buffer) argument
1021 Parse_UINT64(std::string* buffer, UINT64* value, std::string* value_bytes) argument
1028 Serialize_INT64(const INT64& value, std::string* buffer) argument
1033 Parse_INT64(std::string* buffer, INT64* value, std::string* value_bytes) argument
1040 Serialize_TPM_ALGORITHM_ID(const TPM_ALGORITHM_ID& value, std::string* buffer) argument
1046 Parse_TPM_ALGORITHM_ID(std::string* buffer, TPM_ALGORITHM_ID* value, std::string* value_bytes) argument
1053 Serialize_TPM_MODIFIER_INDICATOR(const TPM_MODIFIER_INDICATOR& value, std::string* buffer) argument
1059 Parse_TPM_MODIFIER_INDICATOR(std::string* buffer, TPM_MODIFIER_INDICATOR* value, std::string* value_bytes) argument
1066 Serialize_TPM_AUTHORIZATION_SIZE(const TPM_AUTHORIZATION_SIZE& value, std::string* buffer) argument
1072 Parse_TPM_AUTHORIZATION_SIZE(std::string* buffer, TPM_AUTHORIZATION_SIZE* value, std::string* value_bytes) argument
1079 Serialize_TPM_PARAMETER_SIZE(const TPM_PARAMETER_SIZE& value, std::string* buffer) argument
1085 Parse_TPM_PARAMETER_SIZE(std::string* buffer, TPM_PARAMETER_SIZE* value, std::string* value_bytes) argument
1092 Serialize_TPM_KEY_SIZE(const TPM_KEY_SIZE& value, std::string* buffer) argument
1097 Parse_TPM_KEY_SIZE(std::string* buffer, TPM_KEY_SIZE* value, std::string* value_bytes) argument
1104 Serialize_TPM_KEY_BITS(const TPM_KEY_BITS& value, std::string* buffer) argument
1109 Parse_TPM_KEY_BITS(std::string* buffer, TPM_KEY_BITS* value, std::string* value_bytes) argument
1116 Serialize_TPM_HANDLE(const TPM_HANDLE& value, std::string* buffer) argument
1121 Parse_TPM_HANDLE(std::string* buffer, TPM_HANDLE* value, std::string* value_bytes) argument
1128 Serialize_TPM2B_DIGEST(const TPM2B_DIGEST& value, std::string* buffer) argument
1149 Parse_TPM2B_DIGEST(std::string* buffer, TPM2B_DIGEST* value, std::string* value_bytes) argument
1186 Serialize_TPM2B_NONCE(const TPM2B_NONCE& value, std::string* buffer) argument
1191 Parse_TPM2B_NONCE(std::string* buffer, TPM2B_NONCE* value, std::string* value_bytes) argument
1198 Serialize_TPM2B_AUTH(const TPM2B_AUTH& value, std::string* buffer) argument
1203 Parse_TPM2B_AUTH(std::string* buffer, TPM2B_AUTH* value, std::string* value_bytes) argument
1210 Serialize_TPM2B_OPERAND(const TPM2B_OPERAND& value, std::string* buffer) argument
1216 Parse_TPM2B_OPERAND(std::string* buffer, TPM2B_OPERAND* value, std::string* value_bytes) argument
1223 Serialize_TPM_ALG_ID(const TPM_ALG_ID& value, std::string* buffer) argument
1228 Parse_TPM_ALG_ID(std::string* buffer, TPM_ALG_ID* value, std::string* value_bytes) argument
1235 Serialize_TPMI_ALG_HASH(const TPMI_ALG_HASH& value, std::string* buffer) argument
1241 Parse_TPMI_ALG_HASH(std::string* buffer, TPMI_ALG_HASH* value, std::string* value_bytes) argument
1248 Serialize_TPMS_SCHEME_SIGHASH(const TPMS_SCHEME_SIGHASH& value, std::string* buffer) argument
1260 Parse_TPMS_SCHEME_SIGHASH(std::string* buffer, TPMS_SCHEME_SIGHASH* value, std::string* value_bytes) argument
1273 Serialize_TPMS_SCHEME_HMAC(const TPMS_SCHEME_HMAC& value, std::string* buffer) argument
1279 Parse_TPMS_SCHEME_HMAC(std::string* buffer, TPMS_SCHEME_HMAC* value, std::string* value_bytes) argument
1286 Serialize_TPMS_SCHEME_RSASSA(const TPMS_SCHEME_RSASSA& value, std::string* buffer) argument
1292 Parse_TPMS_SCHEME_RSASSA(std::string* buffer, TPMS_SCHEME_RSASSA* value, std::string* value_bytes) argument
1299 Serialize_TPMS_SCHEME_RSAPSS(const TPMS_SCHEME_RSAPSS& value, std::string* buffer) argument
1305 Parse_TPMS_SCHEME_RSAPSS(std::string* buffer, TPMS_SCHEME_RSAPSS* value, std::string* value_bytes) argument
1312 Serialize_TPMS_SCHEME_ECDSA(const TPMS_SCHEME_ECDSA& value, std::string* buffer) argument
1318 Parse_TPMS_SCHEME_ECDSA(std::string* buffer, TPMS_SCHEME_ECDSA* value, std::string* value_bytes) argument
1325 Serialize_TPMS_SCHEME_SM2(const TPMS_SCHEME_SM2& value, std::string* buffer) argument
1331 Parse_TPMS_SCHEME_SM2(std::string* buffer, TPMS_SCHEME_SM2* value, std::string* value_bytes) argument
1338 Serialize_TPMS_SCHEME_ECSCHNORR(const TPMS_SCHEME_ECSCHNORR& value, std::string* buffer) argument
1344 Parse_TPMS_SCHEME_ECSCHNORR(std::string* buffer, TPMS_SCHEME_ECSCHNORR* value, std::string* value_bytes) argument
1351 Serialize_TPMI_YES_NO(const TPMI_YES_NO& value, std::string* buffer) argument
1356 Parse_TPMI_YES_NO(std::string* buffer, TPMI_YES_NO* value, std::string* value_bytes) argument
1363 Serialize_TPMI_DH_OBJECT(const TPMI_DH_OBJECT& value, std::string* buffer) argument
1369 Parse_TPMI_DH_OBJECT(std::string* buffer, TPMI_DH_OBJECT* value, std::string* value_bytes) argument
1376 Serialize_TPMI_DH_PERSISTENT(const TPMI_DH_PERSISTENT& value, std::string* buffer) argument
1382 Parse_TPMI_DH_PERSISTENT(std::string* buffer, TPMI_DH_PERSISTENT* value, std::string* value_bytes) argument
1389 Serialize_TPMI_DH_ENTITY(const TPMI_DH_ENTITY& value, std::string* buffer) argument
1395 Parse_TPMI_DH_ENTITY(std::string* buffer, TPMI_DH_ENTITY* value, std::string* value_bytes) argument
1402 Serialize_TPMI_DH_PCR(const TPMI_DH_PCR& value, std::string* buffer) argument
1407 Parse_TPMI_DH_PCR(std::string* buffer, TPMI_DH_PCR* value, std::string* value_bytes) argument
1414 Serialize_TPMI_SH_AUTH_SESSION(const TPMI_SH_AUTH_SESSION& value, std::string* buffer) argument
1420 Parse_TPMI_SH_AUTH_SESSION(std::string* buffer, TPMI_SH_AUTH_SESSION* value, std::string* value_bytes) argument
1427 Serialize_TPMI_SH_HMAC(const TPMI_SH_HMAC& value, std::string* buffer) argument
1432 Parse_TPMI_SH_HMAC(std::string* buffer, TPMI_SH_HMAC* value, std::string* value_bytes) argument
1439 Serialize_TPMI_SH_POLICY(const TPMI_SH_POLICY& value, std::string* buffer) argument
1445 Parse_TPMI_SH_POLICY(std::string* buffer, TPMI_SH_POLICY* value, std::string* value_bytes) argument
1452 Serialize_TPMI_DH_CONTEXT(const TPMI_DH_CONTEXT& value, std::string* buffer) argument
1458 Parse_TPMI_DH_CONTEXT(std::string* buffer, TPMI_DH_CONTEXT* value, std::string* value_bytes) argument
1465 Serialize_TPMI_RH_HIERARCHY(const TPMI_RH_HIERARCHY& value, std::string* buffer) argument
1471 Parse_TPMI_RH_HIERARCHY(std::string* buffer, TPMI_RH_HIERARCHY* value, std::string* value_bytes) argument
1478 Serialize_TPMI_RH_ENABLES(const TPMI_RH_ENABLES& value, std::string* buffer) argument
1484 Parse_TPMI_RH_ENABLES(std::string* buffer, TPMI_RH_ENABLES* value, std::string* value_bytes) argument
1491 Serialize_TPMI_RH_HIERARCHY_AUTH(const TPMI_RH_HIERARCHY_AUTH& value, std::string* buffer) argument
1497 Parse_TPMI_RH_HIERARCHY_AUTH(std::string* buffer, TPMI_RH_HIERARCHY_AUTH* value, std::string* value_bytes) argument
1504 Serialize_TPMI_RH_PLATFORM(const TPMI_RH_PLATFORM& value, std::string* buffer) argument
1510 Parse_TPMI_RH_PLATFORM(std::string* buffer, TPMI_RH_PLATFORM* value, std::string* value_bytes) argument
1517 Serialize_TPMI_RH_OWNER(const TPMI_RH_OWNER& value, std::string* buffer) argument
1523 Parse_TPMI_RH_OWNER(std::string* buffer, TPMI_RH_OWNER* value, std::string* value_bytes) argument
1530 Serialize_TPMI_RH_ENDORSEMENT(const TPMI_RH_ENDORSEMENT& value, std::string* buffer) argument
1536 Parse_TPMI_RH_ENDORSEMENT(std::string* buffer, TPMI_RH_ENDORSEMENT* value, std::string* value_bytes) argument
1543 Serialize_TPMI_RH_PROVISION(const TPMI_RH_PROVISION& value, std::string* buffer) argument
1549 Parse_TPMI_RH_PROVISION(std::string* buffer, TPMI_RH_PROVISION* value, std::string* value_bytes) argument
1556 Serialize_TPMI_RH_CLEAR(const TPMI_RH_CLEAR& value, std::string* buffer) argument
1562 Parse_TPMI_RH_CLEAR(std::string* buffer, TPMI_RH_CLEAR* value, std::string* value_bytes) argument
1569 Serialize_TPMI_RH_NV_AUTH(const TPMI_RH_NV_AUTH& value, std::string* buffer) argument
1575 Parse_TPMI_RH_NV_AUTH(std::string* buffer, TPMI_RH_NV_AUTH* value, std::string* value_bytes) argument
1582 Serialize_TPMI_RH_LOCKOUT(const TPMI_RH_LOCKOUT& value, std::string* buffer) argument
1588 Parse_TPMI_RH_LOCKOUT(std::string* buffer, TPMI_RH_LOCKOUT* value, std::string* value_bytes) argument
1595 Serialize_TPMI_RH_NV_INDEX(const TPMI_RH_NV_INDEX& value, std::string* buffer) argument
1601 Parse_TPMI_RH_NV_INDEX(std::string* buffer, TPMI_RH_NV_INDEX* value, std::string* value_bytes) argument
1608 Serialize_TPMI_ALG_ASYM(const TPMI_ALG_ASYM& value, std::string* buffer) argument
1614 Parse_TPMI_ALG_ASYM(std::string* buffer, TPMI_ALG_ASYM* value, std::string* value_bytes) argument
1621 Serialize_TPMI_ALG_SYM(const TPMI_ALG_SYM& value, std::string* buffer) argument
1626 Parse_TPMI_ALG_SYM(std::string* buffer, TPMI_ALG_SYM* value, std::string* value_bytes) argument
1633 Serialize_TPMI_ALG_SYM_OBJECT(const TPMI_ALG_SYM_OBJECT& value, std::string* buffer) argument
1639 Parse_TPMI_ALG_SYM_OBJECT(std::string* buffer, TPMI_ALG_SYM_OBJECT* value, std::string* value_bytes) argument
1646 Serialize_TPMI_ALG_SYM_MODE(const TPMI_ALG_SYM_MODE& value, std::string* buffer) argument
1652 Parse_TPMI_ALG_SYM_MODE(std::string* buffer, TPMI_ALG_SYM_MODE* value, std::string* value_bytes) argument
1659 Serialize_TPMI_ALG_KDF(const TPMI_ALG_KDF& value, std::string* buffer) argument
1664 Parse_TPMI_ALG_KDF(std::string* buffer, TPMI_ALG_KDF* value, std::string* value_bytes) argument
1671 Serialize_TPMI_ALG_SIG_SCHEME(const TPMI_ALG_SIG_SCHEME& value, std::string* buffer) argument
1677 Parse_TPMI_ALG_SIG_SCHEME(std::string* buffer, TPMI_ALG_SIG_SCHEME* value, std::string* value_bytes) argument
1684 Serialize_TPMI_ECC_KEY_EXCHANGE(const TPMI_ECC_KEY_EXCHANGE& value, std::string* buffer) argument
1690 Parse_TPMI_ECC_KEY_EXCHANGE(std::string* buffer, TPMI_ECC_KEY_EXCHANGE* value, std::string* value_bytes) argument
1697 Serialize_TPM_ST(const TPM_ST& value, std::string* buffer) argument
1702 Parse_TPM_ST(std::string* buffer, TPM_ST* value, std::string* value_bytes) argument
1709 Serialize_TPMI_ST_COMMAND_TAG(const TPMI_ST_COMMAND_TAG& value, std::string* buffer) argument
1715 Parse_TPMI_ST_COMMAND_TAG(std::string* buffer, TPMI_ST_COMMAND_TAG* value, std::string* value_bytes) argument
1722 Serialize_TPMI_ST_ATTEST(const TPMI_ST_ATTEST& value, std::string* buffer) argument
1728 Parse_TPMI_ST_ATTEST(std::string* buffer, TPMI_ST_ATTEST* value, std::string* value_bytes) argument
1735 Serialize_TPMI_AES_KEY_BITS(const TPMI_AES_KEY_BITS& value, std::string* buffer) argument
1741 Parse_TPMI_AES_KEY_BITS(std::string* buffer, TPMI_AES_KEY_BITS* value, std::string* value_bytes) argument
1748 Serialize_TPMI_SM4_KEY_BITS(const TPMI_SM4_KEY_BITS& value, std::string* buffer) argument
1754 Parse_TPMI_SM4_KEY_BITS(std::string* buffer, TPMI_SM4_KEY_BITS* value, std::string* value_bytes) argument
1761 Serialize_TPMI_ALG_KEYEDHASH_SCHEME( const TPMI_ALG_KEYEDHASH_SCHEME& value, std::string* buffer) argument
1768 Parse_TPMI_ALG_KEYEDHASH_SCHEME(std::string* buffer, TPMI_ALG_KEYEDHASH_SCHEME* value, std::string* value_bytes) argument
1775 Serialize_TPMI_ALG_ASYM_SCHEME(const TPMI_ALG_ASYM_SCHEME& value, std::string* buffer) argument
1781 Parse_TPMI_ALG_ASYM_SCHEME(std::string* buffer, TPMI_ALG_ASYM_SCHEME* value, std::string* value_bytes) argument
1788 Serialize_TPMI_ALG_RSA_SCHEME(const TPMI_ALG_RSA_SCHEME& value, std::string* buffer) argument
1794 Parse_TPMI_ALG_RSA_SCHEME(std::string* buffer, TPMI_ALG_RSA_SCHEME* value, std::string* value_bytes) argument
1801 Serialize_TPMI_ALG_RSA_DECRYPT(const TPMI_ALG_RSA_DECRYPT& value, std::string* buffer) argument
1807 Parse_TPMI_ALG_RSA_DECRYPT(std::string* buffer, TPMI_ALG_RSA_DECRYPT* value, std::string* value_bytes) argument
1814 Serialize_TPMI_RSA_KEY_BITS(const TPMI_RSA_KEY_BITS& value, std::string* buffer) argument
1820 Parse_TPMI_RSA_KEY_BITS(std::string* buffer, TPMI_RSA_KEY_BITS* value, std::string* value_bytes) argument
1827 Serialize_TPMI_ALG_ECC_SCHEME(const TPMI_ALG_ECC_SCHEME& value, std::string* buffer) argument
1833 Parse_TPMI_ALG_ECC_SCHEME(std::string* buffer, TPMI_ALG_ECC_SCHEME* value, std::string* value_bytes) argument
1840 Serialize_TPM_ECC_CURVE(const TPM_ECC_CURVE& value, std::string* buffer) argument
1846 Parse_TPM_ECC_CURVE(std::string* buffer, TPM_ECC_CURVE* value, std::string* value_bytes) argument
1853 Serialize_TPMI_ECC_CURVE(const TPMI_ECC_CURVE& value, std::string* buffer) argument
1859 Parse_TPMI_ECC_CURVE(std::string* buffer, TPMI_ECC_CURVE* value, std::string* value_bytes) argument
1866 Serialize_TPMI_ALG_PUBLIC(const TPMI_ALG_PUBLIC& value, std::string* buffer) argument
1872 Parse_TPMI_ALG_PUBLIC(std::string* buffer, TPMI_ALG_PUBLIC* value, std::string* value_bytes) argument
1879 Serialize_TPMA_ALGORITHM(const TPMA_ALGORITHM& value, std::string* buffer) argument
1885 Parse_TPMA_ALGORITHM(std::string* buffer, TPMA_ALGORITHM* value, std::string* value_bytes) argument
1892 Serialize_TPMA_OBJECT(const TPMA_OBJECT& value, std::string* buffer) argument
1897 Parse_TPMA_OBJECT(std::string* buffer, TPMA_OBJECT* value, std::string* value_bytes) argument
1904 Serialize_TPMA_SESSION(const TPMA_SESSION& value, std::string* buffer) argument
1909 Parse_TPMA_SESSION(std::string* buffer, TPMA_SESSION* value, std::string* value_bytes) argument
1916 Serialize_TPMA_LOCALITY(const TPMA_LOCALITY& value, std::string* buffer) argument
1922 Parse_TPMA_LOCALITY(std::string* buffer, TPMA_LOCALITY* value, std::string* value_bytes) argument
1929 Serialize_TPMA_PERMANENT(const TPMA_PERMANENT& value, std::string* buffer) argument
1935 Parse_TPMA_PERMANENT(std::string* buffer, TPMA_PERMANENT* value, std::string* value_bytes) argument
1942 Serialize_TPMA_STARTUP_CLEAR(const TPMA_STARTUP_CLEAR& value, std::string* buffer) argument
1948 Parse_TPMA_STARTUP_CLEAR(std::string* buffer, TPMA_STARTUP_CLEAR* value, std::string* value_bytes) argument
1955 Serialize_TPMA_MEMORY(const TPMA_MEMORY& value, std::string* buffer) argument
1960 Parse_TPMA_MEMORY(std::string* buffer, TPMA_MEMORY* value, std::string* value_bytes) argument
1967 Serialize_TPM_CC(const TPM_CC& value, std::string* buffer) argument
1972 Parse_TPM_CC(std::string* buffer, TPM_CC* value, std::string* value_bytes) argument
1979 Serialize_TPMA_CC(const TPMA_CC& value, std::string* buffer) argument
1984 Parse_TPMA_CC(std::string* buffer, TPMA_CC* value, std::string* value_bytes) argument
1991 Serialize_TPM_NV_INDEX(const TPM_NV_INDEX& value, std::string* buffer) argument
1996 Parse_TPM_NV_INDEX(std::string* buffer, TPM_NV_INDEX* value, std::string* value_bytes) argument
2003 Serialize_TPMA_NV(const TPMA_NV& value, std::string* buffer) argument
2008 Parse_TPMA_NV(std::string* buffer, TPMA_NV* value, std::string* value_bytes) argument
2015 Serialize_TPM_SPEC(const TPM_SPEC& value, std::string* buffer) argument
2020 Parse_TPM_SPEC(std::string* buffer, TPM_SPEC* value, std::string* value_bytes) argument
2027 Serialize_TPM_GENERATED(const TPM_GENERATED& value, std::string* buffer) argument
2033 Parse_TPM_GENERATED(std::string* buffer, TPM_GENERATED* value, std::string* value_bytes) argument
2040 Serialize_TPM_RC(const TPM_RC& value, std::string* buffer) argument
2045 Parse_TPM_RC(std::string* buffer, TPM_RC* value, std::string* value_bytes) argument
2052 Serialize_TPM_CLOCK_ADJUST(const TPM_CLOCK_ADJUST& value, std::string* buffer) argument
2058 Parse_TPM_CLOCK_ADJUST(std::string* buffer, TPM_CLOCK_ADJUST* value, std::string* value_bytes) argument
2065 Serialize_TPM_EO(const TPM_EO& value, std::string* buffer) argument
2070 Parse_TPM_EO(std::string* buffer, TPM_EO* value, std::string* value_bytes) argument
2077 Serialize_TPM_SU(const TPM_SU& value, std::string* buffer) argument
2082 Parse_TPM_SU(std::string* buffer, TPM_SU* value, std::string* value_bytes) argument
2089 Serialize_TPM_SE(const TPM_SE& value, std::string* buffer) argument
2094 Parse_TPM_SE(std::string* buffer, TPM_SE* value, std::string* value_bytes) argument
2101 Serialize_TPM_CAP(const TPM_CAP& value, std::string* buffer) argument
2106 Parse_TPM_CAP(std::string* buffer, TPM_CAP* value, std::string* value_bytes) argument
2113 Serialize_TPM_PT(const TPM_PT& value, std::string* buffer) argument
2118 Parse_TPM_PT(std::string* buffer, TPM_PT* value, std::string* value_bytes) argument
2125 Serialize_TPM_PT_PCR(const TPM_PT_PCR& value, std::string* buffer) argument
2130 Parse_TPM_PT_PCR(std::string* buffer, TPM_PT_PCR* value, std::string* value_bytes) argument
2137 Serialize_TPM_PS(const TPM_PS& value, std::string* buffer) argument
2142 Parse_TPM_PS(std::string* buffer, TPM_PS* value, std::string* value_bytes) argument
2149 Serialize_TPM_HT(const TPM_HT& value, std::string* buffer) argument
2154 Parse_TPM_HT(std::string* buffer, TPM_HT* value, std::string* value_bytes) argument
2161 Serialize_TPM_RH(const TPM_RH& value, std::string* buffer) argument
2166 Parse_TPM_RH(std::string* buffer, TPM_RH* value, std::string* value_bytes) argument
2173 Serialize_TPM_HC(const TPM_HC& value, std::string* buffer) argument
2178 Parse_TPM_HC(std::string* buffer, TPM_HC* value, std::string* value_bytes) argument
2185 Serialize_TPMS_ALGORITHM_DESCRIPTION( const TPMS_ALGORITHM_DESCRIPTION& value, std::string* buffer) argument
2203 Parse_TPMS_ALGORITHM_DESCRIPTION(std::string* buffer, TPMS_ALGORITHM_DESCRIPTION* value, std::string* value_bytes) argument
2221 Serialize_TPMU_HA(const TPMU_HA& value, TPMI_ALG_HASH selector, std::string* buffer) argument
2293 Parse_TPMU_HA(std::string* buffer, TPMI_ALG_HASH selector, TPMU_HA* value, std::string* value_bytes) argument
2366 Serialize_TPMT_HA(const TPMT_HA& value, std::string* buffer) argument
2382 Parse_TPMT_HA(std::string* buffer, TPMT_HA* value, std::string* value_bytes) argument
2400 Serialize_TPM2B_DATA(const TPM2B_DATA& value, std::string* buffer) argument
2421 Parse_TPM2B_DATA(std::string* buffer, TPM2B_DATA* value, std::string* value_bytes) argument
2458 Serialize_TPM2B_EVENT(const TPM2B_EVENT& value, std::string* buffer) argument
2479 Parse_TPM2B_EVENT(std::string* buffer, TPM2B_EVENT* value, std::string* value_bytes) argument
2516 Serialize_TPM2B_MAX_BUFFER(const TPM2B_MAX_BUFFER& value, std::string* buffer) argument
2538 Parse_TPM2B_MAX_BUFFER(std::string* buffer, TPM2B_MAX_BUFFER* value, std::string* value_bytes) argument
2575 Serialize_TPM2B_MAX_NV_BUFFER(const TPM2B_MAX_NV_BUFFER& value, std::string* buffer) argument
2597 Parse_TPM2B_MAX_NV_BUFFER(std::string* buffer, TPM2B_MAX_NV_BUFFER* value, std::string* value_bytes) argument
2634 Serialize_TPM2B_TIMEOUT(const TPM2B_TIMEOUT& value, std::string* buffer) argument
2656 Parse_TPM2B_TIMEOUT(std::string* buffer, TPM2B_TIMEOUT* value, std::string* value_bytes) argument
2693 Serialize_TPM2B_IV(const TPM2B_IV& value, std::string* buffer) argument
2714 Parse_TPM2B_IV(std::string* buffer, TPM2B_IV* value, std::string* value_bytes) argument
2751 Serialize_TPM2B_NAME(const TPM2B_NAME& value, std::string* buffer) argument
2772 Parse_TPM2B_NAME(std::string* buffer, TPM2B_NAME* value, std::string* value_bytes) argument
2809 Serialize_TPMS_PCR_SELECT(const TPMS_PCR_SELECT& value, std::string* buffer) argument
2831 Parse_TPMS_PCR_SELECT(std::string* buffer, TPMS_PCR_SELECT* value, std::string* value_bytes) argument
2854 Serialize_TPMS_PCR_SELECTION(const TPMS_PCR_SELECTION& value, std::string* buffer) argument
2881 Parse_TPMS_PCR_SELECTION(std::string* buffer, TPMS_PCR_SELECTION* value, std::string* value_bytes) argument
2909 Serialize_TPMT_TK_CREATION(const TPMT_TK_CREATION& value, std::string* buffer) argument
2931 Parse_TPMT_TK_CREATION(std::string* buffer, TPMT_TK_CREATION* value, std::string* value_bytes) argument
2954 Serialize_TPMT_TK_VERIFIED(const TPMT_TK_VERIFIED& value, std::string* buffer) argument
2976 Parse_TPMT_TK_VERIFIED(std::string* buffer, TPMT_TK_VERIFIED* value, std::string* value_bytes) argument
2999 Serialize_TPMT_TK_AUTH(const TPMT_TK_AUTH& value, std::string* buffer) argument
3015 Parse_TPMT_TK_AUTH(std::string* buffer, TPMT_TK_AUTH* value, std::string* value_bytes) argument
3033 Serialize_TPMT_TK_HASHCHECK(const TPMT_TK_HASHCHECK& value, std::string* buffer) argument
3055 Parse_TPMT_TK_HASHCHECK(std::string* buffer, TPMT_TK_HASHCHECK* value, std::string* value_bytes) argument
3078 Serialize_TPMS_ALG_PROPERTY(const TPMS_ALG_PROPERTY& value, std::string* buffer) argument
3095 Parse_TPMS_ALG_PROPERTY(std::string* buffer, TPMS_ALG_PROPERTY* value, std::string* value_bytes) argument
3113 Serialize_TPMS_TAGGED_PROPERTY(const TPMS_TAGGED_PROPERTY& value, std::string* buffer) argument
3130 Parse_TPMS_TAGGED_PROPERTY(std::string* buffer, TPMS_TAGGED_PROPERTY* value, std::string* value_bytes) argument
3148 Serialize_TPMS_TAGGED_PCR_SELECT(const TPMS_TAGGED_PCR_SELECT& value, std::string* buffer) argument
3175 Parse_TPMS_TAGGED_PCR_SELECT(std::string* buffer, TPMS_TAGGED_PCR_SELECT* value, std::string* value_bytes) argument
3203 Serialize_TPML_CC(const TPML_CC& value, std::string* buffer) argument
3224 Parse_TPML_CC(std::string* buffer, TPML_CC* value, std::string* value_bytes) argument
3247 Serialize_TPML_CCA(const TPML_CCA& value, std::string* buffer) argument
3268 Parse_TPML_CCA(std::string* buffer, TPML_CCA* value, std::string* value_bytes) argument
3291 Serialize_TPML_ALG(const TPML_ALG& value, std::string* buffer) argument
3312 Parse_TPML_ALG(std::string* buffer, TPML_ALG* value, std::string* value_bytes) argument
3335 Serialize_TPML_HANDLE(const TPML_HANDLE& value, std::string* buffer) argument
3356 Parse_TPML_HANDLE(std::string* buffer, TPML_HANDLE* value, std::string* value_bytes) argument
3379 Serialize_TPML_DIGEST(const TPML_DIGEST& value, std::string* buffer) argument
3400 Parse_TPML_DIGEST(std::string* buffer, TPML_DIGEST* value, std::string* value_bytes) argument
3423 Serialize_TPML_DIGEST_VALUES(const TPML_DIGEST_VALUES& value, std::string* buffer) argument
3445 Parse_TPML_DIGEST_VALUES(std::string* buffer, TPML_DIGEST_VALUES* value, std::string* value_bytes) argument
3468 Serialize_TPM2B_DIGEST_VALUES(const TPM2B_DIGEST_VALUES& value, std::string* buffer) argument
3490 Parse_TPM2B_DIGEST_VALUES(std::string* buffer, TPM2B_DIGEST_VALUES* value, std::string* value_bytes) argument
3527 Serialize_TPML_PCR_SELECTION(const TPML_PCR_SELECTION& value, std::string* buffer) argument
3549 Parse_TPML_PCR_SELECTION(std::string* buffer, TPML_PCR_SELECTION* value, std::string* value_bytes) argument
3573 Serialize_TPML_ALG_PROPERTY(const TPML_ALG_PROPERTY& value, std::string* buffer) argument
3595 Parse_TPML_ALG_PROPERTY(std::string* buffer, TPML_ALG_PROPERTY* value, std::string* value_bytes) argument
3619 Serialize_TPML_TAGGED_TPM_PROPERTY(const TPML_TAGGED_TPM_PROPERTY& value, std::string* buffer) argument
3641 Parse_TPML_TAGGED_TPM_PROPERTY(std::string* buffer, TPML_TAGGED_TPM_PROPERTY* value, std::string* value_bytes) argument
3665 Serialize_TPML_TAGGED_PCR_PROPERTY(const TPML_TAGGED_PCR_PROPERTY& value, std::string* buffer) argument
3687 Parse_TPML_TAGGED_PCR_PROPERTY(std::string* buffer, TPML_TAGGED_PCR_PROPERTY* value, std::string* value_bytes) argument
3711 Serialize_TPML_ECC_CURVE(const TPML_ECC_CURVE& value, std::string* buffer) argument
3733 Parse_TPML_ECC_CURVE(std::string* buffer, TPML_ECC_CURVE* value, std::string* value_bytes) argument
3756 Serialize_TPMU_CAPABILITIES(const TPMU_CAPABILITIES& value, TPM_CAP selector, std::string* buffer) argument
3827 Parse_TPMU_CAPABILITIES(std::string* buffer, TPM_CAP selector, TPMU_CAPABILITIES* value, std::string* value_bytes) argument
3902 Serialize_TPMS_CAPABILITY_DATA(const TPMS_CAPABILITY_DATA& value, std::string* buffer) argument
3919 Parse_TPMS_CAPABILITY_DATA(std::string* buffer, TPMS_CAPABILITY_DATA* value, std::string* value_bytes) argument
3938 Serialize_TPMS_CLOCK_INFO(const TPMS_CLOCK_INFO& value, std::string* buffer) argument
3965 Parse_TPMS_CLOCK_INFO(std::string* buffer, TPMS_CLOCK_INFO* value, std::string* value_bytes) argument
3993 Serialize_TPMS_TIME_INFO(const TPMS_TIME_INFO& value, std::string* buffer) argument
4010 Parse_TPMS_TIME_INFO(std::string* buffer, TPMS_TIME_INFO* value, std::string* value_bytes) argument
4028 Serialize_TPMS_TIME_ATTEST_INFO(const TPMS_TIME_ATTEST_INFO& value, std::string* buffer) argument
4045 Parse_TPMS_TIME_ATTEST_INFO(std::string* buffer, TPMS_TIME_ATTEST_INFO* value, std::string* value_bytes) argument
4063 Serialize_TPMS_CERTIFY_INFO(const TPMS_CERTIFY_INFO& value, std::string* buffer) argument
4080 Parse_TPMS_CERTIFY_INFO(std::string* buffer, TPMS_CERTIFY_INFO* value, std::string* value_bytes) argument
4098 Serialize_TPMS_QUOTE_INFO(const TPMS_QUOTE_INFO& value, std::string* buffer) argument
4115 Parse_TPMS_QUOTE_INFO(std::string* buffer, TPMS_QUOTE_INFO* value, std::string* value_bytes) argument
4133 Serialize_TPMS_COMMAND_AUDIT_INFO(const TPMS_COMMAND_AUDIT_INFO& value, std::string* buffer) argument
4160 Parse_TPMS_COMMAND_AUDIT_INFO(std::string* buffer, TPMS_COMMAND_AUDIT_INFO* value, std::string* value_bytes) argument
4188 Serialize_TPMS_SESSION_AUDIT_INFO(const TPMS_SESSION_AUDIT_INFO& value, std::string* buffer) argument
4205 Parse_TPMS_SESSION_AUDIT_INFO(std::string* buffer, TPMS_SESSION_AUDIT_INFO* value, std::string* value_bytes) argument
4223 Serialize_TPMS_CREATION_INFO(const TPMS_CREATION_INFO& value, std::string* buffer) argument
4240 Parse_TPMS_CREATION_INFO(std::string* buffer, TPMS_CREATION_INFO* value, std::string* value_bytes) argument
4258 Serialize_TPMS_NV_CERTIFY_INFO(const TPMS_NV_CERTIFY_INFO& value, std::string* buffer) argument
4280 Parse_TPMS_NV_CERTIFY_INFO(std::string* buffer, TPMS_NV_CERTIFY_INFO* value, std::string* value_bytes) argument
4303 Serialize_TPMU_ATTEST(const TPMU_ATTEST& value, TPMI_ST_ATTEST selector, std::string* buffer) argument
4360 Parse_TPMU_ATTEST(std::string* buffer, TPMI_ST_ATTEST selector, TPMU_ATTEST* value, std::string* value_bytes) argument
4420 Serialize_TPMS_ATTEST(const TPMS_ATTEST& value, std::string* buffer) argument
4461 Parse_TPMS_ATTEST(std::string* buffer, TPMS_ATTEST* value, std::string* value_bytes) argument
4505 Serialize_TPM2B_ATTEST(const TPM2B_ATTEST& value, std::string* buffer) argument
4526 Parse_TPM2B_ATTEST(std::string* buffer, TPM2B_ATTEST* value, std::string* value_bytes) argument
4564 Serialize_TPMS_AUTH_COMMAND(const TPMS_AUTH_COMMAND& value, std::string* buffer) argument
4591 Parse_TPMS_AUTH_COMMAND(std::string* buffer, TPMS_AUTH_COMMAND* value, std::string* value_bytes) argument
4620 Serialize_TPMS_AUTH_RESPONSE(const TPMS_AUTH_RESPONSE& value, std::string* buffer) argument
4642 Parse_TPMS_AUTH_RESPONSE(std::string* buffer, TPMS_AUTH_RESPONSE* value, std::string* value_bytes) argument
4665 Serialize_TPMU_SYM_KEY_BITS(const TPMU_SYM_KEY_BITS& value, TPMI_ALG_SYM selector, std::string* buffer) argument
4698 Parse_TPMU_SYM_KEY_BITS(std::string* buffer, TPMI_ALG_SYM selector, TPMU_SYM_KEY_BITS* value, std::string* value_bytes) argument
4732 Serialize_TPMU_SYM_MODE(const TPMU_SYM_MODE& value, TPMI_ALG_SYM selector, std::string* buffer) argument
4762 Parse_TPMU_SYM_MODE(std::string* buffer, TPMI_ALG_SYM selector, TPMU_SYM_MODE* value, std::string* value_bytes) argument
4793 Serialize_TPMU_SYM_DETAILS(const TPMU_SYM_DETAILS& value, TPMI_ALG_SYM selector, std::string* buffer) argument
4801 Parse_TPMU_SYM_DETAILS(std::string* buffer, TPMI_ALG_SYM selector, TPMU_SYM_DETAILS* value, std::string* value_bytes) argument
4810 Serialize_TPMT_SYM_DEF(const TPMT_SYM_DEF& value, std::string* buffer) argument
4836 Parse_TPMT_SYM_DEF(std::string* buffer, TPMT_SYM_DEF* value, std::string* value_bytes) argument
4867 Serialize_TPMT_SYM_DEF_OBJECT(const TPMT_SYM_DEF_OBJECT& value, std::string* buffer) argument
4894 Parse_TPMT_SYM_DEF_OBJECT(std::string* buffer, TPMT_SYM_DEF_OBJECT* value, std::string* value_bytes) argument
4925 Serialize_TPM2B_SYM_KEY(const TPM2B_SYM_KEY& value, std::string* buffer) argument
4947 Parse_TPM2B_SYM_KEY(std::string* buffer, TPM2B_SYM_KEY* value, std::string* value_bytes) argument
4984 Serialize_TPMS_SYMCIPHER_PARMS(const TPMS_SYMCIPHER_PARMS& value, std::string* buffer) argument
4996 Parse_TPMS_SYMCIPHER_PARMS(std::string* buffer, TPMS_SYMCIPHER_PARMS* value, std::string* value_bytes) argument
5009 Serialize_TPM2B_SENSITIVE_DATA(const TPM2B_SENSITIVE_DATA& value, std::string* buffer) argument
5031 Parse_TPM2B_SENSITIVE_DATA(std::string* buffer, TPM2B_SENSITIVE_DATA* value, std::string* value_bytes) argument
5068 Serialize_TPMS_SENSITIVE_CREATE(const TPMS_SENSITIVE_CREATE& value, std::string* buffer) argument
5085 Parse_TPMS_SENSITIVE_CREATE(std::string* buffer, TPMS_SENSITIVE_CREATE* value, std::string* value_bytes) argument
5103 Serialize_TPM2B_SENSITIVE_CREATE(const TPM2B_SENSITIVE_CREATE& value, std::string* buffer) argument
5122 Parse_TPM2B_SENSITIVE_CREATE(std::string* buffer, TPM2B_SENSITIVE_CREATE* value, std::string* value_bytes) argument
5148 Serialize_TPMS_SCHEME_XOR(const TPMS_SCHEME_XOR& value, std::string* buffer) argument
5165 Parse_TPMS_SCHEME_XOR(std::string* buffer, TPMS_SCHEME_XOR* value, std::string* value_bytes) argument
5183 Serialize_TPMU_SCHEME_KEYEDHASH(const TPMU_SCHEME_KEYEDHASH& value, TPMI_ALG_KEYEDHASH_SCHEME selector, std::string* buffer) argument
5209 Parse_TPMU_SCHEME_KEYEDHASH(std::string* buffer, TPMI_ALG_KEYEDHASH_SCHEME selector, TPMU_SCHEME_KEYEDHASH* value, std::string* value_bytes) argument
5236 Serialize_TPMT_KEYEDHASH_SCHEME(const TPMT_KEYEDHASH_SCHEME& value, std::string* buffer) argument
5253 Parse_TPMT_KEYEDHASH_SCHEME(std::string* buffer, TPMT_KEYEDHASH_SCHEME* value, std::string* value_bytes) argument
5272 Serialize_TPMS_SCHEME_ECDAA(const TPMS_SCHEME_ECDAA& value, std::string* buffer) argument
5289 Parse_TPMS_SCHEME_ECDAA(std::string* buffer, TPMS_SCHEME_ECDAA* value, std::string* value_bytes) argument
5307 Serialize_TPMU_SIG_SCHEME(const TPMU_SIG_SCHEME& value, TPMI_ALG_SIG_SCHEME selector, std::string* buffer) argument
5368 Parse_TPMU_SIG_SCHEME(std::string* buffer, TPMI_ALG_SIG_SCHEME selector, TPMU_SIG_SCHEME* value, std::string* value_bytes) argument
5431 Serialize_TPMT_SIG_SCHEME(const TPMT_SIG_SCHEME& value, std::string* buffer) argument
5448 Parse_TPMT_SIG_SCHEME(std::string* buffer, TPMT_SIG_SCHEME* value, std::string* value_bytes) argument
5467 Serialize_TPMS_SCHEME_OAEP(const TPMS_SCHEME_OAEP& value, std::string* buffer) argument
5479 Parse_TPMS_SCHEME_OAEP(std::string* buffer, TPMS_SCHEME_OAEP* value, std::string* value_bytes) argument
5492 Serialize_TPMS_SCHEME_ECDH(const TPMS_SCHEME_ECDH& value, std::string* buffer) argument
5504 Parse_TPMS_SCHEME_ECDH(std::string* buffer, TPMS_SCHEME_ECDH* value, std::string* value_bytes) argument
5517 Serialize_TPMS_SCHEME_MGF1(const TPMS_SCHEME_MGF1& value, std::string* buffer) argument
5529 Parse_TPMS_SCHEME_MGF1(std::string* buffer, TPMS_SCHEME_MGF1* value, std::string* value_bytes) argument
5542 Serialize_TPMS_SCHEME_KDF1_SP800_56a( const TPMS_SCHEME_KDF1_SP800_56a& value, std::string* buffer) argument
5555 Parse_TPMS_SCHEME_KDF1_SP800_56a(std::string* buffer, TPMS_SCHEME_KDF1_SP800_56a* value, std::string* value_bytes) argument
5568 Serialize_TPMS_SCHEME_KDF2(const TPMS_SCHEME_KDF2& value, std::string* buffer) argument
5580 Parse_TPMS_SCHEME_KDF2(std::string* buffer, TPMS_SCHEME_KDF2* value, std::string* value_bytes) argument
5593 Serialize_TPMS_SCHEME_KDF1_SP800_108( const TPMS_SCHEME_KDF1_SP800_108& value, std::string* buffer) argument
5606 Parse_TPMS_SCHEME_KDF1_SP800_108(std::string* buffer, TPMS_SCHEME_KDF1_SP800_108* value, std::string* value_bytes) argument
5619 Serialize_TPMU_KDF_SCHEME(const TPMU_KDF_SCHEME& value, TPMI_ALG_KDF selector, std::string* buffer) argument
5659 Parse_TPMU_KDF_SCHEME(std::string* buffer, TPMI_ALG_KDF selector, TPMU_KDF_SCHEME* value, std::string* value_bytes) argument
5702 Serialize_TPMT_KDF_SCHEME(const TPMT_KDF_SCHEME& value, std::string* buffer) argument
5719 Parse_TPMT_KDF_SCHEME(std::string* buffer, TPMT_KDF_SCHEME* value, std::string* value_bytes) argument
5738 Serialize_TPMU_ASYM_SCHEME(const TPMU_ASYM_SCHEME& value, TPMI_ALG_ASYM_SCHEME selector, std::string* buffer) argument
5810 Parse_TPMU_ASYM_SCHEME(std::string* buffer, TPMI_ALG_ASYM_SCHEME selector, TPMU_ASYM_SCHEME* value, std::string* value_bytes) argument
5884 Serialize_TPMT_ASYM_SCHEME(const TPMT_ASYM_SCHEME& value, std::string* buffer) argument
5901 Parse_TPMT_ASYM_SCHEME(std::string* buffer, TPMT_ASYM_SCHEME* value, std::string* value_bytes) argument
5920 Serialize_TPMT_RSA_SCHEME(const TPMT_RSA_SCHEME& value, std::string* buffer) argument
5937 Parse_TPMT_RSA_SCHEME(std::string* buffer, TPMT_RSA_SCHEME* value, std::string* value_bytes) argument
5956 Serialize_TPMT_RSA_DECRYPT(const TPMT_RSA_DECRYPT& value, std::string* buffer) argument
5973 Parse_TPMT_RSA_DECRYPT(std::string* buffer, TPMT_RSA_DECRYPT* value, std::string* value_bytes) argument
5992 Serialize_TPM2B_PUBLIC_KEY_RSA(const TPM2B_PUBLIC_KEY_RSA& value, std::string* buffer) argument
6014 Parse_TPM2B_PUBLIC_KEY_RSA(std::string* buffer, TPM2B_PUBLIC_KEY_RSA* value, std::string* value_bytes) argument
6051 Serialize_TPM2B_PRIVATE_KEY_RSA(const TPM2B_PRIVATE_KEY_RSA& value, std::string* buffer) argument
6073 Parse_TPM2B_PRIVATE_KEY_RSA(std::string* buffer, TPM2B_PRIVATE_KEY_RSA* value, std::string* value_bytes) argument
6111 Serialize_TPM2B_ECC_PARAMETER(const TPM2B_ECC_PARAMETER& value, std::string* buffer) argument
6133 Parse_TPM2B_ECC_PARAMETER(std::string* buffer, TPM2B_ECC_PARAMETER* value, std::string* value_bytes) argument
6170 Serialize_TPMS_ECC_POINT(const TPMS_ECC_POINT& value, std::string* buffer) argument
6187 Parse_TPMS_ECC_POINT(std::string* buffer, TPMS_ECC_POINT* value, std::string* value_bytes) argument
6205 Serialize_TPM2B_ECC_POINT(const TPM2B_ECC_POINT& value, std::string* buffer) argument
6224 Parse_TPM2B_ECC_POINT(std::string* buffer, TPM2B_ECC_POINT* value, std::string* value_bytes) argument
6249 Serialize_TPMT_ECC_SCHEME(const TPMT_ECC_SCHEME& value, std::string* buffer) argument
6266 Parse_TPMT_ECC_SCHEME(std::string* buffer, TPMT_ECC_SCHEME* value, std::string* value_bytes) argument
6285 Serialize_TPMS_ALGORITHM_DETAIL_ECC( const TPMS_ALGORITHM_DETAIL_ECC& value, std::string* buffer) argument
6348 Parse_TPMS_ALGORITHM_DETAIL_ECC(std::string* buffer, TPMS_ALGORITHM_DETAIL_ECC* value, std::string* value_bytes) argument
6411 Serialize_TPMS_SIGNATURE_RSASSA(const TPMS_SIGNATURE_RSASSA& value, std::string* buffer) argument
6428 Parse_TPMS_SIGNATURE_RSASSA(std::string* buffer, TPMS_SIGNATURE_RSASSA* value, std::string* value_bytes) argument
6446 Serialize_TPMS_SIGNATURE_RSAPSS(const TPMS_SIGNATURE_RSAPSS& value, std::string* buffer) argument
6463 Parse_TPMS_SIGNATURE_RSAPSS(std::string* buffer, TPMS_SIGNATURE_RSAPSS* value, std::string* value_bytes) argument
6481 Serialize_TPMS_SIGNATURE_ECDSA(const TPMS_SIGNATURE_ECDSA& value, std::string* buffer) argument
6503 Parse_TPMS_SIGNATURE_ECDSA(std::string* buffer, TPMS_SIGNATURE_ECDSA* value, std::string* value_bytes) argument
6526 Serialize_TPMU_SIGNATURE(const TPMU_SIGNATURE& value, TPMI_ALG_SIG_SCHEME selector, std::string* buffer) argument
6587 Parse_TPMU_SIGNATURE(std::string* buffer, TPMI_ALG_SIG_SCHEME selector, TPMU_SIGNATURE* value, std::string* value_bytes) argument
6649 Serialize_TPMT_SIGNATURE(const TPMT_SIGNATURE& value, std::string* buffer) argument
6666 Parse_TPMT_SIGNATURE(std::string* buffer, TPMT_SIGNATURE* value, std::string* value_bytes) argument
6685 Serialize_TPM2B_ENCRYPTED_SECRET(const TPM2B_ENCRYPTED_SECRET& value, std::string* buffer) argument
6707 Parse_TPM2B_ENCRYPTED_SECRET(std::string* buffer, TPM2B_ENCRYPTED_SECRET* value, std::string* value_bytes) argument
6745 Serialize_TPMS_KEYEDHASH_PARMS(const TPMS_KEYEDHASH_PARMS& value, std::string* buffer) argument
6757 Parse_TPMS_KEYEDHASH_PARMS(std::string* buffer, TPMS_KEYEDHASH_PARMS* value, std::string* value_bytes) argument
6770 Serialize_TPMS_ASYM_PARMS(const TPMS_ASYM_PARMS& value, std::string* buffer) argument
6787 Parse_TPMS_ASYM_PARMS(std::string* buffer, TPMS_ASYM_PARMS* value, std::string* value_bytes) argument
6805 Serialize_TPMS_RSA_PARMS(const TPMS_RSA_PARMS& value, std::string* buffer) argument
6832 Parse_TPMS_RSA_PARMS(std::string* buffer, TPMS_RSA_PARMS* value, std::string* value_bytes) argument
6860 Serialize_TPMS_ECC_PARMS(const TPMS_ECC_PARMS& value, std::string* buffer) argument
6887 Parse_TPMS_ECC_PARMS(std::string* buffer, TPMS_ECC_PARMS* value, std::string* value_bytes) argument
6915 Serialize_TPMU_PUBLIC_PARMS(const TPMU_PUBLIC_PARMS& value, TPMI_ALG_PUBLIC selector, std::string* buffer) argument
6951 Parse_TPMU_PUBLIC_PARMS(std::string* buffer, TPMI_ALG_PUBLIC selector, TPMU_PUBLIC_PARMS* value, std::string* value_bytes) argument
6990 Serialize_TPMT_PUBLIC_PARMS(const TPMT_PUBLIC_PARMS& value, std::string* buffer) argument
7007 Parse_TPMT_PUBLIC_PARMS(std::string* buffer, TPMT_PUBLIC_PARMS* value, std::string* value_bytes) argument
7026 Serialize_TPMU_PUBLIC_ID(const TPMU_PUBLIC_ID& value, TPMI_ALG_PUBLIC selector, std::string* buffer) argument
7062 Parse_TPMU_PUBLIC_ID(std::string* buffer, TPMI_ALG_PUBLIC selector, TPMU_PUBLIC_ID* value, std::string* value_bytes) argument
7099 Serialize_TPMT_PUBLIC(const TPMT_PUBLIC& value, std::string* buffer) argument
7135 Parse_TPMT_PUBLIC(std::string* buffer, TPMT_PUBLIC* value, std::string* value_bytes) argument
7175 Serialize_TPM2B_PUBLIC(const TPM2B_PUBLIC& value, std::string* buffer) argument
7193 Parse_TPM2B_PUBLIC(std::string* buffer, TPM2B_PUBLIC* value, std::string* value_bytes) argument
7218 Serialize_TPM2B_PRIVATE_VENDOR_SPECIFIC( const TPM2B_PRIVATE_VENDOR_SPECIFIC& value, std::string* buffer) argument
7241 Parse_TPM2B_PRIVATE_VENDOR_SPECIFIC(std::string* buffer, TPM2B_PRIVATE_VENDOR_SPECIFIC* value, std::string* value_bytes) argument
7280 Serialize_TPMU_SENSITIVE_COMPOSITE(const TPMU_SENSITIVE_COMPOSITE& value, TPMI_ALG_PUBLIC selector, std::string* buffer) argument
7316 Parse_TPMU_SENSITIVE_COMPOSITE(std::string* buffer, TPMI_ALG_PUBLIC selector, TPMU_SENSITIVE_COMPOSITE* value, std::string* value_bytes) argument
7353 Serialize_TPMT_SENSITIVE(const TPMT_SENSITIVE& value, std::string* buffer) argument
7381 Parse_TPMT_SENSITIVE(std::string* buffer, TPMT_SENSITIVE* value, std::string* value_bytes) argument
7410 Serialize_TPM2B_SENSITIVE(const TPM2B_SENSITIVE& value, std::string* buffer) argument
7429 Parse_TPM2B_SENSITIVE(std::string* buffer, TPM2B_SENSITIVE* value, std::string* value_bytes) argument
7454 Serialize__PRIVATE(const _PRIVATE& value, std::string* buffer) argument
7475 Parse__PRIVATE(std::string* buffer, _PRIVATE* value, std::string* value_bytes) argument
7498 Serialize_TPM2B_PRIVATE(const TPM2B_PRIVATE& value, std::string* buffer) argument
7520 Parse_TPM2B_PRIVATE(std::string* buffer, TPM2B_PRIVATE* value, std::string* value_bytes) argument
7557 Serialize__ID_OBJECT(const _ID_OBJECT& value, std::string* buffer) argument
7573 Parse__ID_OBJECT(std::string* buffer, _ID_OBJECT* value, std::string* value_bytes) argument
7591 Serialize_TPM2B_ID_OBJECT(const TPM2B_ID_OBJECT& value, std::string* buffer) argument
7613 Parse_TPM2B_ID_OBJECT(std::string* buffer, TPM2B_ID_OBJECT* value, std::string* value_bytes) argument
7650 Serialize_TPMS_NV_PUBLIC(const TPMS_NV_PUBLIC& value, std::string* buffer) argument
7682 Parse_TPMS_NV_PUBLIC(std::string* buffer, TPMS_NV_PUBLIC* value, std::string* value_bytes) argument
7715 Serialize_TPM2B_NV_PUBLIC(const TPM2B_NV_PUBLIC& value, std::string* buffer) argument
7734 Parse_TPM2B_NV_PUBLIC(std::string* buffer, TPM2B_NV_PUBLIC* value, std::string* value_bytes) argument
7759 Serialize_TPM2B_CONTEXT_SENSITIVE(const TPM2B_CONTEXT_SENSITIVE& value, std::string* buffer) argument
7781 Parse_TPM2B_CONTEXT_SENSITIVE(std::string* buffer, TPM2B_CONTEXT_SENSITIVE* value, std::string* value_bytes) argument
7819 Serialize_TPMS_CONTEXT_DATA(const TPMS_CONTEXT_DATA& value, std::string* buffer) argument
7836 Parse_TPMS_CONTEXT_DATA(std::string* buffer, TPMS_CONTEXT_DATA* value, std::string* value_bytes) argument
7855 Serialize_TPM2B_CONTEXT_DATA(const TPM2B_CONTEXT_DATA& value, std::string* buffer) argument
7877 Parse_TPM2B_CONTEXT_DATA(std::string* buffer, TPM2B_CONTEXT_DATA* value, std::string* value_bytes) argument
7914 Serialize_TPMS_CONTEXT(const TPMS_CONTEXT& value, std::string* buffer) argument
7940 Parse_TPMS_CONTEXT(std::string* buffer, TPMS_CONTEXT* value, std::string* value_bytes) argument
7968 Serialize_TPMS_CREATION_DATA(const TPMS_CREATION_DATA& value, std::string* buffer) argument
8010 Parse_TPMS_CREATION_DATA(std::string* buffer, TPMS_CREATION_DATA* value, std::string* value_bytes) argument
8053 Serialize_TPM2B_CREATION_DATA(const TPM2B_CREATION_DATA& value, std::string* buffer) argument
8072 Parse_TPM2B_CREATION_DATA(std::string* buffer, TPM2B_CREATION_DATA* value, std::string* value_bytes) argument
[all...]
/system/extras/tests/sdcard/
H A Dsysutil.cpp201 int writeIntToFile(const char *filename, long value) argument
204 sprintf(buffer, "%ld", value);
246 char value[16]; local
247 if (readStringFromFile(filename, value, sizeof(value)) == -1)
253 return atoi(value);
292 char value[256] = {0,}; local
294 if (readStringFromFile(kSchedFeatures, value, sizeof(value)) == -1)
299 return strstr(value, "NO_NEW_FAIR_SLEEPER
322 char value[256] = {0,}; local
[all...]
/system/keymaster/include/keymaster/
H A Dkeymaster_tags.h32 * TypedTag and TypedEnumTag. These classes are templated on a tag type and a tag value, and in the
43 * value arguments and correctly constructs a keyamster_param_t struct.
69 // An unusable type that we can associate with tag types that don't have a simple value type.
77 * A template that defines the association between non-enumerated tag types and their value
207 inline keymaster_key_param_t Authorization(TypedTag<KM_UINT, Tag> tag, uint32_t value) { argument
208 return keymaster_param_int(tag, value);
212 inline keymaster_key_param_t Authorization(TypedTag<KM_UINT_REP, Tag> tag, uint32_t value) { argument
213 return keymaster_param_int(tag, value);
217 inline keymaster_key_param_t Authorization(TypedTag<KM_ULONG, Tag> tag, uint64_t value) { argument
218 return keymaster_param_long(tag, value);
222 Authorization(TypedTag<KM_ULONG_REP, Tag> tag, uint64_t value) argument
227 Authorization(TypedTag<KM_DATE, Tag> tag, uint64_t value) argument
256 Authorization(TypedEnumTag<KM_ENUM, Tag, KeymasterEnum> tag, KeymasterEnum value) argument
262 Authorization(TypedEnumTag<KM_ENUM_REP, Tag, KeymasterEnum> tag, KeymasterEnum value) argument
[all...]
H A Dserializable.h66 * Convert a pointer into a value. This is used to make sure compiler won't optimize away pointer
83 * Append some type of value convertible to a uint32_t to a buffer. This is primarily used for
89 inline uint8_t* append_uint32_to_buf(uint8_t* buf, const uint8_t* end, T value) { argument
90 uint32_t val = static_cast<uint32_t>(value);
97 inline uint8_t* append_uint64_to_buf(uint8_t* buf, const uint8_t* end, uint64_t value) { argument
98 return append_to_buf(buf, end, &value, sizeof(value));
153 * Copies a value convertible from uint32_t from \p *buf_ptr. Returns false if there are less than
157 inline bool copy_uint32_from_buf(const uint8_t** buf_ptr, const uint8_t* end, T* value) { argument
161 *value
169 copy_uint64_from_buf(const uint8_t** buf_ptr, const uint8_t* end, uint64_t* value) argument
[all...]
/system/media/audio_route/
H A Daudio_route.c54 union ctl_values value; member in struct:mixer_setting
60 long value; member in struct:mixer_value
139 ALOGE(" id=%d value=0x%02x", j, path->setting[i].value.bytes[j]);
142 ALOGE(" id=%d value=%d", j, path->setting[i].value.enumerated[j]);
145 ALOGE(" id=%d value=%ld", j, path->setting[i].value.integer[j]);
158 free(ar->mixer_path[i].setting->value.ptr);
284 path->setting[path_index].value
456 long value; local
[all...]
/system/update_engine/
H A Dp2p_manager.cc243 // Get and store an initial value.
323 LOG(INFO) << "Deleting p2p file " << path.value()
325 if (unlink(path.value().c_str()) != 0) {
326 PLOG(ERROR) << "Error deleting p2p file " << path.value();
345 if (!(base::EndsWith(name.value(), ext_visible,
347 base::EndsWith(name.value(), ext_non_visible,
483 // The Subprocess tag of the running process. A value of 0 means that the
513 LOG(ERROR) << "Existing p2p file " << path.value()
526 if (statvfs(p2p_dir.value().c_str(), &statvfsbuf) != 0) {
527 PLOG(ERROR) << "Error calling statvfs() for dir " << p2p_dir.value();
[all...]
/system/bt/bta/gatt/
H A Dbta_gattc_api.cc342 * Description This function is called to read a characteristics value
367 * This function is called to read a value of characteristic with uuid equal to
394 * Description This function is called to read a descriptor value.
452 * Description This function is called to write characteristic value.
457 * value - the value to be written.
464 std::vector<uint8_t> value,
468 sizeof(tBTA_GATTC_API_WRITE) + value.size());
475 p_buf->len = value.size();
479 if (value
462 BTA_GATTC_WriteCharValue(uint16_t conn_id, uint16_t handle, tBTA_GATTC_WRITE_TYPE write_type, std::vector<uint8_t> value, tBTA_GATT_AUTH_REQ auth_req, GATT_WRITE_OP_CB callback, void* cb_data) argument
500 BTA_GATTC_WriteCharDescr(uint16_t conn_id, uint16_t handle, std::vector<uint8_t> value, tBTA_GATT_AUTH_REQ auth_req, GATT_WRITE_OP_CB callback, void* cb_data) argument
539 BTA_GATTC_PrepareWrite(uint16_t conn_id, uint16_t handle, uint16_t offset, std::vector<uint8_t> value, tBTA_GATT_AUTH_REQ auth_req, GATT_WRITE_OP_CB callback, void* cb_data) argument
[all...]
/system/tools/hidl/
H A DConstantExpression.cpp167 ConstantExpression ConstantExpression::ValueOf(ScalarType::Kind kind, uint64_t value) { argument
174 ce.mValue = value;
199 ConstantExpression::ConstantExpression(const char *value) argument
200 : mExpr(value), mType(kConstExprLiteral), mTrivialDescription(true) {
201 const char* head = value, *tail = head + strlen(value) - 1;
203 bool isHex = (value[0] == '0' && (value[1] == 'x' || value[1] == 'X'));
209 char *newVal = strndup(value, tai
247 ConstantExpression(const char *op, const ConstantExpression *value) argument
352 std::string ConstantExpression::value() const { function in class:android::ConstantExpression
356 std::string ConstantExpression::value(ScalarType::Kind castKind) const { function in class:android::ConstantExpression
[all...]
/system/sepolicy/tools/
H A Dcheck_seapp.c99 * The workhorse of the logic. This struct maps key value pairs to
107 bool (*fn_validate)(char *value, char **errmsg);
111 * Key value pair struct, this represents the raw kvp values coming
116 char *value; member in struct:kvp
127 char *key; /** key value before hashing */
131 key_map m[]; /** key value mapping */
193 static bool validate_bool(char *value, char **errmsg);
194 static bool validate_levelFrom(char *value, char **errmsg);
195 static bool validate_selinux_type(char *value, char **errmsg);
196 static bool validate_selinux_level(char *value, cha
366 validate_bool(char *value, char **errmsg) argument
376 validate_levelFrom(char *value, char **errmsg) argument
386 validate_selinux_type(char *value, char **errmsg) argument
404 validate_selinux_level(char *value, char **errmsg) argument
423 validate_uint(char *value, char **errmsg) argument
455 char *value = m->data; local
1072 char *value = NULL; local
[all...]
/system/core/libcutils/tests/
H A DMemsetTest.cpp126 void RunMemsetTests(test_e test_type, uint32_t value, int align[][2], size_t num_aligns) { argument
130 value |= value << 16;
134 expected_buf[i] = value;
154 android_memset16(reinterpret_cast<uint16_t*>(buf_align), value, len); local
156 android_memset32(reinterpret_cast<uint32_t*>(buf_align), value, len); local
/system/core/libunwindstack/include/unwindstack/
H A DRegs.h42 Location(LocationEnum type, int16_t value) : type(type), value(value) {} argument
45 int16_t value; member in struct:unwindstack::Regs::Location
56 virtual bool GetReturnAddressFromDefault(Memory* memory, uint64_t* value) = 0;
85 bool GetReturnAddressFromDefault(Memory* memory, uint64_t* value) override;

Completed in 734 milliseconds

1234567891011>>