Home
last modified time | relevance | path

Searched refs:elf (Results 1 – 21 of 21) sorted by relevance

/developtools/integration_verification/tools/deps_guard/elf_file_mgr/module_info/
Dcompile_info_loader.py33 elf = load_mgr.get_elf_by_path(item["name"])
34 if not elf:
38 elf[k] = item[k]
41 for elf in load_mgr.get_all():
42 if "componentName" not in elf:
43 print("%s does not match in module info file" % (elf["path"]))
45 unknown["name"] = elf["path"]
46 unknown["fileName"] = elf["name"]
48 elf[k] = default_info[k]
50 elif elf["componentName"] == "unknown":
[all …]
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/
Delf_file_mgr.py124 def add_elf_file(self, elf): argument
126 elf["id"] = self._elf_idx
128 self._elf_files.append(elf)
131 self._path_dict[elf["path"]] = elf
134 if elf["name"] in self._basename_dict:
135 self._basename_dict[elf["name"]].append(elf)
137 self._basename_dict[elf["name"]] = [elf]
189 elf = self._elf_file_class(f, self._prefix)
190 if elf["path"] in self._path_dict:
191 print("Warning: duplicate " + elf.get_file() + ' skipped.')
[all …]
Delf_file.py104 elf = ElfFile(f, elfFiles.get_product_images_path()) variable
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/innerapi/
Dinnerapi.py35 for elf in mgr.get_all():
36 if elf["labelPath"] in innerapis:
37 elf["innerapi_declared"] = True
/developtools/hapsigner/
DREADME_ZH.md112 … ├── -inForm #输入的原始文件的格式,枚举值:zip、elf或bin;zip应用包对应zip,二进制工具对应elf,bin应用包为bin,默认zip;可选项
113 ├── -inFile #输入的原始文件,应用包、elf或bin文件,必填项
118 … ├── -signCode #是否启用代码签名,1表示开启代码签名,0表示关闭代码签名,可选项。默认对hap、hsp、hqf、elf开启代码签名,通过参数配置为0关闭。
287 … ├── -inForm # 输入的原始文件的格式,枚举值:zip、elf或bin;zip应用包对应zip,二进制工具对应elf,bin应用包为bin,默认zip;可选项
288 ├── -inFile # 输入的原始文件,应用包、elf或bin文件,必填项
293 ├── -signCode # 是否启用代码签名,1表示开启代码签名,0表示关闭代码签名。可选项。默认对hap、hsp、hqf、elf开启代码签名,通过参数配置为0关闭。
298 ├── -inFile # 已签名的文件,应用包、elf或bin文件,必填项
301 … ├── -inForm # 输入的原始文件的格式,枚举值:zip、elf或bin;zip应用包对应zip,二进制工具对应elf,bin应用包为bin,默认zip;可选项
DREADME.md106elf, or bin. It is zip for a HAP, elf for a binary tool, and bin for a program running on the smal…
307elf, or bin. It is zip for a HAP, elf for a binary tool, and bin for a program running on the smal…
324elf, or bin. It is zip for a HAP, elf for a binary tool, and bin for a program running on the smal…
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/hdi/
Dhdi_parser.py69 for elf in mgr.get_all():
70 if elf["name"] in modules:
71 elf["hdiType"] = "hdi_service"
/developtools/hapsigner/autosign/
DsignElf.config31 sign.app.inFile=elf-unsigned
32 sign.app.outFile=elf-signed
33 sign.app.inForm=elf
/developtools/hiperf/src/
Dvirtual_thread.cpp236 if (map->elf == nullptr) { in ReadRoMemory()
241 map->elf = symFile->GetElfFile(); in ReadRoMemory()
243 if (map->elf != nullptr) { in ReadRoMemory()
245 uint64_t foff = vaddr - map->begin + map->offset - map->elf->GetBaseOffset(); in ReadRoMemory()
246 if (map->elf->Read(foff, data, size)) { in ReadRoMemory()
Dsymbols_file.cpp265 map->elf = elfFile_; in LoadDebugInfo()
267 map->prevMap->elf = elfFile_; in LoadDebugInfo()
420 …void AddSymbols(std::vector<DfxSymbol>& symbolsTable, std::shared_ptr<DfxElf> elf, const std::stri… in AddSymbols() argument
423 DfxSymbols::ParseSymbols(symbolsTable, elf, filePath); in AddSymbols()
424 DfxSymbols::AddSymbolsByPlt(symbolsTable, elf, filePath); in AddSymbols()
435 map->elf = elfFile_; in LoadElfSymbols()
Dcallstack.cpp731 auto elf = symbolsFile->GetElfFile(); in FillUnwindTable() local
732 if (elf == nullptr) { in FillUnwindTable()
735 if (elf->FindUnwindTableInfo(pc, map, uti) == 0) { in FillUnwindTable()
Dsubcommand_dump.cpp197 auto elf = SymbolsFile::CreateSymbolsFile(elfFileName_); in DumpElfFile() local
198 if (!elf->LoadSymbols(nullptr, "")) { in DumpElfFile()
/developtools/profiler/device/plugins/native_daemon/src/
Dvirtual_thread.cpp202 map->elf = symbolsFile->GetElfFile(); in ReadRoMemory()
203 if (map->elf != nullptr) { in ReadRoMemory()
205 fileOffset -= map->elf->GetBaseOffset(); in ReadRoMemory()
206 map->elf->Read(fileOffset, data, size); in ReadRoMemory()
Dsymbols_file.cpp205 map->elf = elfFile_; in LoadDebugInfo()
227 map->elf = elfFile_; in LoadDebugInfo()
229 map->prevMap->elf = elfFile_; in LoadDebugInfo()
370 map->elf = elfFile_; in LoadElfSymbols()
Dcall_stack.cpp566 auto elf = symbolsFile->GetElfFile(); in FillUnwindTable() local
567 if (elf == nullptr) { in FillUnwindTable()
570 if (elf->FindUnwindTableInfo(pc, map, uti) == 0) { in FillUnwindTable()
/developtools/smartperf_host/trace_streamer/prebuilts/patch_hiperf/
DBUILD.gn16 ohos_source_set("elf") {
93 ":elf",
/developtools/integration_verification/tools/rom_ram_analyzer/standard/
DREADME.md175 "elf":{
191 "elf文件名": elf文件大小(单位:字节)
Dram_analyzer.py268 def result_process1(cls, result_dict, process_name, process_size, elf, size): argument
273 result_dict[process_name]["startup"]["init"][elf if len(
274 elf) != 0 else "UNKNOWN"] = size
310 … _, elf, _, _, size = cls.find_elf_size_from_rom_result(process_name, "startup", "init",
314 … result_dict = cls.result_process1(result_dict, process_name, process_size, elf, size)
/developtools/hapsigner/tools/test/
Delf_unittest.elf16 elf test file
/developtools/hapsigner/tools/
Dcommands.config106elf" -keystoreFile "ohtest_pass.jks" -outFile "output-elf-codesign-profile" -keyPwd "123456" -keys…
107 …_unittest.elf" -keystoreFile "ohtest_pass.jks" -outFile "output-elf-codesign" -keyPwd "123456" -ke…
109 …erify-app -inFile "output-elf-codesign-profile" -outCertChain "app-sign-srv-ca1.cer" -outProfile "…
110 …'verify-app -inFile "output-elf-codesign" -outCertChain "app-sign-srv-ca1.cer" -outProfile "app1-p…
118elf" -keystoreFile "ohtest_pass.jks" -outFile "output-elf-codesign-profile" -keyPwd "123456" -keys…
119 …e "app1-profile.p7b" -inFile "test/elf_unittest.elf" -keystoreFile "ohtest_pass.jks" -outFile "out…
120 …e "app1-profile.p7b" -inFile "test/elf_unittest.elf" -keystoreFile "ohtest_pass.jks" -outFile "out…
121 …_unittest.elf" -keystoreFile "ohtest_pass.jks" -outFile "output-elf-codesign" -keyPwd "123456" -ke…
122 …_unittest.elf" -keystoreFile "ohtest_pass.jks" -outFile "output-elf-codesign" -keyPwd "123456" -ke…
124 …rify-app -inFile "output-elf-codesign-profile" -outCertChain "app-sign-srv-ca1.cer" -outProfile "a…
[all …]
/developtools/hapsigner/hapsigntool/hap_sign_tool/src/main/resources/
Dhelp.txt172 … -inFile : input original application package file, .hap, .bin, and .elf format, required fields;
178 … : Enter the format of the original file. The supported file formats include .zip, .bin, and .elf.;
196 … : Enter the format of the original file. The supported file formats include .zip, .bin, and .elf.;