Home
last modified time | relevance | path

Searched refs:entryValue (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/
H A Dpasteboard_entry_getter.cpp45 PasteDataEntry entryValue; in GetValueByType() local
46 entryValue.SetUtdId(utdId); in GetValueByType()
47 entryValue.SetMimeType(pasteType); in GetValueByType()
48 … auto result = PasteboardClient::GetInstance()->GetRecordValueByType(dataId, recordId, entryValue); in GetValueByType()
52 return entryValue.GetValue(); in GetValueByType()
/ohos5.0/foundation/distributeddatamgr/pasteboard/services/zidl/src/
H A Dpasteboard_entry_getter_stub.cpp71 PasteDataEntry entryValue; in OnGetRecordValueByType() local
72 bool ret = entryValue.Unmarshalling(recvEntryTlv); in OnGetRecordValueByType()
77 auto result = GetRecordValueByType(recordId, entryValue); in OnGetRecordValueByType()
83 ret = entryValue.Marshalling(sendEntryTLV); in OnGetRecordValueByType()
H A Dpasteboard_entry_getter_proxy.cpp84 PasteDataEntry entryValue; in GetRecordValueByType() local
85 if (!entryValue.Unmarshalling(recvEntryTlv)) { in GetRecordValueByType()
89 value = entryValue; in GetRecordValueByType()
H A Dpasteboard_service_stub.cpp113 PasteDataEntry entryValue; in OnGetRecordValueByType() local
125 bool ret = entryValue.Unmarshalling(receiveTlv); in OnGetRecordValueByType()
130 auto result = GetRecordValueByType(dataId, recordId, entryValue); in OnGetRecordValueByType()
136 ret = entryValue.Marshalling(entryValueTLV); in OnGetRecordValueByType()
H A Dpasteboard_service_proxy.cpp95 PasteDataEntry entryValue; in GetRecordValueByType() local
96 if (!entryValue.Unmarshalling(receiveTlv)) { in GetRecordValueByType()
100 value = std::move(entryValue); in GetRecordValueByType()
/ohos5.0/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/src/
H A Dnapi_pastedata_record.cpp386 EntryValue entryValue; in AddEntry() local
387 if (!GetNativeValue(env, mimeType, argv[1], entryValue)) { in AddEntry()
393 …:shared_ptr<PasteDataEntry> pasteDataEntry = std::make_shared<PasteDataEntry>(utdType, entryValue); in AddEntry()
436 std::shared_ptr<PasteDataEntry> entryValue; in GetRecordData() member
460 … exeContext->entryValue = exeContext->obj->value_->GetEntryByMimeType(exeContext->mimeType); in GetRecordData()
464 … napi_status status = ConvertEntryValue(env, result, exeContext->mimeType, exeContext->entryValue); in GetRecordData()
587 EntryValue entryValue; in UvWorkGetRecordByEntryGetter() local
588 if (GetNativeValue(env, mimeType, resultOut, entryValue)) { in UvWorkGetRecordByEntryGetter()
589 entryGetterWork->entryValue = std::make_shared<UDMF::ValueType>(entryValue); in UvWorkGetRecordByEntryGetter()
642 …[entryGetterWork] { return entryGetterWork->complete; }) && entryGetterWork->entryValue != nullptr… in GetValueByType()
[all …]
H A Dpasteboard_common.cpp342 std::shared_ptr<EntryValue> entryValue = std::make_shared<EntryValue>(); in CheckArgsVector() local
344 if (!GetNativeValue(env, mimeType, value, *entryValue)) { in CheckArgsVector()
348 result->emplace_back(std::make_pair(mimeType, entryValue)); in CheckArgsVector()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/smp/
H A Dsmp.c61 bool accept, uint8_t rejectReason, uint8_t pairMethod, const uint8_t *entryValue);
401 (void)memcpy_s(ctx->entryValue, SMP_ENTRY_VALUE_LEN, entryValue, SMP_PASSKEY_LEN); in SMP_AuthenticationRequestReply()
403 (void)memcpy_s(ctx->entryValue, SMP_ENTRY_VALUE_LEN, entryValue, SMP_LEGACY_OOB_LEN); in SMP_AuthenticationRequestReply()
406 (void)memcpy_s(ctx->entryValue, SMP_ENTRY_VALUE_LEN, entryValue, SMP_SC_OOB_LEN); in SMP_AuthenticationRequestReply()
1060 SMP_AuthReqReplyObtainEntryValue(pairMethod, entryValue); in SMP_AuthReqReplyProcessMaster()
1133 SMP_AuthReqReplyObtainEntryValue(pairMethod, entryValue); in SMP_AuthReqReplyProcessSlave()
1267 LOG_INFO("passkey is %u.", *((uint32_t *)entryValue)); in SMP_AuthReqReplyObtainEntryValue()
1269 for (int i = 0; i < (int)sizeof(*((uint32_t *)entryValue)); i++) { in SMP_AuthReqReplyObtainEntryValue()
1270 g_smpPairMng.TK[SMP_TK_LEN - 1 - i] = entryValue[i]; in SMP_AuthReqReplyObtainEntryValue()
1274 (void)memcpy_s(g_smpPairMng.TK, SMP_TK_LEN, entryValue, SMP_TK_LEN); in SMP_AuthReqReplyObtainEntryValue()
[all …]
H A Dsmp.h288 …uint16_t handle, bool accept, uint8_t rejectReason, uint8_t pairMethod, const uint8_t *entryValue);
H A Dsmp_def.h270 uint8_t entryValue[SMP_ENTRY_VALUE_LEN]; member
/ohos5.0/base/security/certificate_framework/frameworks/core/extension/src/
H A Dcf_object_extension.c131 CfBlob entryValue = { 0, NULL }; in CfExtGetEntry() local
133 &oidParam->blob, &entryValue); in CfExtGetEntry()
141 { .tag = CF_TAG_RESULT_BYTES, .blob = entryValue }, in CfExtGetEntry()
144 CfFree(entryValue.data); in CfExtGetEntry()
/ohos5.0/base/security/certificate_framework/frameworks/adapter/v2.0/src/
H A Dcf_adapter_extension_openssl.c428 unsigned char *entryValue = NULL; in GetEntryValue() local
429 int entryValueLen = i2d_ASN1_OCTET_STRING(octetString, &entryValue); in GetEntryValue()
435 int32_t ret = DeepCopyDataToOutblob((char *)entryValue, entryValueLen, out); in GetEntryValue()
436 OPENSSL_free(entryValue); in GetEntryValue()
/ohos5.0/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/include/
H A Dpastedata_record_napi.h69 std::shared_ptr<UDMF::ValueType> entryValue = nullptr; member
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_nb_delegate_rd_test.cpp1937 Entry entryValue; in ChkRangeResultSet() local
1938 EXPECT_EQ(resultSet->GetEntry(entryValue), OK); in ChkRangeResultSet()
1939 std::string keyStr(entryValue.value.begin(), entryValue.value.end()); in ChkRangeResultSet()
2090 Entry entryValue; in ChkRangeResultSetMoveFuc() local
2091 EXPECT_EQ(resultSet->GetEntry(entryValue), OK); in ChkRangeResultSetMoveFuc()
2092 std::string keyStr(entryValue.value.begin(), entryValue.value.end()); in ChkRangeResultSetMoveFuc()
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/capability/clipboard/
H A Dclipboard_impl.cpp635 auto entryValue = entryPtr->GetValue(); in ProcessSpanStringData() local
636 auto spanStringBuffer = std::get_if<std::vector<uint8_t>>(&entryValue); in ProcessSpanStringData()