Home
last modified time | relevance | path

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 Dgetpropertystub_fuzzer.cpp69 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 Duser_auth_proxy.cpp118 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 Duser_auth_stub.cpp167 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 Daccount_iam_mgr_proxy.cpp497 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 Dcomponent.cpp1080 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()