/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/src/ |
H A D | template_processor.py | 151 sub = GnVariableParser.string_parser("subsystem_name", paragraph) 153 sub, sub_from = _gn_var_process( 154 self.project_path, sub, _sub, gn_path, "gn", "json", True) 157 if not sub: 158 sub = self.undefined 165 "subsystem_name": sub, 215 sub = GnVariableParser.string_parser("subsystem_name", paragraph) 217 sub, sub_from = _gn_var_process( 218 self.project_path, sub, _sub, gn_path, "gn", "json") 221 if not sub [all...] |
H A D | rom_analysis.py | 191 def _put(cls, sub: str, com: str, unit: Dict, rom_size_dict: Dict, com_size_baseline: str = str()): 195 if not rom_size_dict.get(sub): # 子系统大小 196 rom_size_dict[sub]: Dict[str, Dict] = dict() 197 rom_size_dict[sub]["size"] = 0 198 rom_size_dict[sub]["count"] = 0 200 if not rom_size_dict.get(sub).get(com): # 部件 201 rom_size_dict.get(sub)[com] = dict() 202 rom_size_dict[sub][com]["filelist"] = list() 203 rom_size_dict[sub][com]["size"] = 0 204 rom_size_dict[sub][co [all...] |
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/workers/ |
H A D | worker.js | 56 console.log(workTag + 'sub worker recv:' + JSON.stringify(e.data)); 99 console.log(workTag + 'sub worker messageFps :' + messageFps); 107 console.log(workTag + 'sub worker messageRam :' + messageRam); 114 console.log(workTag + 'sub worker screen_capture :' + 'get_capture'); 122 console.log(workTag + 'sub worker catch_trace_start :' + 'catch_trace_start'); 130 console.log(workTag + 'sub worker catch_trace_end :' + 'catch_trace_end'); 142 console.log(workTag + 'sub worker SocketRecv:' + str); 166 function includes(all, sub) { 168 sub = sub [all...] |
/developtools/hapsigner/hapsigntool_cpp/cmd/include/ |
H A D | help.h | 124 generate-ca -keyAlias "oh-app1-key-v1" -keyAlg ECC -issuerKeyAlias "oh-sub-app-ca-key-v1" -issuerKeyPwd ****** 127 -keystoreFile "/home/app-keypair.jks" -keystorePwd ****** -outFile "/home/sub-app-sign-srv-ca.cer" 145 -subCaCertFile : secondary sub -CA certificate file, required when outForm is certChain; 159 -signAlg SHA256withECDSA -rootCaCertFile "/home/root-ca.cer" -subCaCertFile "/home/sub-app-sign-srv-ca.cer" 179 -subCaCertFile : secondary sub -CA certificate file, required when outForm is certChain; 195 -rootCaCertFile "/home/root-ca.cer" -subCaCertFile "/home/sub-profile-sign-srv-ca.cer" -outForm certChain
|
/developtools/global_resource_tool/src/ |
H A D | resource_append.cpp | 447 string sub = filePath.substr(pos); in WriteRawFilesOrResFiles() local 448 sub = FileEntry::FilePath(RESOURCES_DIR).Append(sub).GetPath(); in WriteRawFilesOrResFiles() 452 resourceItem.SetData(sub); in WriteRawFilesOrResFiles()
|
H A D | resource_util.cpp | 52 string sub = str.substr(begin, end - begin); in Split() local 53 out.push_back(sub); in Split()
|
/developtools/profiler/device/plugins/native_daemon/src/ |
H A D | utilities.cpp | 49 size_t SubStringCount(const std::string &source, const std::string &sub) in SubStringCount() argument 53 if (sub.empty()) { in SubStringCount() 56 while ((pos = source.find(sub, pos)) != std::string::npos) { in SubStringCount() 57 pos += sub.size(); in SubStringCount()
|
/developtools/profiler/host/smartperf/client/client_command/include/ |
H A D | sp_utils.h | 87 * @param sub 91 bool IsSubString(const std::string &str, const std::string &sub);
|
/developtools/hiperf/src/ |
H A D | utilities.cpp | 112 size_t SubStringCount(const std::string &source, const std::string &sub) in SubStringCount() argument 116 if (sub.empty()) { in SubStringCount() 119 while ((pos = source.find(sub, pos)) != std::string::npos) { in SubStringCount() 120 pos += sub.size(); in SubStringCount()
|
/developtools/hapsigner/hapsigntool_cpp/profile/src/ |
H A D | pkcs7_data.cpp | 254 std::string sub; variable 255 VerifyCertOpensslUtils::GetSubjectFromX509(sk_X509_value(certs, i), sub); variable 256 SIGNATURE_TOOLS_LOGI("%s", sub.c_str()); 487 SIGNATURE_TOOLS_LOGE("sub cert name compare not equal, verify failed"); in VerifySignerInfoCertchain() 492 SIGNATURE_TOOLS_LOGE("sub cert signature verify failed"); in VerifySignerInfoCertchain()
|
/developtools/profiler/host/smartperf/client/client_command/ |
H A D | sp_utils.cpp | 160 bool SPUtils::IsSubString(const std::string &str, const std::string &sub) in IsSubString() argument 162 if (sub.empty() || str.empty()) { in IsSubString() 166 return str.find(sub) != std::string::npos; in IsSubString()
|
/developtools/smartperf_host/ide/server/ |
H A D | main.go | 450 sub := now.Sub(parseTime) 451 if sub.Minutes() > 60 { //bigger than 60 min flag due
|
/developtools/hdc/src/common/ |
H A D | base.h | 99 int StringEndsWith(string s, string sub);
|
H A D | base.cpp | 1619 int StringEndsWith(string s, string sub) in StringEndsWith() argument 1621 return s.rfind(sub) == (s.length() - sub.length()) ? 1 : 0; in StringEndsWith()
|
/developtools/profiler/device/plugins/native_daemon/include/ |
H A D | utilities.h | 171 size_t SubStringCount(const std::string &source, const std::string &sub);
|
/developtools/integration_verification/tools/rom_ram_analyzer/standard/ |
H A D | ram_analyzer.py | 364 content = re.sub(trival_pattern, "", content) 366 return re.sub(blank_pattern, ' ', content.strip()).split()
|
/developtools/hiperf/include/ |
H A D | utilities.h | 171 size_t SubStringCount(const std::string &source, const std::string &sub);
|