/ohos5.0/build/hb/containers/ |
H A D | arg.py | 294 if module_type == ModuleType.BUILD: 296 elif module_type == ModuleType.SET: 300 elif module_type == ModuleType.ENV: 302 elif module_type == ModuleType.TOOL: 314 elif module_type == ModuleType.PUSH: 329 if module_type == ModuleType.BUILD: 332 elif module_type == ModuleType.SET: 338 elif module_type == ModuleType.ENV: 341 elif module_type == ModuleType.TOOL: 359 elif module_type == ModuleType.PUSH: [all …]
|
/ohos5.0/build/templates/metadata/ |
H A D | gen_module_info.py | 26 def get_source_name(module_type, name, prefix_override, suffix, argument 29 if (module_type == 'lib' 30 or module_type == 'lib64') and not prefix_override: 34 if module_type == 'java_library' and alternative_suffix: 38 if module_type == 'none': 43 def get_type_dir(module_type): argument 45 return module_type 49 module_type): argument 67 if module_type == "none": 108 'type': module_type, [all …]
|
H A D | module_info.gni | 24 assert(defined(invoker.module_type), 55 if (module_type == "java_library" || module_type == "none" || 56 module_type == "app" || module_type == "dex") { 78 # reset module_type when module_type is lib 79 if (module_type == "lib") { 82 module_type = "lib64" 84 module_type = "lib" 86 module_type = "lib" 93 ("${module_type}" == "lib" || "${module_type}" == "lib64" || 94 "${module_type}" == "bin")) { [all …]
|
/ohos5.0/build/scripts/ |
H A D | gen_sdk_build_file.py | 94 module_type = module_desc.get('type') 108 if module_type == 'jar': 112 suffix = module_type 113 if module_type == "none": 116 if module_type == "maple": 126 if module_type == "maple": 157 if module_type == 'so': 161 elif module_type == 'jar': 166 elif module_type == 'maple': 191 elif module_type == 'rlib': [all …]
|
H A D | cargo2gn.py | 144 self.module_type = '' # lib,crate_name,test etc. 460 self.module_type = self.crate_name 462 self.module_type = 'lib' 464 self.module_type = 'test' 466 self.module_type = '' 570 dump('module_type', self.module_type) 624 if not self.module_type: 627 self.write('\nohos_cargo_crate("' + self.module_type + '") {')
|
/ohos5.0/build/ohos/images/ |
H A D | get_module_install_dest.py | 22 def get_source_name(module_type: str, name: str, prefix_override: str, suffix: str): 24 if (module_type == 'lib' or module_type == 'lib64') and not prefix_override: 30 if module_type == 'none': 35 …: str, install_images: list, module_install_dir: str, relative_install_dir: str, module_type: str): 46 system_base_dir, module_type, relative_install_dir) 48 _install_dir = os.path.join(system_base_dir, module_type)
|
H A D | BUILD.gn | 220 module_type = "lib64" 222 module_type = "lib" 232 "${current_platform_dir}/system/${module_type}/${adlt_lib_name}"), 244 [ "${current_platform_dir}/system/${module_type}/${adlt_lib_name}" ]
|
/ohos5.0/base/msdp/device_status/rust/data/sys/src/ipc/ |
H A D | basic.rs | 52 pub module_type: i32 field 61 pub unsafe fn from_c(program_name: *const c_char, module_type: i32) -> FusionResult<Self> in from_c() 71 module_type in from_c() 87 self.module_type.serialize(parcel)?; in serialize() 97 module_type: i32::deserialize(parcel)?, in deserialize() 108 writeln!(f, " module_type: {}", self.module_type)?; in fmt()
|
/ohos5.0/build/ohos/notice/ |
H A D | notice.gni | 51 "module_type", 64 if (defined(module_type) && 65 (module_type == "static_library" || module_type == "source_set" || 66 module_type == "rust_library")) { 77 if (defined(module_type) && module_type == "java_library" &&
|
/ohos5.0/base/msdp/device_status/rust/services/sys/src/ |
H A D | service.rs | 52 fn alloc_socket_fd(&self, program_name: &str, module_type: i32, in alloc_socket_fd() 56 self.native_service.alloc_socket_fd(program_name, module_type, client_fd, token_type) in alloc_socket_fd() 106 pub fn alloc_socket_fd(&self, program_name: &str, module_type: i32, in alloc_socket_fd() 111 guard.alloc_socket_fd(program_name, module_type, client_fd, token_type) in alloc_socket_fd()
|
H A D | binding.rs | 53 program_name: *const c_char, module_type: i32, in NativeServiceAllocSocketFd() 79 pub fn alloc_socket_fd(&self, program_name: &str, module_type: i32, in alloc_socket_fd() 87 module_type, &mut fd, token_type) in alloc_socket_fd()
|
/ohos5.0/base/sensors/sensor/rust/utils/socket_ipc_rust_ffi/src/ |
H A D | stream_session.rs | 33 module_type: i32, field 43 module_type: RET_ERR, in default() 73 fn module_type(&self) -> i32 { in module_type() method 74 self.module_type in module_type()
|
/ohos5.0/build/templates/abc/ |
H A D | ohos_abc.gni | 71 if (!defined(invoker.module_type)) { 72 module_type = "unknown" 74 module_type = invoker.module_type
|
/ohos5.0/base/print/print_fwk/services/print_service/bsuni/ |
H A D | BUILD.gn | 90 module_type = "bin" 235 module_type = "etc" 248 module_type = "etc" 261 module_type = "etc" 456 module_type = "etc" 476 module_type = "etc" 497 module_type = "etc" 516 module_type = "etc" 565 module_type = "etc" 581 module_type = "etc" [all …]
|
/ohos5.0/build/hb/ |
H A D | main.py | 106 module_type = sys.argv[1] 107 if module_type == 'help': 113 if module_type not in module_initializers: 117 module = module_initializers[module_type]() 120 if module_type == 'build':
|
/ohos5.0/build/templates/bpf/ |
H A D | ohos_bpf.gni | 66 "module_type", 70 if (!defined(module_type)) { 71 module_type = "unknown"
|
/ohos5.0/base/msdp/device_status/rust/frameworks/client/src/ |
H A D | lib.rs | 38 unsafe extern "C" fn fusion_alloc_socket_fd(program_name: *const c_char, module_type: i32, in fusion_alloc_socket_fd() 46 let param = match AllocSocketPairParam::from_c(program_name, module_type) { in fusion_alloc_socket_fd()
|
/ohos5.0/build/templates/common/ |
H A D | copy.gni | 108 "module_type", 112 if (!defined(module_type)) { 113 module_type = "unknown"
|
/ohos5.0/build/ohos/app/ |
H A D | app.gni | 216 module_type = "app" 219 install_dir = string_replace(module_install_dir, "${module_type}/", "") 366 module_type = "app" 391 module_type = "app" 643 module_type = "app" 689 module_type = "app"
|
/ohos5.0/base/msdp/device_status/rust/frameworks/binding/include/ |
H A D | fusion_frameworks_binding.h | 26 int32_t fusion_alloc_socket_fd(const char *program_name, int32_t module_type,
|
/ohos5.0/build/templates/cxx/ |
H A D | prebuilt.gni | 84 module_type = "bin" 204 module_type = "lib" 318 module_type = "etc"
|
/ohos5.0/build/templates/rust/ |
H A D | ohos_rust_library.gni | 118 module_type = "rust_library" 136 module_type = "lib"
|
/ohos5.0/base/startup/init/services/etc/param/ |
H A D | param_fixer.gni | 73 module_type = "etc"
|
/ohos5.0/build/config/components/init/param/ |
H A D | param_fixer.gni | 73 module_type = "etc"
|
/ohos5.0/base/startup/appspawn/etc/sandbox/ |
H A D | appdata_sandbox_fixer.gni | 81 module_type = "etc"
|