Home
last modified time | relevance | path

Searched refs:FieldName (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/
H A Dtable.rs52 x @ Some(TableIndex::FieldName(_)) => x, in find_index_name_static()
70 x @ Some(TableIndex::FieldName(_)) => x, in find_index_name_dynamic()
216 FieldName(usize), enumerator
543 (Field::Path, _) => Some(TableIndex::FieldName(1)), in index()
572 ("age", _) => Some(TableIndex::FieldName(2)), in index()
576 ("cookie", _) => Some(TableIndex::FieldName(5)), in index()
577 ("date", _) => Some(TableIndex::FieldName(6)), in index()
578 ("etag", _) => Some(TableIndex::FieldName(7)), in index()
582 ("link", _) => Some(TableIndex::FieldName(11)), in index()
622 ("range", _) => Some(TableIndex::FieldName(55)), in index()
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/relational/
H A Dtable_info.h30 using CompositeFields = std::vector<FieldName>;
85 const std::map<int, FieldName> &GetPrimaryKey() const;
96 void SetPrimaryKey(const std::map<int, FieldName> &key);
97 void SetPrimaryKey(const FieldName &fieldName, int keyIndex);
135 …int CompareWithPrimaryKey(const std::map<int, FieldName> &local, const std::map<int, FieldName> &r…
150 std::map<int, FieldName> primaryKey_;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/cloud/
H A Dschema_mgr.h43 bool ComparePrimaryField(std::map<int, FieldName> &localPrimaryKeys, const Field &cloudField);
44 int CompareFieldSchema(std::map<int, FieldName> &primaryKeys, FieldInfoMap &localFields,
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/format/
H A Dencoder.rs133 (Some(TableIndex::FieldName(index)), _, _) => { in encode()
143 (_, Some(TableIndex::FieldName(index)), true) => { in encode()
154 (_, Some(TableIndex::FieldName(index)), false) => { in encode()
159 dynamic_name_index = Some(TableIndex::FieldName( in encode()
186 dynamic_name_index = Some(TableIndex::FieldName(post_index)); in encode()
195 if let Some(TableIndex::FieldName(index)) = dynamic_name_index { in encode()
221 if let Some(TableIndex::FieldName(index)) = static_name_index { in encode()
319 Some(TableIndex::FieldName(x)) => { in should_index()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/cloud/
H A Dschema_mgr.cpp54 std::map<int, FieldName> primaryKeys = tableInfo.GetPrimaryKey(); in ChkSchema()
59 int SchemaMgr::CompareFieldSchema(std::map<int, FieldName> &primaryKeys, FieldInfoMap &localFields, in CompareFieldSchema()
136 bool SchemaMgr::ComparePrimaryField(std::map<int, FieldName> &localPrimaryKeys, const Field &cloudF… in ComparePrimaryField()
H A Dcloud_storage_utils.cpp776 const std::map<int, FieldName> &primaryKeys = table.GetPrimaryKey(); in ConstraintsCheckForCloud()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-network-kit/
H A D_web_socket___header.md20 | [FieldName](netstack.md#fieldname) | header头的字段名。 |
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Dtable_info.cpp348 const std::map<int, FieldName> &TableInfo::GetPrimaryKey() const in GetPrimaryKey()
367 void TableInfo::SetPrimaryKey(const std::map<int, FieldName> &key) in SetPrimaryKey()
372 void TableInfo::SetPrimaryKey(const FieldName &fieldName, int keyIndex) in SetPrimaryKey()
474 int TableInfo::CompareWithPrimaryKey(const std::map<int, FieldName> &local, in CompareWithPrimaryKey()
475 const std::map<int, FieldName> &remote) const in CompareWithPrimaryKey()
/ohos5.0/docs/en/application-dev/reference/apis-network-kit/
H A D_web_socket___header.md20 | [FieldName](netstack.md#fieldname) | Header field name.|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Dschema_utils.h40 static int CheckFieldName(const FieldName &inName);
H A Ddb_types.h97 using FieldName = std::string; variable
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dquery_object.h67 int CheckPrimaryKey(const std::map<int, FieldName> &primaryKeyMap) const;
H A Dquery_object.cpp519 int QueryObject::CheckPrimaryKey(const std::map<int, FieldName> &primaryKeyMap) const in CheckPrimaryKey()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H A Ddistributeddb_relational_schema_object_test.cpp924 const std::map<int, FieldName> keyName1 = {{0, "rowid"}};
938 const std::map<int, FieldName> keyName2 = {{0, "test0"}, {1, "test1"}};
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_index_unit_test.cpp86 FieldName GenerateFieldName(uint32_t serial, uint32_t level, bool fullLength) in GenerateFieldName()
88 FieldName result = "Serial_"; in GenerateFieldName()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dschema_utils.cpp427 int SchemaUtils::CheckFieldName(const FieldName &inName) in CheckFieldName()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_relational_store.cpp1223 const std::map<int, FieldName> &primaryKeyMap = tableInfo.GetPrimaryKey(); in CheckObjectValid()