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.py59 def __init__(self, tid, size=0, signed=False): argument
62 self.signed = signed
66 self.signed)
81 if not self.signed:
91 def __init__(self, event, field, name, offset, size, signed): argument
97 self.signed = signed
102 self.signed)
154 return ProtoType(ProtoType.INTEGER, 4, self.signed)
157 return ProtoType(ProtoType.INTEGER, 8, self.signed)
199 size, signed = int(fields[2][1]), int(fields[3][1]) == 1
[all …]
Dftrace_cpp_generator.py168 c_type = 'int32_t' if type_info.signed else 'uint32_t'
170 c_type = 'int64_t' if type_info.signed else 'uint64_t'
/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;
188signed-profile.p7b" -inFile "D:\OH\app1-unsigned.hap" -signAlg SHA256withECDSA -keystoreFile "D:…
191 -inFile : signed application package file, hap or bin format, required fields;
192 -outCertChain : signed certificate chain file, required fields;
197 …verify-app -inFile "D:\OH\app1-signed.hap" -outCertChain "outCertChain.cer" -outProfile "outprofil…
/developtools/hapsigner/autosign/
DsignHap.config32 sign.app.outFile=app1-signed.hap
Dautosign.config66 sign.app.outFile=app1-signed.hap
/developtools/hapsigner/
DREADME.md5 …of OpenHarmony applications, the applications must be signed during the build process. Only signed
99 …├── -profileSigned # Whether the profile is signed. The value 1 means signed, and value 0 mean…
124 3. Prepare the HAP to be signed and the provisioning profile template file.
271 …├── -profileFile # Name of the signed provisioning profile. The profile is in p7b format if prof…
272 …├── -profileSigned # Whether the profile is signed. The value 1 means signed, and value 0 means un…
/developtools/hapsigner/tools/
Dcommands.config109 … "test/app1-unsigned.hap" -keystoreFile "ohtest_pass.jks" -outFile "app1-signed.hap" -keyPwd "1234…
110 …test/app1-unsigned.hap" -keystoreFile "ohtest_nopass.jks" -outFile "app1-signed.hap" -inForm "zip"…
111 …test/app1-unsigned.hap" -keystoreFile "ohtest_nopass.jks" -outFile "app1-signed.hap" -inForm -pro…
112 …b" -inFile "profile.json" -keystoreFile "ohtest_pass.jks" -outFile "app1-signed.hap" -keyPwd "1234…
113 … "test/app1-unsigned.hap" -keystoreFile "ohtest_pass.jks" -outFile "app1-signed.hap" -keyPwd "1234…
114 … "test/app1-unsigned.hap" -keystoreFile "ohtest_pass.jks" -outFile "app1-signed.hap" -keyPwd "1234…
342 … "test/app1-unsigned.hap" -keystoreFile "ohtest_pass.jks" -outFile "app1-signed.hap" -keyPwd "1234…
343 … "test/app1-unsigned.hap" -keystoreFile "ohtest_pass.jks" -outFile "app1-signed.hap" -keyPwd "1234…
344 … "test/app1-unsigned.hap" -keystoreFile "ohtest_pass.jks" -outFile "app1-signed.hap" -keyPwd "1234…
345 … "test/app1-unsigned.hap" -keystoreFile "ohtest_pass.jks" -outFile "app1-signed.hap" -keyPwd "1234…
[all …]
/developtools/profiler/device/plugins/ftrace_plugin/tools/device_kernel_version/default/
Dftrace_cpp_generator.py184 c_type = 'int32_t' if type_info.signed else 'uint32_t'
186 c_type = 'int64_t' if type_info.signed else 'uint64_t'