Searched refs:vm_type (Results 1 – 13 of 13) sorted by relevance
| /misc/config_tools/static_allocators/lib/ |
| A D | lib.py | 126 def is_pre_launched_vm(vm_type): argument 127 if vm_type == 'PRE_LAUNCHED_VM': 131 def is_post_launched_vm(vm_type): argument 132 if vm_type == 'POST_LAUNCHED_VM': 136 def is_service_vm(vm_type): argument 137 if vm_type == 'SERVICE_VM':
|
| /misc/sample_application/image_builder/ |
| A D | create_image.sh | 12 vm_type=$1 13 if [[ ${vm_type} != "rt-vm" ]] && [[ ${vm_type} != "hmi-vm" ]]; then 15 Usage: $0 <vm_type> 228 if [[ ${vm_type} == "hmi-vm" ]]; then 231 elif [[ ${vm_type} == "rt-vm" ]]; then 235 echo "Internal error: undefined VM type '${vm_type}'" 240 if [[ ${vm_type} == "rt-vm" ]]; then 255 if [[ ${vm_type} == "hmi-vm" ]]; then
|
| /misc/config_tools/board_config/ |
| A D | vbar_base_h.py | 162 vm_type = acrn_config_utilities.VM_TYPES[vm_id] 163 if scenario_cfg_lib.VM_DB[vm_type]['load_type'] == "POST_LAUNCHED_VM": 179 if scenario_cfg_lib.VM_DB[vm_type]['load_type'] == "SERVICE_VM": 216 for vm_id,vm_type in acrn_config_utilities.VM_TYPES.items(): 235 if scenario_cfg_lib.VM_DB[vm_type]['load_type'] == "SERVICE_VM": 386 vm_type = acrn_config_utilities.VM_TYPES[vm_i] 387 if scenario_cfg_lib.VM_DB[vm_type]['load_type'] == "SERVICE_VM": 391 for vm_i,vm_type in acrn_config_utilities.VM_TYPES.items(): 394 if scenario_cfg_lib.VM_DB[vm_type]['load_type'] == "SERVICE_VM": 420 for vm_type in acrn_config_utilities.VM_TYPES.values(): [all …]
|
| /misc/services/life_mngr/ |
| A D | config.h | 34 char vm_type[MAX_CONFIG_VALUE_LEN]; member
|
| A D | monitor.c | 188 if (strncmp("service_vm", life_conf.vm_type, MAX_CONFIG_VALUE_LEN) == 0) { in start_life_mngr() 192 } else if (strncmp("user_vm", life_conf.vm_type, MAX_CONFIG_VALUE_LEN) == 0) { in start_life_mngr()
|
| A D | config.c | 79 memcpy(life_conf.vm_type, value_str, strlen(value_str)); in load_config()
|
| /misc/config_tools/data/generic_board/sample_launch_scripts/ |
| A D | launch_user_vm_id1.sh | 102 … if [ "${vm_type}" = "RTVM" ] || [ "${scheduler}" = "SCHED_NOOP" ] || [ "${own_pcpu}" = "y" ]; then 218 vm_type='STANDARD_VM'
|
| A D | launch_user_vm_id2.sh | 102 … if [ "${vm_type}" = "RTVM" ] || [ "${scheduler}" = "SCHED_NOOP" ] || [ "${own_pcpu}" = "y" ]; then 218 vm_type='RTVM'
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ |
| A D | ConfigForm.vue | 133 let vmType = newValue.hasOwnProperty('vm_type') ? newValue['vm_type'] : "";
|
| /misc/config_tools/scenario_config/ |
| A D | upgrader.py | 621 vm_type = self.get_node(xml_parent_node, "parent::vm/vm_type/text()") 631 if vm_type == "RTVM": 881 vm_type = old_node.xpath(".//vm_type/text()") 886 elif vm_type: 887 if vm_type[0].startswith("PRE_") or vm_type[0] in ["SAFETY_VM"]: 889 elif vm_type[0].startswith("POST_"):
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/ |
| A D | cpu_affinity.vue | 140 return vueUtils.getPathVal(this.rootFormData, 'vm_type') === 'RTVM' 143 return vueUtils.getPathVal(this.rootFormData, 'vm_type') === 'STANDARD_VM'
|
| /misc/config_tools/launch_config/ |
| A D | launch_script_template.sh | 97 … if [ "${vm_type}" = "RTVM" ] || [ "${scheduler}" = "SCHED_NOOP" ] || [ "${own_pcpu}" = "y" ]; then
|
| /misc/config_tools/configurator/packages/configurator/src/lib/ |
| A D | acrn.ts | 443 if (vmConfig.vm_type === 'RTVM' && this.haveCPUAffinity(vmConfig)) { 478 (pcpu.real_time_vcpu === 'y' && vmConfig.vm_type !== 'RTVM')
|
Completed in 14 milliseconds