Home
last modified time | relevance | path

Searched refs:RawValue (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/common/
H A Dstate_mgmt_dfx.ts39 private static getType(item: RawValue): string {
55 private static dumpItems(arr: Array<RawValue>): Array<DumpBuildInType> {
63 private static dumpMap(map: Map<RawValue, RawValue>): Array<DumpBuildInType> {
156 type RawValue = any;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_schema_database_upgrader.cpp68 void CheckGetForJsonSchema(sqlite3_context *ctx, ValueUpgradeContext &context, const RawValue &inVa… in CheckGetForJsonSchema()
110 void CheckGetForFlatBufferSchema(sqlite3_context *ctx, ValueUpgradeContext &context, const RawValue in CheckGetForFlatBufferSchema()
151 CheckGetForJsonSchema(ctx, *context, RawValue{valueBlob, valueBlobLen}, checkTrueGetFalse); in CheckValueOrGetAmendValue()
153 … CheckGetForFlatBufferSchema(ctx, *context, RawValue{valueBlob, valueBlobLen}, checkTrueGetFalse); in CheckValueOrGetAmendValue()
H A Dsqlite_utils.h217 …atBufferExtractInnerFunc(sqlite3_context *ctx, const SchemaObject &schema, const RawValue &inValue,
H A Dsqlite_utils.cpp1968 FlatBufferExtractInnerFunc(ctx, *schema, RawValue { valueBlob, valueBlobLen }, path); in FlatBufferExtractByPath()
1981 …atBufferExtractInnerFunc(sqlite3_context *ctx, const SchemaObject &schema, const RawValue &inValue, in FlatBufferExtractInnerFunc()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Dschema_object.h103 int VerifyValue(ValueSource sourceType, const RawValue &inValue) const;
108 …int ExtractValue(ValueSource sourceType, RawString inPath, const RawValue &inValue, TypeValue &out…
168 int VerifyFlatBufferValue(const RawValue &inValue, bool tryNoSizePrefix) const;
171 int ExtractFlatBufferValue(RawString inPath, const RawValue &inValue, TypeValue &outExtract,
H A Ddb_types.h122 using RawValue = std::pair<const uint8_t *, uint32_t>; variable
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dflatbuffer_schema.cpp207 int CheckSizePrefixRawValue(const RawValue &inValue) in CheckSizePrefixRawValue()
225 int SchemaObject::FlatBufferSchema::VerifyFlatBufferValue(const RawValue &inValue, bool tryNoSizePr… in VerifyFlatBufferValue()
426 int SchemaObject::FlatBufferSchema::ExtractFlatBufferValue(RawString inPath, const RawValue &inValu… in ExtractFlatBufferValue()
985 int SchemaObject::FlatBufferSchema::VerifyFlatBufferValue(const RawValue &inValue, bool tryNoSizePr… in VerifyFlatBufferValue()
992 int SchemaObject::FlatBufferSchema::ExtractFlatBufferValue(RawString inPath, const RawValue &inValu… in ExtractFlatBufferValue()
H A Dschema_object.cpp316 return VerifyValue(sourceType, RawValue{inValue.data(), inValue.size()}); in VerifyValue()
319 int SchemaObject::VerifyValue(ValueSource sourceType, const RawValue &inValue) const in VerifyValue()
332 RawValue rawValue; in VerifyValue()
350 int SchemaObject::ExtractValue(ValueSource sourceType, RawString inPath, const RawValue &inValue, in ExtractValue()
365 RawValue rawValue; in ExtractValue()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H A Ddistributeddb_schema_object_test.cpp1161 ret = schema.VerifyValue(ValueSource::FROM_LOCAL, RawValue{nullptr, 0});