| /misc/config_tools/configurator/packages/configurator/src/pages/Config/Scenario/ |
| A D | NewScenario.vue | 3 v-model="showModal" 30 <b-form-radio class="mb-3" v-model="scenarioTemplate" value="shared"> 34 <b-form-radio class="mb-3" v-model="scenarioTemplate" value="partitioned"> 38 <b-form-radio class="mb-3" v-model="scenarioTemplate" value="hybrid"> 52 <b v-if="scenarioTemplate!=='shared'">Pre-launch VMs:</b> 53 …<b-form-input v-if="scenarioTemplate!=='shared'" type="number" min="0" max="8" v-model="preLaunch"… 54 <b v-if="scenarioTemplate!=='partitioned'">Service VM:</b> 57 <b v-if="scenarioTemplate=='partitioned'">Main VM:</b> 58 …<b-form-input v-if="scenarioTemplate=='partitioned'" min="0" max="1" type="number" v-model="mainVM… 60 <b v-if="scenarioTemplate!=='partitioned'">Post-launch VMs:</b> [all …]
|
| A D | SaveScenario.vue | 3 v-model="showModal" 7 <img v-if="isCheckPass(totalMsg)" src="/src-tauri/icons/Config_save_warningfail.png"> 8 <img v-else src="/src-tauri/icons/Config_save_success.png"> 11 <p v-html="totalMsg"></p>
|
| /misc/config_tools/board_inspector/acpiparser/aml/ |
| A D | builder.py | 96 v = value.get() 98 ZeroOp() if v == 0 else \ 99 OneOp() if v == 1 else \ 100 ByteConst(v) if v <= 0xff else \ 101 WordConst(v) if v <= 0xffff else \ 102 DWordConst(v) if v <= 0xffffffff else \ 103 QWordConst(v)
|
| A D | datatypes.py | 116 v = (value & ((1 << bit_count) - 1)) << (bit_idx % access_width) 117 …self.write(byte_idx, (v & mask_of_write) | (self.read(byte_idx, access_width) & mask_of_keep), acc… 129 v = (value & ((1 << bit_count) - 1)) 130 …self.write(byte_idx, (v & mask_of_write) | (self.read(byte_idx, access_width) & mask_of_keep), acc… 269 v = self.__value 271 data.append(v & 0xff) 272 v >>= 8
|
| A D | context.py | 328 for k,v in sorted(self.__symbol_table.items()): 329 v.dump() 373 v = self.__binding_table[k] 374 if v: 376 val = v.get()
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/ |
| A D | CAT.vue | 46 <div class="py-3" v-if="CAT_INFO.errorMsg"> 47 <span v-html="CAT_INFO.errorMsg"></span> 49 <div class="py-4" v-for="(CACHE_ALLOCATION,index) in CAT_INFO.regions" v-if="RDT_ENABLED==='y'"> 75 <div v-if="index===0">Real-time</div> 81 <div v-if="index===0">Standard</div> 106 v-if="index===0"></div> 108 v-model="POLICY.CLOS_MASK" 115 v-if="index===0"></div> 117 v-model="POLICY.CLOS_MASK" 124 v-if="index===0"></div> [all …]
|
| A D | VUART.vue | 2 <div class="VUART_SETTINGS" v-if="defaultVal && defaultVal.length>0"> 3 <div class="VUART_SETTING" v-for="(VUARTConn, index) in defaultVal"> 14 <span v-html="this.VMConfigType.properties.name.description"></span> 42 <span v-html="this.VMConfigType.properties.name.description"></span> 85 <b-col sm="4" v-if="VUARTConn.type === 'legacy'"> 90 <span v-html="this.VuartEndpointType.io_port.description"></span> 94 <b-col sm="4" v-else-if="VUARTConn.type === 'pci'"> 99 <span v-html="this.VuartEndpointType.vbdf.description"></span> 107 … <b-form-input v-model="VUARTConn.endpoint[0].io_port" v-if="VUARTConn.type === 'legacy'" 119 … <b-form-input v-model="VUARTConn.endpoint[1].io_port" v-if="VUARTConn.type === 'legacy'" [all …]
|
| A D | IVSHMEM_REGION.vue | 2 <div class="IVSH_REGIONS" v-if="defaultVal && defaultVal.length>0"> 3 <div class="IVSH_REGION" v-for="(IVSHMEM_VMO, index) in defaultVal"> 14 <span v-html="this.IVSHMEMRegionType.properties.NAME.description"></span> 33 <span v-html="this.IVSHMEMRegionType.properties.PROVIDED_BY.description"></span> 38 … <b-form-select v-model="IVSHMEM_VMO.PROVIDED_BY" :options="providerType"></b-form-select> 49 <span v-html="this.IVSHMEMRegionType.properties.IVSHMEM_SIZE.description"></span> 70 <b-form-input v-model="IVSHMEM_VMO.IVSHMEM_REGION_ID"/> 83 <span v-html="this.IVSHMEM_VM.properties.VBDF.description"></span> 88 v-for="(IVSHMEM_VM,index) in IVSHMEM_VMO.IVSHMEM_VMS.IVSHMEM_VM"> 95 <span v-html="this.IVSHMEM_VM.properties.VM_NAME.description"></span> [all …]
|
| A D | cpu_affinity.vue | 5 <div v-if="defaultVal.pcpu && defaultVal.pcpu.length>0"> 6 <b-row v-if="is_std_vm"> 17 <b-form-checkbox v-model="pcpu_owned" :value="'y'" :uncheckedValue="'n'" 36 … <span v-html="this.CPUAffinityConfiguration.properties.real_time_vcpu.description"> </span> 43 v-for="(cpu,index) in defaultVal.pcpu"> 45 <label class="requiredField" v-if="index===0"></label> 51 <span v-html="this.CPUAffinityConfiguration.properties.pcpu_id.description"></span> 57 <b-form-select :state="validateCPUAffinity(cpu.pcpu_id)" v-model="cpu.pcpu_id"> 58 <option v-for="pcpu in pcpuid_enum.enum" :value="pcpu"> 72 …<b-form-checkbox v-model="cpu.real_time_vcpu" :value="'y'" :uncheckedValue="'n'" :disabled="!isRTV… [all …]
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/Virtio/ |
| A D | Console.vue | 2 <div class="virtio_consoles" v-if="defaultVal && defaultVal.length>0"> 3 <div class="virtio_console" v-for="(console, index) in defaultVal"> 13 <span v-html="this.ConsoleConfiguration.properties.use_type.description"></span> 18 <b-form-select v-model="console.use_type" :options="getUseTypes"/> 34 <b-form-select v-model="console.backend_type" :options="ConsoleBackendType"/> 38 <b-row class="align-items-center my-2" v-if="console.backend_type === 'file'"> 50 <b-form-input v-model="console.output_file_path"/> 54 <b-row class="align-items-center my-2" v-else-if="console.backend_type === 'tty'"> 66 <b-form-input v-model="console.tty_device_path"/> 82 <b-form-input v-model="console.sock_file_path"/> [all …]
|
| A D | GPU.vue | 3 <div><br><span v-html="this.GPUDescription" style="color: rgb(153, 153, 153)"></span></div> 4 <div class="virtio_gpu" v-if="defaultVal && defaultVal.length>0"> 5 <div class="virtio_gpu_demo" v-for="(virtio_gpu, index) in defaultVal"> 14 <span v-html="this.GPUConfiguration.properties.display_type.description"></span> 20 <b-form-select v-model="virtio_gpu.display_type" :options="GPUDisplayType"/> 23 <div class="align-items-center my-2 mt-4" v-if="virtio_gpu.display_type === 'Window'" 24 v-for="(window_display, window_index) in virtio_gpu.displays.display"> 71 <b-form-input v-model="window_display.horizontal_offset"/> 87 <b-form-input v-model="window_display.vertical_offset"/> 124 <b-form-select v-model="fullScreen_display.monitor_id" :options="MonitorIdType"/> [all …]
|
| A D | Input.vue | 2 <div class="virtio_inputs" v-if="defaultVal && defaultVal.length>0"> 3 <div class="virtio_input" v-for="(input, index) in defaultVal"> 13 … <span v-html="this.InputConfiguration.properties.backend_device_file.description"></span> 18 <b-form-select v-model="input.backend_device_file" :options="BackendDeviceFileType"/> 28 <span v-html="this.InputConfiguration.properties.id.description"></span> 33 …<b-form-input :state="validateId(input.id)" v-model="input.id" placeholder="An arbitrary-long stri… 56 <div v-else>
|
| A D | Network.vue | 2 <div class="virtio_networks" v-if="defaultVal && defaultVal.length>0"> 3 <div class="virtio_network" v-for="(network, index) in defaultVal"> 13 … <span v-html="this.NetworkConfiguration.properties.virtio_framework.description"></span> 18 <b-form-select v-model="network.virtio_framework" :options="NetworkFrameworkType"/> 29 <span v-html="this.NetworkConfiguration.properties.interface_name.description"></span> 34 …<b-form-input :state="validateInterfaceName(network.interface_name)" v-model="network.interface_na… 57 <div v-else>
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/utils/components/ |
| A D | FieldGroupWrap.vue | 4 v-if="showTitle && trueTitle" 10 v-if="showDescription && description" 12 v-html="description"
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/ |
| A D | TabBox.vue | 6 <div class="position-absolute" style="right: 3px;top:5px;" v-if="errors.hasOwnProperty(-1)"> 17 :key="pre.id" v-for="pre in vms.PRE_LAUNCHED_VM" @click="active(pre.id)"> 18 … <div class="position-absolute" style="right: 3px;top:5px;" v-if="errors.hasOwnProperty(pre.id)"> 38 :key="service.id" v-for="service in vms.SERVICE_VM" 40 …<div class="position-absolute" style="right: 3px;top:5px;" v-if="errors.hasOwnProperty(service.id)… 53 :key="post.id" v-for="post in vms.POST_LAUNCHED_VM" 55 … <div class="position-absolute" style="right: 3px;top:5px;" v-if="errors.hasOwnProperty(post.id)">
|
| /misc/config_tools/board_inspector/extractors/ |
| A D | helpers.py | 12 for k,v in kwargs.items(): 13 child.set(k, v)
|
| /misc/config_tools/board_inspector/memmapparser/ |
| A D | e820.py | 23 type_of_names = { v: k for (k,v) in name_of_types.items() }
|
| /misc/config_tools/scenario_config/ |
| A D | default_populator.py | 20 v = xsd_element_node.get("default") 21 if v is not None: 22 return v
|
| A D | pipeline.py | 11 for k,v in kwargs.items(): 12 self.set(k, v)
|
| /misc/debug_tools/acrn_crashlog/common/ |
| A D | strutils.c | 294 va_list v; in str_split_ere() local 317 va_start(v, flen); in str_split_ere() 336 sreq = va_arg(v, char *); in str_split_ere() 337 sreqsize = va_arg(v, size_t); in str_split_ere() 356 va_end(v); in str_split_ere()
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ |
| A D | Scenario.vue | 5 … <OverwriteMessage v-model:show-modal="showOverwriteMessage" :usingWorkingFolder="WorkingFolder" 7 <NewScenario v-model:show-modal="showCreateScenario" @newScenario="newScenario"/> 18 <td><select class="d-inline form-select" v-model="currentSelectedScenario"> 19 <option :value="his" v-for="his in scenarioHistory">
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/CAT/ |
| A D | HexBlockRangeSelector.vue | 3 <Slider v-model="hexField" :max="max" :tooltips="false" :options="sliderOptions"/> 108 background-size: v-bind(` calc(100% / ${max}) 100% `);
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/utils/icons/ |
| A D | IconQuestion.vue | 10 …0-30.9 44.8V620c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-21.5c0-23.1 6.7-45.9 19.9-64.9 12.9-18.6 30.…
|
| /misc/config_tools/configurator/packages/configurator/src/components/common/ |
| A D | Footer.vue | 5 <text v-if="version">- Version {{ version }}</text>
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Welcome/ |
| A D | UseExisting.vue | 15 <select class="d-inline form-select" v-model="currentSelected"> 16 … <option v-for="history in historyWorkingFolder" :value="history">{{ history }}</option>
|