Searched refs:attrKeys (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/base/account/os_account/test/fuzztest/iamaccount_stub/getpropertystub_fuzzer/ |
H A D | getpropertystub_fuzzer.cpp | 69 std::vector<uint32_t> attrKeys; in GetPropertyStubFuzzTest() local 70 std::transform(request.keys.begin(), request.keys.end(), std::back_inserter(attrKeys), in GetPropertyStubFuzzTest() 73 if (!dataTemp.WriteUInt32Vector(attrKeys)) { in GetPropertyStubFuzzTest()
|
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/src/ |
H A D | user_auth_proxy.cpp | 118 std::vector<uint32_t> attrKeys; in GetProperty() local 119 attrKeys.resize(keys.size()); in GetProperty() 120 std::transform(keys.begin(), keys.end(), attrKeys.begin(), [](Attributes::AttributeKey key) { in GetProperty() 136 if (!data.WriteUInt32Vector(attrKeys)) { in GetProperty() 170 std::vector<uint32_t> attrKeys; in GetPropertyById() local 171 attrKeys.resize(keys.size()); in GetPropertyById() 172 std::transform(keys.begin(), keys.end(), attrKeys.begin(), [](Attributes::AttributeKey key) { in GetPropertyById() 184 if (!data.WriteUInt32Vector(attrKeys)) { in GetPropertyById()
|
H A D | user_auth_stub.cpp | 167 std::vector<Attributes::AttributeKey> attrKeys; in GetPropertyStub() local 176 attrKeys.resize(keys.size()); in GetPropertyStub() 177 std::transform(keys.begin(), keys.end(), attrKeys.begin(), [](uint32_t key) { in GetPropertyStub() 192 GetProperty(userId, static_cast<AuthType>(authType), attrKeys, callback); in GetPropertyStub() 212 std::vector<Attributes::AttributeKey> attrKeys; in GetPropertyByIdStub() local 221 attrKeys.resize(keys.size()); in GetPropertyByIdStub() 222 std::transform(keys.begin(), keys.end(), attrKeys.begin(), [](uint32_t key) { in GetPropertyByIdStub() 237 GetPropertyById(credentialId, attrKeys, callback); in GetPropertyByIdStub()
|
/ohos5.0/base/account/os_account/frameworks/account_iam/src/ |
H A D | account_iam_mgr_proxy.cpp | 497 std::vector<uint32_t> attrKeys; in GetProperty() local 498 std::transform(request.keys.begin(), request.keys.end(), std::back_inserter(attrKeys), in GetProperty() 501 if (!data.WriteUInt32Vector(attrKeys)) { in GetProperty() 537 std::vector<uint32_t> attrKeys; in GetPropertyByCredentialId() local 538 std::transform(keys.begin(), keys.end(), std::back_inserter(attrKeys), in GetPropertyByCredentialId() 541 if (!data.WriteUInt32Vector(attrKeys)) { in GetPropertyByCredentialId()
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | component.cpp | 1080 jerry_value_t attrKeys = jerry_get_object_keys(attrs); in ParseAttrs() local 1081 if (jerry_value_is_undefined(attrKeys)) { in ParseAttrs() 1087 uint16_t length = jerry_get_array_length(attrKeys); in ParseAttrs() 1089 jerry_value_t attrKey = jerry_get_property_by_index(attrKeys, index); in ParseAttrs() 1122 jerry_release_value(attrKeys); in ParseAttrs()
|