Home
last modified time | relevance | path

Searched refs:val (Results 1 – 20 of 20) sorted by relevance

/misc/config_tools/board_inspector/acpiparser/
A Dtpm2.py43 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 Ddsdt.py16 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 Dapic.py273 def APIC(val): argument
276 data = open(val, mode='rb').read()
A Dasf.py270 def ASF(val): argument
273 data = open(val, mode='rb').read()
A Ddmar.py244 def DMAR(val): argument
247 data = open(val, mode='rb').read()
A Dfacp.py359 def FACP(val): argument
361 data = open(val, mode='rb').read()
A Drtct.py284 def RTCT(val): argument
287 data = open(val, mode='rb').read()
/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/
A DuiSchemaGenerate.py6 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 Dcdata.py54 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 Dcontext.py202 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 Dinterpreter.py103 val = self.interpret(pseudo_invocation)
108 return val
/misc/config_tools/configurator/packages/configurator/src/lib/
A Djson2xml.js62 let val = _.escape(`${jsObjectElement}`)
63 this.xml += `<${selfName}>${val}</${selfName}>`
/misc/config_tools/library/
A Dhv_cfg_lib.py28 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 Dacrn_config_utilities.py576 val = 0
578 val = str_value
579 return val
581 val = int(str_value)
584 val = int(str_value, 16)
586 return val
A Dboard_cfg_lib.py418 for idx_key, val in enumerate(line_in_list):
419 if val == key:
/misc/services/acrn_manager/
A Dacrn_mngr.c276 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 Ds5_vuart.py14 val = lambda:list(range(0x9000, 0x9100, 8)) function
15 vm_port_list = defaultdict(val)
/misc/services/life_mngr/
A Dcommand_handler.c47 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 Dformats11 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 Dacpi.py420 for idx_hw_type, val in enumerate(cstate_list):
421 if val.find(hw_type) != -1:

Completed in 38 milliseconds