Searched refs:pack (Results 1 - 10 of 10) sorted by relevance
/developtools/hdc/hdc_rust/src/serializer/ |
H A D | serialize.rs | 98 let pack = SessionHandShakePack { in serialize() 106 let buf = unsafe { SerializeSessionHandShake(&pack) }; in serialize() 111 let mut pack = SessionHandShakePack { in parse() variables 124 if unsafe { ParseSessionHandShake(&mut pack, buf) } == 0 { in parse() 131 self.banner = ptr_to_string(pack.banner); in parse() 132 self.auth_type = pack.auth_type; in parse() 133 self.session_id = pack.session_id; in parse() 134 self.connect_key = ptr_to_string(pack.connect_key); in parse() 135 self.buf = ptr_to_string(pack.buf); in parse() 136 self.version = ptr_to_string(pack in parse() 155 let mut pack = PayloadProtectPack::default(); parse() variables 207 let mut pack = TransferConfigPack { parse() variables 265 let mut pack = FileModePack { parse() variables 304 let mut pack = TransferPayloadPack::default(); parse() variables 340 let mut pack = PayloadHeadPack::default(); parse() variables 372 let mut pack = UsbHeadPack::default(); parse() variables 406 let mut pack = UartHeadPack::default(); parse() variables [all...] |
/developtools/global_resource_tool/src/ |
H A D | task_handle.cpp | 24 ResourcePack pack(packageParser); in HandlePackage() 25 return pack.Package(); in HandlePackage()
|
/developtools/hiperf/include/ |
H A D | unique_stack_table.h | 43 #pragma pack(push, 4) 74 #pragma pack(pop)
|
/developtools/hdc/src/common/ |
H A D | define_plus.h | 63 #pragma pack(push) 64 #pragma pack(1) 103 #pragma pack(pop)
|
H A D | uart.h | 42 #pragma pack(push)
43 #pragma pack(1)
137 #pragma pack(pop)
|
/developtools/packing_tool/adapter/ohos/ |
H A D | CompressEntrance.java | 36 * @param packInfoPath Indicates the pack.info file path. 38 * @return Returns {@code true} if the pack is successful; returns {@code false} otherwise. 40 public static boolean pack(String hapPath, String packInfoPath, String outPath) { in pack() method in CompressEntrance 42 LOG.error("CompressEntrance::pack hapPath is invalid!"); in pack() 47 LOG.error("CompressEntrance::pack packInfoPath is invalid!"); in pack() 52 LOG.error("CompressEntrance::pack outPath is invalid!"); in pack()
|
H A D | ScanStatSuffix.java | 252 File pack = new File(packageName); in getPathListData() 256 pathList.add(pack.getName() + file); in getPathListData()
|
H A D | PackageUtil.java | 70 * get the package name list from pack.info 72 * @param path the path dir or hsp contains pack.info, or the path of pack.info 115 * get the package name list from pack.info 117 * @param packInfoContent the content of pack.info 255 * pack hap or hsp 258 * @param appPackInfo app scope pack.info 265 public static Path pack(Path inputPath, Path appPackInfo, Path outPath, int compressLevel) in pack() method in PackageUtil 268 throw new BundleException("pack err, input path not exists."); in pack() 271 throw new BundleException("pack er in pack() [all...] |
H A D | Compressor.java | 107 private static final String PACKINFO_NAME = "pack.info"; 325 * for app: 1.certificate 2.signature 3.pack.info 4.hap (1 and 2 may not be used) 978 // pack --dir-list in compressHapMode() 1068 // pack --dir-list in compressHapModeForModule() 1195 LOG.error("Compressor::compressAppMode compress pack.info into hap failed: " + e.getMessage()); in compressAppMode() 1196 throw new BundleException("Compressor::compressAppMode compress pack.info into hap failed."); in compressAppMode() 1212 LOG.error("Compressor::compressAppMode compress pack.info into hsp failed: " + e.getMessage()); in compressAppMode() 1213 throw new BundleException("Compressor::compressAppMode compress pack.info into hsp failed."); in compressAppMode() 1246 //pack encrypt.json file in compressAppMode() 1270 Path hap = PackageUtil.pack(pat in compressFastAppMode() [all...] |
/developtools/hdc/hdc_rust/src/host/ |
H A D | host_app.rs | 331 let (_opt, pack): (Vec<&String>, Vec<&String>) = argv.iter().partition(|arg| arg.starts_with('-')); 332 if pack.len() <= 1 {
|
Completed in 11 milliseconds