Searched refs:hpm (Results 1 - 11 of 11) sorted by relevance
/build/hb/resolver/ |
H A D | install_args_resolver.py | 28 from services.hpm import CMDTYPE 42 install_module.hpm.regist_flag('part_name', part_name) 48 install_module.hpm.regist_flag('global', '') 53 install_module.hpm.regist_flag('local', target_arg.arg_value) 58 install_module.hpm.regist_flag('defaultDeps', ComponentUtil.get_default_deps(target_arg.arg_value)) 60 install_module.hpm.regist_flag('defaultDeps', ComponentUtil.get_default_deps("default")
|
H A D | package_args_resolver.py | 28 from services.hpm import CMDTYPE 42 package_module.hpm.regist_flag('part_name', part_name) 48 package_module.hpm.regist_flag('output', target_arg.arg_value
|
H A D | update_args_resolver.py | 28 from services.hpm import CMDTYPE 42 update_module.hpm.regist_flag('part_name', part_name) 47 update_module.hpm.regist_flag('global', ''
|
H A D | indep_build_args_resolver.py | 48 build_executor = indep_build_module.hpm 58 build_executor = indep_build_module.hpm 71 build_executor = indep_build_module.hpm 107 build_executor = indep_build_module.hpm 119 build_executor = indep_build_module.hpm
|
H A D | publish_args_resolver.py | 28 from services.hpm import CMDTYPE 42 publish_module.hpm.regist_flag('part_name', part_name)
|
/build/hb/modules/ |
H A D | ohos_install_module.py | 19 from services.hpm import CMDTYPE 32 def __init__(self, args_dict: dict, args_resolver: ArgsResolverInterface, hpm: BuildFileGeneratorInterface): 34 self._hpm = hpm 38 def hpm(self): member in OHOSInstallModule 60 self.hpm.execute_hpm_cmd(CMDTYPE.INSTALL)
|
H A D | ohos_package_module.py | 19 from services.hpm import CMDTYPE 32 def __init__(self, args_dict: dict, args_resolver: ArgsResolverInterface, hpm: BuildFileGeneratorInterface): 34 self._hpm = hpm 38 def hpm(self): member in OHOSPackageModule 58 self.hpm.execute_hpm_cmd(CMDTYPE.PACKAGE)
|
H A D | ohos_publish_module.py | 19 from services.hpm import CMDTYPE 32 def __init__(self, args_dict: dict, args_resolver: ArgsResolverInterface, hpm: BuildFileGeneratorInterface): 34 self._hpm = hpm 38 def hpm(self): member in OHOSPublishModule 58 self.hpm.execute_hpm_cmd(CMDTYPE.PUBLISH)
|
H A D | ohos_update_module.py | 19 from services.hpm import CMDTYPE 32 def __init__(self, args_dict: dict, args_resolver: ArgsResolverInterface, hpm: BuildFileGeneratorInterface): 34 self._hpm = hpm 38 def hpm(self): member in OHOSUpdateModule 58 self.hpm.execute_hpm_cmd(CMDTYPE.UPDATE)
|
H A D | ohos_indep_build_module.py | 32 def __init__(self, args_dict: dict, args_resolver: ArgsResolverInterface, hpm: BuildFileGeneratorInterface): 34 self._hpm = hpm 38 def hpm(self): member in OHOSIndepBuildModule 60 self.hpm.run()
|
/build/hb/ |
H A D | main.py | 41 from services.hpm import Hpm 133 prebuilts_cache_path = os.path.join(user_home, '.prebuilts_cache', 'hpm', 'node_modules', '.bin') 170 subprocess.run(['hpm', 'config', 'set', 'loginUser', str(sys.argv[3])]) 171 subprocess.run(['hpm', 'gen-keys']) 172 key_path = os.path.join(os.path.expanduser("~"), '.hpm', 'key', 'publicKey_' + sys.argv[3] + '.pem') 199 hpm = Hpm() 201 return OHOSIndepBuildModule(args_dict, indep_build_args_resolver, hpm) 213 hpm = Hpm() 215 return OHOSInstallModule(args_dict, install_args_resolver, hpm) 221 hpm [all...] |
Completed in 3 milliseconds