/developtools/global_resource_tool/src/ |
H A D | reference_parser.cpp | 89 bool update = false; in ParseRefInResourceItem() local 92 if (!ParseRefString(data, update)) { in ParseRefInResourceItem() 96 if (!update) { in ParseRefInResourceItem() 100 if (!ParseRefResourceItemData(resourceItem, data, update)) { in ParseRefInResourceItem() 103 if (!update) { in ParseRefInResourceItem() 107 if (update && !resourceItem.SetData(reinterpret_cast<const int8_t *>(data.c_str()), data.length())) { in ParseRefInResourceItem() 146 uint32_t ReferenceParser::ParseRefInString(string &value, bool &update) const in ParseRefInString() 148 if (ParseRefString(value, update)) { in ParseRefInString() 183 bool ReferenceParser::ParseRefResourceItemData(const ResourceItem &resourceItem, string &data, bool &update) const in ParseRefResourceItemData() 199 update in ParseRefResourceItemData() 266 bool update = false; ParseRefString() local 323 bool update = false; ParseRefJsonImpl() local [all...] |
H A D | config_parser.cpp | 375 bool update = false; in ParseJsonArrayRef() local 376 if (!GetRefIdFromString(value, update, JSON_ARRAY_IDS.at(key))) { in ParseJsonArrayRef() 381 if (update) { in ParseJsonArrayRef() 401 bool update = false; in ParseJsonStringRef() local 402 if (!GetRefIdFromString(value, update, JSON_STRING_IDS.at(key))) { in ParseJsonStringRef() 409 if (update) { in ParseJsonStringRef() 435 bool ConfigParser::GetRefIdFromString(string &value, bool &update, const string &match) const in GetRefIdFromString() argument 439 if (refParser.ParseRefInString(value, update) != RESTOOL_SUCCESS) { in GetRefIdFromString() 442 if (!update) { in GetRefIdFromString()
|
/developtools/global_resource_tool/include/ |
H A D | reference_parser.h | 34 uint32_t ParseRefInString(std::string &value, bool &update) const; 38 bool ParseRefResourceItemData(const ResourceItem &resourceItem, std::string &data, bool &update) const; 45 bool ParseRefString(std::string &key, bool &update) const;
|
H A D | config_parser.h | 85 bool GetRefIdFromString(std::string &value, bool &update, const std::string &match) const;
|
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/zip/ |
H A D | MessageDigestZipDataOutput.java | 37 messageDigest.update(buffer, offset, length); in write() 46 messageDigest.update(buffer); in write()
|
H A D | ZipEntry.java | 214 c.update(data); in build()
|
/developtools/integration_verification/tools/fotff/pkg/gitee_common/ |
H A D | steps_gitee.go | 111 for _, update := range updates { 113 if update.P1.StructureDiff(update.P2) { 117 if update.P1 != nil { 119 p1, err = gitee.GetBetweenTimeMRs("openharmony", update.P1.Name, branch, startTime, endTime) 122 if update.P2 != nil { 124 p2, err = gitee.GetBetweenTimeMRs("openharmony", update.P2.Name, branch, startTime, endTime) 129 Head: update.P2.Revision, 130 Base: update.P1.Revision, 132 Repo: update [all...] |
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/utils/ |
H A D | DigestUtils.java | 58 md.update(inputContentArray); in sha256Digest() 76 md.update(inputContentArray); in sha384Digest() 94 md.update(inputContentArray); in sha512Digest()
|
H A D | HashUtils.java | 80 md.update(str, 0, count); in getByteDigest() 112 md.update(hashList.get(i)); in getFileDigest()
|
/developtools/integration_verification/cases/smoke/basic/screenshot32/new_script/testcases/ |
H A D | test_acl_check.py | 18 whitelist_dict.update({item.get('processName'): item.get('acls')}) 60 native_acls_dict.update(
|
H A D | test_apl_check.py | 20 whitelist_dict.update({data.get('bundle&processName'): int(data.get('apl'))}) 58 result_dict.update({key: value})
|
/developtools/syscap_codec/tools/ |
H A D | syscap_collector.py | 142 syscap_dict.update({product_name: bundles_list}) 165 component_path_dict.update({product_name: component_paths}) 254 subsystem_infos.update(_default_subsystem) 382 self._parts_module_list.update(parts_config) 421 parts_info.update(_curr_parts_info) 449 _parts_path_info.update(build_loader.parts_path_info()) 491 all_components_dict.update({product_file.split('.')[0]: components_dict}) 499 all_components_dict.update(product_components_dict) 508 product_file_dict.update({file.name: os.path.join(product_define_path, file.name)})
|
H A D | syscap_check.py | 107 array_syscap_set.update(re.findall(ptrn, content)) 144 result_set.update(v) 180 syscap_set.update(v)
|
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/utils/ |
H A D | DigestUtils.java | 37 md.update(inputContentArray); in computeDigest()
|
/developtools/hdc/scripts/ |
H A D | hdc_hash_gen.py | 38 ALGORITHM.update(fd.read(1024 * 1024)) 40 ALGORITHM.update(fd.read())
|
H A D | sha256.py | 26 sha256.update(hdckey_content.encode())
|
/developtools/integration_verification/tools/startup_guard/config_parser_mgr/cfg/ |
H A D | config_parser.py | 47 def update(self, json_node, parent=None, file_id=None): member in ItemParser 125 def update(self, json_node, parent=None, fileId=None): member in JobParser 204 def update(self, json_node, parent=None, fileId=None): member in ServiceParser 361 self._jobs.get(item.get("name")).update(item, service, file_id) 374 self._services.get(item.get("name")).update(item)
|
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/signer/ |
H A D | LocalSigner.java | 84 signature.update(data); in getSignature()
|
/developtools/profiler/device/plugins/native_daemon/src/ |
H A D | virtual_thread.cpp | 222 bool VirtualThread::ParseMap(std::vector<std::shared_ptr<DfxMap>>& memMaps, bool update) in ParseMap() argument 231 bool mapsAdded = !update; in ParseMap() 236 if (!update) { in ParseMap() 241 HLOGD("update hap(%s) symbols", memMapItem->name.c_str()); in ParseMap() 255 HLOGD("update hap(%s) symbols", memMapItem->name.c_str()); in ParseMap()
|
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/utils/ |
H A D | HapUtils.java | 297 messageDigests[i].update(chunkContentPrefix); in computeDigests() 350 messageDigests[i].update(digestOfChunks[i]); in getContentDigestAlgorithmMap() 352 messageDigests[i].update(signingBlock.getValue()); in getContentDigestAlgorithmMap()
|
/developtools/profiler/device/plugins/native_daemon/include/ |
H A D | virtual_thread.h | 95 bool ParseMap(std::vector<std::shared_ptr<DfxMap>> &memMaps, bool update = false);
|
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/src/ |
H A D | get_subsystem_component.py | 77 ret.update({v: {'subsystem': subsystem_k, 'component': k}})
|
/developtools/integration_verification/tools/rom_ram_analyzer/standard/pkgs/ |
H A D | basic_tool.py | 60 filepath_list.update(
|
/developtools/ace_js2bundle/ace-loader/ |
H A D | main.product.js | 151 hash.update(projectPath.toString())
|
/developtools/hdc/hdc_rust/src/host/ |
H A D | auth.rs | 104 if ConnectMap::update( 116 hdc::error!("update connect status for {} failed", connect_key);
|