Home
last modified time | relevance | path

Searched refs:fields (Results 1 – 14 of 14) sorted by relevance

/base/hiviewdfx/hiview/base/utility/
Dsql_util.cpp21 const std::vector<std::pair<std::string, std::string>>& fields) in GenerateCreateSql() argument
28 for (auto field : fields) { in GenerateCreateSql()
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/
Dapp_event_store.cpp38 …enerateCreateSql(const std::string& table, std::vector<std::pair<std::string, std::string>> fields) in GenerateCreateSql() argument
45 for (auto field : fields) { in GenerateCreateSql()
70 std::vector<std::pair<std::string, std::string>> fields = { in OnCreate() local
73 std::string sql = GenerateCreateSql(Blocks::TABLE, fields); in OnCreate()
116 std::vector<std::pair<std::string, std::string>> fields = { in CreateBlockTable() local
120 std::string sql = GenerateCreateSql(Block::TABLE_PREFIX + name, fields); in CreateBlockTable()
Dapp_event_blocks_dao.cpp85 std::vector<std::string> fields = { name }; in RemoveBlock() local
86 if (int ret = dbStore->Delete(delRow, table_, cond, fields); ret != NativeRdb::E_OK) { in RemoveBlock()
Dapp_event_block_dao.cpp72 std::vector<std::string> fields = { std::to_string(seq) }; in DeletePackageBySeq() local
73 if (int ret = dbStore->Delete(delRow, table_, cond, fields); ret != NativeRdb::E_OK) { in DeletePackageBySeq()
/base/hiviewdfx/hiview/plugins/usage_event_report/cache/
Devent_db_helper.cpp189 const std::vector<std::pair<std::string, std::string>>& fields) in CreateTable() argument
191 std::string sql = SqlUtil::GenerateCreateSql(table, fields); in CreateTable()
208 std::vector<std::pair<std::string, std::string>> fields = { in CreatePluginStatsTable() local
211 return CreateTable(table, fields); in CreatePluginStatsTable()
223 std::vector<std::pair<std::string, std::string>> fields = {{DB_COLUMIN_EVNET, SQL_TEXT_TYPE}}; in CreateSysUsageTable() local
224 return CreateTable(table, fields); in CreateSysUsageTable()
Djson_parser.cpp49 …ol JsonParser::CheckJsonValue(const Json::Value& eventJson, const std::vector<std::string>& fields) in CheckJsonValue() argument
51 for (auto field : fields) { in CheckJsonValue()
/base/update/updater/services/include/applypatch/
Dapply_patch.h22 std::vector<std::string> fields; member
/base/hiviewdfx/hiview/base/utility/include/
Dsql_util.h26 const std::vector<std::pair<std::string, std::string>>& fields);
/base/telephony/sms_mms/frameworks/native/mms/src/
Dmms_content_type.cpp400 uint8_t fields[textParamLen] = {static_cast<uint8_t>(ContentParam::CT_P_FILENAME), in EncodeTextField() local
407 for (size_t i = 0; i < sizeof(fields); i++) { in EncodeTextField()
408 if (msgContentParm_.GetParamMap().find(fields[i]) != msgContentParm_.GetParamMap().end()) { in EncodeTextField()
409 if (!encodeBuffer.WriteByte(fields[i])) { in EncodeTextField()
413 if (!encodeBuffer.EncodeText(msgContentParm_.GetParamMap()[fields[i]])) { in EncodeTextField()
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/src/
Ddata_share_store.cpp41 … std::vector<std::pair<std::string, std::string>> fields = {{EventTable::FIELD_UID, SQL_INT_TYPE}, in OnCreate() local
45 std::string sql = SqlUtil::GenerateCreateSql(EventTable::TABLE, fields); in OnCreate()
Ddata_share_dao.cpp113 std::vector<std::string> fields = { std::to_string(uid) }; in DeleteSubscriberInfo() local
114 if (int ret = dbStore->Delete(delRow, eventTable_, cond, fields); ret != NativeRdb::E_OK) { in DeleteSubscriberInfo()
/base/hiviewdfx/hiview/plugins/usage_event_report/cache/include/
Djson_parser.h34 static bool CheckJsonValue(const Json::Value& value, const std::vector<std::string>& fields);
Devent_db_helper.h41 …ateTable(const std::string& table, const std::vector<std::pair<std::string, std::string>>& fields);
/base/security/certificate_framework/
DREADME-en.md15 …D) list of the certificate extensions based on the certificate extension fields passed by the serv…
19 … provide capabilities, such as parsing certificates and obtaining certificate fields, for services.