| /misc/config_tools/board_inspector/acpiparser/ |
| A D | tpm2.py | 43 def TPM2(val): argument 45 if isinstance(val, str): 47 data = open(val, mode='rb').read() 50 elif isinstance(val, bytearray): 51 …return tpm2_factory(12, True).from_buffer(val) if len(val) > 64 else tpm2_factory(12, False).from_…
|
| A D | dsdt.py | 16 def DSDT(val): argument 17 table_dir = os.path.dirname(val) 21 tables = [val] + list(map(lambda x: os.path.join(table_dir, x), ssdt))
|
| A D | apic.py | 273 def APIC(val): argument 276 data = open(val, mode='rb').read()
|
| A D | asf.py | 270 def ASF(val): argument 273 data = open(val, mode='rb').read()
|
| A D | dmar.py | 244 def DMAR(val): argument 247 data = open(val, mode='rb').read()
|
| A D | facp.py | 359 def FACP(val): argument 361 data = open(val, mode='rb').read()
|
| A D | rtct.py | 284 def RTCT(val): argument 287 data = open(val, mode='rb').read()
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/ |
| A D | uiSchemaGenerate.py | 6 val = node_path_list[0] 7 if val == '0': 8 val = 'items' 11 val: {} 16 val: _handle(node_path_list)
|
| /misc/config_tools/board_inspector/inspectorlib/ |
| A D | cdata.py | 54 def _formatval(t, val): argument 56 return "{:#x}".format(val) 62 return "{}".format(val) 68 val = getattr(self, name) 72 return f(val) 74 val._indent = self._indent 75 return str(val) 79 for item in val: 84 return self._formatval(t, val) 192 def _format_guid(val): argument [all …]
|
| /misc/config_tools/board_inspector/acpiparser/aml/ |
| A D | context.py | 202 def switch_stream(self, val): argument 203 if isinstance(val, str): 204 if not val in self.streams.keys(): 205 with open(val, "rb") as f: 207 self.streams[val] = stream 212 elif isinstance(val, (bytes, bytearray)): 213 self.current_stream = Stream(val) 376 val = v.get() 377 if isinstance(val, int): 378 val = hex(val) [all …]
|
| A D | interpreter.py | 103 val = self.interpret(pseudo_invocation) 108 return val
|
| /misc/config_tools/configurator/packages/configurator/src/lib/ |
| A D | json2xml.js | 62 let val = _.escape(`${jsObjectElement}`) 63 this.xml += `<${selfName}>${val}</${selfName}>`
|
| /misc/config_tools/library/ |
| A D | hv_cfg_lib.py | 28 def empty_check(val, prime_item, item, sub_item=''): argument 29 if not val or val == None: 105 val = acrn_config_utilities.num2int(str_num) 106 if val % 2 != 0:
|
| A D | acrn_config_utilities.py | 576 val = 0 578 val = str_value 579 return val 581 val = int(str_value) 584 val = int(str_value, 16) 586 return val
|
| A D | board_cfg_lib.py | 418 for idx_key, val in enumerate(line_in_list): 419 if val == key:
|
| /misc/services/acrn_manager/ |
| A D | acrn_mngr.c | 276 static struct mngr_fd *desc_to_mfd_nolock(int val) in desc_to_mfd_nolock() argument 282 if (val == fd->desc) { in desc_to_mfd_nolock() 291 static struct mngr_fd *desc_to_mfd(int val) in desc_to_mfd() argument 296 find = desc_to_mfd_nolock(val); in desc_to_mfd() 519 void mngr_close(int val) in mngr_close() argument 523 mfd = desc_to_mfd(val); in mngr_close() 525 printf("%s: No mngr_fd binded to fd %d\n", __func__, val); in mngr_close()
|
| /misc/config_tools/static_allocators/ |
| A D | s5_vuart.py | 14 val = lambda:list(range(0x9000, 0x9100, 8)) function 15 vm_port_list = defaultdict(val)
|
| /misc/services/life_mngr/ |
| A D | command_handler.c | 47 long val; in wait_post_vms_shutdown() local 57 val = strtol(buf, &endptr, 10) - 1; in wait_post_vms_shutdown() 58 if (val == 0) { in wait_post_vms_shutdown() 65 check_time, val); in wait_post_vms_shutdown()
|
| /misc/debug_tools/acrn_trace/scripts/ |
| A D | formats | 11 0x0001001F CPU%(cpu)d 0x%(event)016x %(tsc)d read msr [msr = 0x%(1)08x, val = 0x%(2)016x] 12 0x00010020 CPU%(cpu)d 0x%(event)016x %(tsc)d write msr [msr = 0x%(1)08x, val = 0x%(2)016x]
|
| /misc/config_tools/board_inspector/legacy/ |
| A D | acpi.py | 420 for idx_hw_type, val in enumerate(cstate_list): 421 if val.find(hw_type) != -1:
|