/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/ |
H A D | virtual_cloud_db.cpp | 35 std::vector<VBucket> &extend) in BatchInsert() argument 53 extend.erase(extend.end()); in BatchInsert() 77 if (extend[i].find(g_gidField) != extend[i].end()) { in InnerBatchInsert() 101 .extend = extend[i] in InnerBatchInsert() 124 if (extend[i].find(g_gidField) == extend[i].end()) { in BatchInsertWithGid() 138 .extend = extend[i] in BatchInsertWithGid() 143 extend.erase(extend.end()); in BatchInsertWithGid() 421 extend.erase(extend.end()); in InnerUpdate() 445 if (extend[i].find(g_gidField) == extend[i].end()) { in InnerUpdateWithoutLock() 471 .extend = extend[i] in InnerUpdateWithoutLock() [all …]
|
H A D | virtual_cloud_db.h | 27 VBucket extend; member 32 std::vector<VBucket> &extend) override; 35 std::vector<VBucket> &extend); 38 std::vector<VBucket> &extend) override; 44 DBStatus DeleteByGid(const std::string &tableName, VBucket &extend); 105 std::vector<VBucket> &extend); 108 std::vector<VBucket> &extend, bool isDelete); 111 std::vector<VBucket> &extend, bool isDelete); 116 std::vector<VBucket> &data, VBucket &extend); 120 bool IsCloudGidMatchingInner(const QueryNode &queryNode, VBucket &extend); [all …]
|
H A D | distributeddb_cloud_syncer_lock_test.cpp | 230 extend.push_back(log); in GenerateDataRecords() 239 std::vector<VBucket> extend; in InsertLocalData() local 240 GenerateDataRecords(begin, count, 0, record, extend); in InsertLocalData() 266 std::vector<VBucket> extend; in InsertCloudDBData() local 277 std::vector<VBucket> extend; in UpdateCloudDBData() local 279 for (auto &entry: extend) { in UpdateCloudDBData() 290 std::vector<VBucket> extend; in DeleteCloudDBData() local 296 extend.push_back(log); in DeleteCloudDBData() 413 std::vector<VBucket> extend; in UpdateCloudAssets() local 426 extend.push_back(log); in UpdateCloudAssets() [all …]
|
H A D | distributeddb_cloud_syncer_download_assets_test.cpp | 163 extend.push_back(log); in GenerateDataRecords() 248 for (auto &entry: extend) { in UpdateCloudDBData() 1019 if (extend.find("assets") != extend.end()) { in __anon32d7e6601302() 1059 if (extend.find("assets") != extend.end()) { in __anon32d7e6601402() 1093 if (extend.find("assets") != extend.end()) { in __anon32d7e6601502() 1121 if (extend.find("assets") != extend.end() && count == 0) { in __anon32d7e6601602() 1298 if (extend.find("assets") != extend.end() && count == 0) { in __anon32d7e6601702() 1318 if (extend.find("assets") != extend.end() && num == 0) { in __anon32d7e6601802() 1401 if (extend.find("assets") != extend.end() && count == 0) { in __anon32d7e6601902() 1631 if (extend.find("assets") != extend.end()) { in __anon32d7e6601e02() [all …]
|
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/common/src/ |
H A D | memory_manager.cpp | 120 extend.size = sizeof(int); in Create() 137 free(extend.data); in Release() 138 extend.data = nullptr; in Release() 204 extend.size = data.size; in Create() 205 extend.data = nativeBuffer; in Create() 224 extend.data = nullptr; in Release() 233 MemoryData extend{}; in CreateMemory() local 265 res->extend.data = extend.data; in CreateMemory() 266 res->extend.size = extend.size; in CreateMemory() 267 res->extend.tag = extend.tag; in CreateMemory() [all …]
|
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/src/log/ |
H A D | backup_hi_audit_helper.cpp | 29 …id BackupHiAuditHelper::WriteProgressAuditLog(const std::string &status, const std::string &extend) in WriteProgressAuditLog() argument 32 SetProgressAuditLog(auditLog, status, extend); in WriteProgressAuditLog() 36 void BackupHiAuditHelper::WriteReportAuditLog(const std::string &extend) in WriteReportAuditLog() argument 39 SetReportAuditLog(auditLog, extend); in WriteReportAuditLog() 43 void BackupHiAuditHelper::SetBasicAuditLog(BackupAuditLog &auditLog, const std::string &extend) in SetBasicAuditLog() argument 47 auditLog.extend = BackupLogUtils::Format(extend); in SetBasicAuditLog() 56 SetBasicAuditLog(auditLog, info.extend); in SetErrorAuditLog() 60 const std::string &extend) in SetProgressAuditLog() argument 65 SetBasicAuditLog(auditLog, extend); in SetProgressAuditLog() 68 void BackupHiAuditHelper::SetReportAuditLog(BackupAuditLog &auditLog, const std::string &extend) in SetReportAuditLog() argument [all …]
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/ |
H A D | rdb_cloud.cpp | 37 extend.resize(record.size()); in BatchInsert() 46 extend = ValueProxy::Convert(std::move(extends)); in BatchInsert() 53 extend.resize(record.size()); in BatchUpdate() 62 extend = ValueProxy::Convert(std::move(extends)); in BatchUpdate() 77 auto [nodes, status] = ConvertQuery(extend); in Query() 210 auto it = extend.find(TYPE_FIELD); in ConvertQuery() 214 it = extend.find(QUERY_FIELD); in ConvertQuery() 215 if (it == extend.end()) { in ConvertQuery() 274 DataBucket& ext = extend[index++]; in PostEvent() 336 for (auto& extend : extends) { in ConvertErrorField() local [all …]
|
H A D | rdb_cloud.h | 44 std::vector<DBVBucket> &extend) override; 46 std::vector<DBVBucket> &extend) override; 47 DBStatus BatchDelete(const std::string &tableName, std::vector<DBVBucket> &extend) override; 48 …DBStatus Query(const std::string &tableName, DBVBucket &extend, std::vector<DBVBucket> &data) over… 49 …utedData::GeneralError PreSharing(const std::string &tableName, DistributedData::VBuckets &extend); 65 static std::pair<QueryNodes, DistributedData::GeneralError> ConvertQuery(DBVBucket& extend); 75 DistributedData::VBuckets& extend, DistributedData::AssetEvent eventId); 76 …void PostEvent(DistributedData::Value& value, DataBucket& extend, std::set<std::string>& skipAsset… 78 …void PostEventAsset(DistributedData::Asset& asset, DataBucket& extend, std::set<std::string>& skip…
|
/ohos5.0/build/scripts/ |
H A D | hapbuilder.py | 28 cmd.extend(['--hapsigner', options.hapsigner]) 29 cmd.extend(['--sign-algo', options.sign_algo]) 30 cmd.extend(['--keyalias', options.keyalias]) 31 cmd.extend(['--inFile', unsigned_hap_path]) 32 cmd.extend(['--outFile', signed_hap_path]) 34 cmd.extend(['--keystoreFile', options.keystore_path]) 36 cmd.extend(['--keyPwd', options.private_key_path]) 38 cmd.extend(['--profileSigned', '1']) 39 cmd.extend(['--inForm', 'zip']) 129 packing_cmd.extend( [all …]
|
H A D | app_sign.py | 53 cmd.extend(['-mode', 'localsign']) 54 cmd.extend(['-signAlg', options.sign_algo]) 55 cmd.extend(['-keyAlias', options.keyalias]) 56 cmd.extend(['-inFile', unsigned_hap_path]) 57 cmd.extend(['-outFile', signed_hap_path]) 58 cmd.extend(['-profileFile', options.profileFile]) 59 cmd.extend(['-keystoreFile', options.keystoreFile]) 60 cmd.extend(['-keystorePwd', options.keystorePwd]) 61 cmd.extend(['-keyPwd', options.keyPwd]) 62 cmd.extend(['-appCertFile', options.certificate_file]) [all …]
|
H A D | compile_app.py | 121 unsigned_hap_path_list.extend(hap_file) 122 unsigned_hap_path_list.extend(hsp_file) 182 cmd.extend(['hvigorw']) 184 cmd.extend(['./hvigorw']) 187 cmd.extend(['--mode', 'module', '-p', 190 cmd.extend(['assembleHap', '--mode', 193 cmd.extend(['--mode', 197 cmd.extend(['-p', 'debuggable=true']) 199 cmd.extend(['-p', 'debuggable=false']) 207 cmd.extend(['-p', 'buildMode=release']) [all …]
|
H A D | bpf.py | 40 cmd.extend(['-c', f]) 41 cmd.extend(['-o', options.output_file]) 48 cmd.extend(['-v', '-g', '-c', '-O2', '-target', 'bpf']) 50 cmd.extend(['-I', include_dir]) 54 cmd.extend(['-D', define])
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/ |
H A D | cloud_db_proxy.cpp | 309 std::vector<VBucket> extend; in DMLActionTask() local 471 std::vector<VBucket> &extend) in MoveInRecordAndExtend() argument 475 extend_ = std::move(extend); in MoveInRecordAndExtend() 481 extend_ = std::move(extend); in MoveInExtend() 485 std::vector<VBucket> &extend) in MoveOutRecordAndExtend() argument 489 extend = std::move(extend_); in MoveOutRecordAndExtend() 495 queryExtend_ = std::move(extend); in MoveInQueryExtendAndData() 502 extend = std::move(queryExtend_); in MoveOutQueryExtendAndData() 578 (!DBCommon::IsRecordSuccess(extend) && !DBCommon::IsRecordIgnored(extend) && in IsRecordActionFail() 587 for (auto &entry : extend) { in IsRecordActionFail() [all …]
|
H A D | cloud_sync_utils.cpp | 229 (uploadData.lockData.extend.size() > 0)); in CheckCloudSyncDataValid() 257 for (auto &extendData: extend) { in GetWaterMarkAndUpdateTime() 311 if (!uploadData.insData.extend.empty()) { in UpdateExtendTime() 322 if (!uploadData.updData.extend.empty()) { in UpdateExtendTime() 333 if (!uploadData.delData.extend.empty()) { in UpdateExtendTime() 435 if (extend.empty()) { in IsSkipAssetsMissingRecord() 439 … if (DBCommon::IsIntTypeRecordError(extend[i]) && !DBCommon::IsRecordAssetsMissing(extend[i])) { in IsSkipAssetsMissingRecord() 456 … (DBCommon::IsRecordError(data.extend[i]) || DBCommon::IsRecordAssetsMissing(data.extend[i]))) || in FillAssetIdToAssets() 495 if (extend.index() == TYPE_INDEX<Asset>) { in FillAssetIdToAssetData() 506 if (extend.index() == TYPE_INDEX<Assets>) { in FillAssetIdToAssetData() [all …]
|
H A D | cloud_db_proxy.h | 44 std::vector<VBucket> &extend, Info &uploadInfo); 46 …tchUpdate(const std::string &tableName, std::vector<VBucket> &record, std::vector<VBucket> &extend, 49 …tchDelete(const std::string &tableName, std::vector<VBucket> &record, std::vector<VBucket> &extend, 52 int Query(const std::string &tableName, VBucket &extend, std::vector<VBucket> &data); 87 void MoveInRecordAndExtend(std::vector<VBucket> &record, std::vector<VBucket> &extend); 89 void MoveInExtend(std::vector<VBucket> &extend); 91 void MoveOutRecordAndExtend(std::vector<VBucket> &record, std::vector<VBucket> &extend); 93 void MoveInQueryExtendAndData(VBucket &extend, std::vector<VBucket> &data); 95 void MoveOutQueryExtendAndData(VBucket &extend, std::vector<VBucket> &data); 121 static bool IsRecordActionFail(const VBucket &extend, bool isInsert, DBStatus status);
|
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/include/log/ |
H A D | backup_hi_audit_helper.h | 38 void WriteProgressAuditLog(const std::string &status, const std::string &extend = ""); 39 void WriteReportAuditLog(const std::string &extend = ""); 42 void SetBasicAuditLog(BackupAuditLog &auditLog, const std::string &extend); 44 …etProgressAuditLog(BackupAuditLog &auditLog, const std::string &status, const std::string &extend); 45 void SetReportAuditLog(BackupAuditLog &auditLog, const std::string &extend);
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/c_adapter/ |
H A D | cloud_extension.rs | 281 extend: *mut OhCloudExtHashMap, in OhCloudExtCloudDbExecuteSql() 298 let extend = match OhCloudExtHashMap::get_inner_mut(extend, SafetyCheckId::HashMap) { in OhCloudExtCloudDbExecuteSql() localVariable 302 let extend = &mut (*match extend { in OhCloudExtCloudDbExecuteSql() localVariable 321 extend: *mut OhCloudExtVector, in OhCloudExtCloudDbBatchInsert() 342 let extend = match OhCloudExtVector::get_inner_mut(extend, SafetyCheckId::Vector) { in OhCloudExtCloudDbBatchInsert() localVariable 346 let extend_vec = match extend { in OhCloudExtCloudDbBatchInsert() 366 extend: *mut OhCloudExtVector, in OhCloudExtCloudDbBatchUpdate() 386 let extend = match OhCloudExtVector::get_inner_mut(extend, SafetyCheckId::Vector) { in OhCloudExtCloudDbBatchUpdate() localVariable 390 let extend_vec = match extend { in OhCloudExtCloudDbBatchUpdate() 409 extend: *mut OhCloudExtVector, in OhCloudExtCloudDbBatchDelete() [all …]
|
/ohos5.0/docs/zh-cn/application-dev/onlyfortest/media/ |
H A D | api-info-TC-one-dev.md | 23 The result(api-info) of subSection(Test5-subSection) is 7,(extend the result of Test0-Section). 28 The result(api-info) of Section(Test1-Section) is 3, (extend the result of topic). 36 The result(api-info) of subSection(Test6-subSection) is 3,(extend the result of Test1-Section). 49 The result(api-info) of subSection(Test7-subSection) is 6,(extend the result of Test2-Section) 53 The result(api-info) of Section(Test8-Section) is 3, (extend the result of topic). 57 The result(api-info) of Section(Test9-subSection) is 3, (extend the result of Test8-Section).
|
H A D | api-info-TC-two-dev.md | 45 The result(api-info) of subSection(Test5-subSection) is 7???,(extend the result of Test0-Section). 58 The result(api-info) of subSection(Test6-subSection) is none,(extend the result of Test1-Section). 71 The result(api-info) of subSection(Test7-subSection) is 6????,(extend the result of Test2-Section) 75 The result(api-info) of Section(Test8-Section) is none, (extend the result of topic). 79 The result(api-info) of Section(Test9-subSection) is none, (extend the result of Test8-Section).
|
/ohos5.0/docs/zh-cn/application-dev/onlyfortest/reference/api-info-test-kit/ |
H A D | api-info-TC-one.md | 23 The result(api-info) of subSection(Test5-subSection) is 7,(extend the result of Test0-Section). 28 The result(api-info) of Section(Test1-Section) is 3, (extend the result of topic). 36 The result(api-info) of subSection(Test6-subSection) is 3,(extend the result of Test1-Section). 49 The result(api-info) of subSection(Test7-subSection) is 6,(extend the result of Test2-Section) 53 The result(api-info) of Section(Test8-Section) is 3, (extend the result of topic). 57 The result(api-info) of Section(Test9-subSection) is 3, (extend the result of Test8-Section).
|
H A D | api-info-TC-two.md | 45 The result(api-info) of subSection(Test5-subSection) is 7???,(extend the result of Test0-Section). 58 The result(api-info) of subSection(Test6-subSection) is none,(extend the result of Test1-Section). 71 The result(api-info) of subSection(Test7-subSection) is 6????,(extend the result of Test2-Section) 75 The result(api-info) of Section(Test8-Section) is none, (extend the result of topic). 79 The result(api-info) of Section(Test9-subSection) is none, (extend the result of Test8-Section).
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/cloud/ |
H A D | icloud_db.h | 34 std::vector<VBucket> &extend) = 0; 36 std::vector<VBucket> &extend) = 0; 37 virtual DBStatus BatchDelete(const std::string &tableName, std::vector<VBucket> &extend) = 0; 41 …virtual DBStatus Query(const std::string &tableName, VBucket &extend, std::vector<VBucket> &data) …
|
/ohos5.0/base/security/security_guard/frameworks/common/constants/include/ |
H A D | security_guard_define.h | 55 std::string extend; member 63 std::string extend; member 71 std::string extend; member 78 std::string extend; member
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/cloud/ |
H A D | cloud_db.cpp | 18 int32_t CloudDB::Execute(const std::string &table, const std::string &sql, const VBucket &extend) in Execute() argument 43 std::shared_ptr<Cursor> CloudDB::Query(const std::string &table, const VBucket &extend) in Query() argument 48 std::shared_ptr<Cursor> CloudDB::Query(GenQuery& query, const VBucket& extend) in Query() argument 53 int32_t CloudDB::PreSharing(const std::string& table, VBuckets& extend) in PreSharing() argument
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/cloud/ |
H A D | cloud_db.h | 33 … virtual int32_t Execute(const std::string &table, const std::string &sql, const VBucket &extend); 43 virtual std::shared_ptr<Cursor> Query(const std::string &table, const VBucket &extend); 45 virtual std::shared_ptr<Cursor> Query(GenQuery &query, const VBucket &extend); 47 virtual int32_t PreSharing(const std::string &table, VBuckets &extend);
|