Home
last modified time | relevance | path

Searched refs:module_type (Results 1 – 25 of 33) sorted by relevance

12

/ohos5.0/build/hb/containers/
H A Darg.py294 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 Dgen_module_info.py26 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 Dmodule_info.gni24 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 Dgen_sdk_build_file.py94 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 Dcargo2gn.py144 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 Dget_module_install_dest.py22 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 DBUILD.gn220 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 Dbasic.rs52 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 Dnotice.gni51 "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 Dservice.rs52 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 Dbinding.rs53 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 Dstream_session.rs33 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 Dohos_abc.gni71 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 DBUILD.gn90 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 Dmain.py106 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 Dohos_bpf.gni66 "module_type",
70 if (!defined(module_type)) {
71 module_type = "unknown"
/ohos5.0/base/msdp/device_status/rust/frameworks/client/src/
H A Dlib.rs38 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 Dcopy.gni108 "module_type",
112 if (!defined(module_type)) {
113 module_type = "unknown"
/ohos5.0/build/ohos/app/
H A Dapp.gni216 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 Dfusion_frameworks_binding.h26 int32_t fusion_alloc_socket_fd(const char *program_name, int32_t module_type,
/ohos5.0/build/templates/cxx/
H A Dprebuilt.gni84 module_type = "bin"
204 module_type = "lib"
318 module_type = "etc"
/ohos5.0/build/templates/rust/
H A Dohos_rust_library.gni118 module_type = "rust_library"
136 module_type = "lib"
/ohos5.0/base/startup/init/services/etc/param/
H A Dparam_fixer.gni73 module_type = "etc"
/ohos5.0/build/config/components/init/param/
H A Dparam_fixer.gni73 module_type = "etc"
/ohos5.0/base/startup/appspawn/etc/sandbox/
H A Dappdata_sandbox_fixer.gni81 module_type = "etc"

12