Home
last modified time | relevance | path

Searched refs:signed (Results 1 – 8 of 8) sorted by relevance

/developtools/profiler/device/plugins/ftrace_plugin/tools/
Dftrace_format_parser.py63 def __init__(self, tid, size=0, signed=False): argument
66 self.signed = signed
69 return "{{ T: {}, SZ: {}, SN: {} }}".format(self.tid, self.size, self.signed)
84 if not self.signed:
94 def __init__(self, event, field, name, offset, size, signed): argument
100 self.signed = signed
104 self.event, self.field, self.name, self.offset, self.size, self.signed
163 return ProtoType(ProtoType.INTEGER, 4, self.signed)
166 return ProtoType(ProtoType.INTEGER, 8, self.signed)
209 size, signed = int(fields[2][1]), int(fields[3][1]) == 1
[all …]
/developtools/hapsigner/
DREADME.md5 …en tampered with, OpenHarmony requires that all executable code be signed. Only signed apps and bi…
83 ├── -inFile # Provisioning profile to be signed. It is mandatory.
105 …├── -profileSigned # Whether the profile is signed. The value 1 means the profile is signed, a…
106 …├── -inForm # Format of the file to be signed. The value can be zip, elf, or bin. It is…
107 …├── -inFile # File to be signed, which can be a HAP or an ELF or bin file. This paramet…
132 3. Check that the HAP, binary tool, or provisioning profile to be signed is available.
280 ├── -inFile # Provisioning profile to be signed. It is mandatory.
305 …├── -profileFile # Name of the signed provisioning profile. When profileSigned is 1, the file is…
306 …├── -profileSigned # Whether the profile is signed. The value 1 means the profile is signed, and t…
307 …├── -inForm # Format of the file to be signed. The value can be zip, elf, or bin. It is zip…
[all …]
/developtools/hapsigner/hapsigntool/hap_sign_tool/src/main/resources/
Dhelp.txt151 -outFile : output the signed Provision Profile file, p7b format, required fields;
155 … -keystoreFile "D:\OH\profile-keypair.jks" -keystorePwd ****** -outFile "D:\OH\signed-profile.p7b"
158 -inFile : signed Provision Profile file, p7b format, required fields;
163 verify-profile -inFile "D:\OH\signed-profile.p7b" -outFile "D:\OH\VerifyResult.json"
170 -profileFile : signed Provision Profile file, p7b format, required fields;
176 -outFile : output the signed Provision Profile file, required fields;
186 …-signCode : Whether the HAP file is signed code, The value 1 means enable sign code, and value 0 m…
189signed-profile.p7b" -inFile "D:\OH\app1-unsigned.hap" -signAlg SHA256withECDSA -keystoreFile "D:…
192 -inFile : signed application package file, hap or bin format, required fields;
193 -outCertChain : signed certificate chain file, required fields;
[all …]
/developtools/hapsigner/autosign/
DsignHap.config32 sign.app.outFile=app1-signed.hap
DsignElf.config32 sign.app.outFile=elf-signed
Dautosign.config66 sign.app.outFile=app1-signed.hap
/developtools/profiler/proto_encoder/example/
Dexample.proto57 …// repeated sint32 repeated_signed_vint = 24; // repeated signed(zigzag) not supported in libproto…
/developtools/profiler/device/plugins/ftrace_plugin/tools/device_kernel_version/default/
Dftrace_cpp_generator.py197 c_type = "int32_t" if type_info.signed else "uint32_t"
199 c_type = "int64_t" if type_info.signed else "uint64_t"