| /misc/config_tools/board_inspector/cpuparser/ |
| A D | __init__.py | 36 return dispatch_table[leaf].read(cpu_id, subleaf) 39 return cpuparser.cpuids.LEAF_D.read(cpu_id, subleaf) 41 return cpuparser.cpuids.LEAF_D_1.read(cpu_id, subleaf) 43 return cpuparser.cpuids.LEAF_D_n.read(cpu_id, subleaf) 46 return cpuparser.cpuids.LEAF_F.read(cpu_id, subleaf) 48 return cpuparser.cpuids.LEAF_F_1.read(cpu_id, subleaf) 50 return cpuparser.cpuids.LEAF_F_n.read(cpu_id, subleaf) 53 return cpuparser.cpuids.LEAF_10.read(cpu_id, subleaf) 55 return cpuparser.cpuids.LEAF_10_1.read(cpu_id, subleaf) 57 return cpuparser.cpuids.LEAF_10_3.read(cpu_id, subleaf) [all …]
|
| A D | platformbase.py | 46 def read(cls, cpu_id, subleaf=0): member in CPUID 56 return self.read(self.cpu_id, subleaf) 144 r = msr_reader.read(8)
|
| A D | cpuids.py | 595 return self.read(self.cpu_id, subleaf) 597 return LEAF_D_1.read(self.cpu_id, subleaf) 598 return LEAF_D_n.read(self.cpu_id, subleaf) 633 return self.read(self.cpu_id, subleaf) 635 return LEAF_F_1.read(self.cpu_id, subleaf) 636 return LEAF_F_n.read(self.cpu_id, subleaf)
|
| /misc/config_tools/board_inspector/extractors/ |
| A D | 95-usb.py | 22 devnum = f.read().strip() 24 busnum = f.read().strip() 25 cmd_out = os.popen('lsusb -s {b}:{d}'.format(b=busnum, d=devnum)).read() 29 acpi_path = f.read().strip()
|
| A D | 70-device-classes.py | 20 res = f.read().strip() 77 if f.read().strip() == "connected":
|
| A D | 10-processors.py | 167 freqdomain_cpus = f_node.read()
|
| /misc/debug_tools/acrn_trace/scripts/ |
| A D | acrntrace_format.py | 85 line = fd.read(struct.calcsize(TSCREC)) 90 line = fd.read(struct.calcsize(HDRREC)) 116 line = fd.read(struct.calcsize(D2REC)) 122 line = fd.read(struct.calcsize(D4REC)) 128 line = fd.read(struct.calcsize(D8REC)) 137 line = fd.read(struct.calcsize(D16REC))
|
| A D | vmexit_analyze.py | 100 line = fd.read(struct.calcsize(TRCREC)) 119 line = fd.read(struct.calcsize(TRCREC))
|
| A D | irq_analyze.py | 38 line = fd.read(struct.calcsize(TRCREC))
|
| A D | cpuusage_analyze.py | 47 line = fd.read(struct.calcsize(TRCREC))
|
| A D | formats | 11 0x0001001F CPU%(cpu)d 0x%(event)016x %(tsc)d read msr [msr = 0x%(1)08x, val = 0x%(2)016x]
|
| /misc/config_tools/board_inspector/legacy/ |
| A D | acpi.py | 186 packed_data = f_node.read(1) 264 name_buf = f_node.read(4) 292 tmp_char = f_node.read(1) 300 pkg_len = f_node.read(1) 365 inc = f_node.read(1) 438 idle_driver = acpi_idle.read(32) 518 freq_driver = f_node.read() 534 boost = f_node.read() 540 freqs = f_node.read() 542 latency = int(f_node.read().strip()) [all …]
|
| /misc/config_tools/acpi_gen/ |
| A D | bin_gen.py | 157 acpi_bin.write(asl.read()) 161 acpi_bin.write(asl.read()) 165 acpi_bin.write(asl.read()) 169 acpi_bin.write(asl.read()) 173 acpi_bin.write(asl.read()) 178 acpi_bin.write(asl.read()) 182 acpi_bin.write(asl.read())
|
| /misc/config_tools/board_inspector/acpiparser/aml/ |
| A D | datatypes.py | 51 def read(self, byte_idx, bit_width): member in BufferBase 82 acc = (self.read(byte_idx, access_width) & mask) >> (bit_idx % access_width) 92 acc |= (self.read(byte_idx, access_width) & mask) << acc_bit_count 117 …self.write(byte_idx, (v & mask_of_write) | (self.read(byte_idx, access_width) & mask_of_keep), acc… 130 …self.write(byte_idx, (v & mask_of_write) | (self.read(byte_idx, access_width) & mask_of_keep), acc… 149 def read(self, byte_idx, bit_width): member in Buffer 185 def read(self, byte_idx, bit_width): member in StreamIOBuffer 188 data = self.__stream.read(byte_width) 203 def read(self, byte_idx, bit_width): member in IndexedIOBuffer
|
| /misc/config_tools/configurator/pyodide/ |
| A D | generateConfigSummary.py | 35 config_summary_content = open(config_summary_path, encoding='utf-8').read()
|
| A D | generateLaunchScript.py | 39 launch_scripts[filename] = open(abs_name, encoding='utf-8').read()
|
| A D | pyodide.py | 18 return open(path, encoding='utf-8').read()
|
| /misc/sample_application/rtvm/ |
| A D | rtApp.c | 67 read(data_pipe, data_buffer, BUFFERSIZE - 1); in main()
|
| /misc/config_tools/board_inspector/memmapparser/ |
| A D | e820.py | 34 return f.read()
|
| /misc/config_tools/board_inspector/acpiparser/ |
| A D | tpm2.py | 47 data = open(val, mode='rb').read()
|
| /misc/config_tools/board_inspector/pcieparser/ |
| A D | __init__.py | 42 data = open(os.path.join(path, "config"), mode='rb').read()
|
| /misc/services/life_mngr/ |
| A D | uart.c | 31 rc = read(fd, buffer + count, buf_len - count); in try_receive_message_by_uart()
|
| /misc/debug_tools/acrn_crashlog/usercrash/ |
| A D | server.c | 293 rc = read(sockfd, &request, sizeof(request)); in crash_request_cb() 345 rc = read(sockfd, &request, sizeof(request)); in crash_completed_cb()
|
| /misc/config_tools/scenario_config/jsonschema/ |
| A D | document.py | 147 "text": open('configdoc.txt').read(),
|
| /misc/config_tools/configurator/packages/configurator/thirdLib/ |
| A D | manager.py | 92 file_content = open(filename, encoding='utf-8').read()
|