| /openbmc/openbmc-build-scripts/tools/ |
| H A D | config-clang-tidy | 124 def merge(repo: str, ref: str) -> str: 139 def enable(repo: str, check: str) -> str: 145 def disable(repo: str, check: str, drop: bool) -> str: 154 def _split(s: str) -> Dict[str, bool]: 173 def _join(data: Dict[str, bool]) -> str: 185 repo: List[Dict[str, str]], ref: List[Dict[str, str]] argument 197 repo: List[Dict[str, str]], option: str, drop: bool argument 210 def _unroll(repo: List[Dict[str, str]]) -> Dict[str, str]: argument 217 def _roll(data: Dict[str, str]) -> List[Dict[str, str]]: argument 221 def load_config(path: str) -> Tuple[str, Dict[str, Any]]: [all …]
|
| H A D | owners | 53 def load(file: str) -> OwnersData: 63 self, args: argparse.Namespace, owners: Dict[str, OwnersData] 115 def __exact(self, file: str, entry: MatchEntry) -> None: 119 def __partial_regex(self, file: str, entry: MatchEntry) -> None: 123 def __regex(self, file: str, entry: MatchEntry) -> None: 127 def __suffix(self, file: str, entry: MatchEntry) -> None: 134 args: argparse.Namespace, data: Dict[str, OwnersData] 152 def review_js(reviewer: str, state: str) -> str:
|
| /openbmc/qemu/scripts/qapi/ |
| H A D | common.py | 30 def camel_to_upper(value: str) -> str: 67 def c_enum_const(type_name: str, 68 const_name: str, 69 prefix: Optional[str] = None) -> str: 82 def c_name(name: str, protect: bool = True) -> str: 162 def cgen(code: str, **kwds: object) -> str: 175 def mcgen(code: str, **kwds: object) -> str: 181 def c_fname(filename: str) -> str: 185 def guardstart(name: str) -> str: 194 def guardend(name: str) -> str: [all …]
|
| H A D | types.py | 40 def gen_enum_lookup(name: str, 42 prefix: Optional[str] = None) -> str: 84 def gen_enum(name: str, 86 prefix: Optional[str] = None) -> str: 120 def gen_fwd_object_or_array(name: str) -> str: 128 def gen_array(name: str, element_type: QAPISchemaType) -> str: 156 def gen_object(name: str, ifcond: QAPISchemaIfCond, 214 def gen_upcast(name: str, base: QAPISchemaObjectType) -> str: 251 def gen_type_cleanup_decl(name: str) -> str: 261 def gen_type_cleanup(name: str) -> str: [all …]
|
| H A D | visit.py | 40 def gen_visit_decl(name: str, scalar: bool = False) -> str: 52 def gen_visit_members_decl(name: str) -> str: 60 def gen_visit_object_members(name: str, 173 def gen_visit_list(name: str, element_type: QAPISchemaType) -> str: 207 def gen_visit_enum(name: str) -> str: 222 def gen_visit_alternate(name: str, 300 def gen_visit_object(name: str) -> str: 335 def __init__(self, prefix: str): 352 def _begin_user_module(self, name: str) -> None: 370 name: str, [all …]
|
| H A D | events.py | 30 def build_event_send_proto(name: str, 38 def gen_event_send_decl(name: str, 81 def gen_event_send(name: str, 85 event_enum_name: str, 86 event_emit: str) -> str: 178 def __init__(self, prefix: str): 186 def _begin_user_module(self, name: str) -> None: 230 name: str, 247 output_dir: str, 248 prefix: str) -> None:
|
| /openbmc/telemetry/src/utils/ |
| H A D | tstring.hpp | 13 static std::string str() in str() function 21 static std::string str() in str() function 29 static std::string str() in str() function 37 static std::string str() in str() function 45 static std::string str() in str() function 53 static std::string str() in str() function 61 static std::string str() in str() function 69 static std::string str() in str() function 77 static std::string str() in str() function 85 static std::string str() in str() function [all …]
|
| /openbmc/qemu/scripts/ |
| H A D | xml-preprocess.py | 85 def _pp_include(self, xml_str: str) -> str: 95 def _pp_env_var(self, xml_str: str) -> str: 102 def _pp_sys_var(self, xml_str: str) -> str: 109 def _pp_cus_var(self, xml_str: str) -> str: 126 def _pp_foreach(self, xml_str: str) -> str: 137 def _pp_error_warning(self, xml_str: str) -> str: 149 def _pp_if_eval(self, xml_str: str) -> str: 162 def _pp_ifdef_ifndef(self, xml_str: str) -> str: 173 def _pp_if_elseif(self, xml_str: str) -> str: 218 def _pp_command(self, xml_str: str) -> str: [all …]
|
| H A D | block-coroutine-wrapper.py | 56 def __init__(self, param_decl: str) -> None: 66 def __init__(self, wrapper_type: str, return_type: str, name: str, 67 args: str, variant: str) -> None: 105 def gen_ctx(self, prefix: str = '') -> str: 117 def gen_list(self, format: str) -> str: 120 def gen_block(self, format: str) -> str: 133 def func_decl_iter(text: str) -> Iterator: 142 def snake_to_camel(func_name: str) -> str: 302 def gen_wrappers(input_code: str) -> str:
|
| H A D | compare-machine-types.py | 61 def __init__(self, vm: QEMUMachine, name: str, abstract: bool) -> None: 68 def get_prop(self, driver: str, prop: str) -> str: 89 def __init__(self, vm: QEMUMachine, name: str) -> None: 110 def get_prop(self, driver: str, prop_name: str) -> str: 126 def get_prop(self, driver: str, prop_name: str) -> str: 146 def get_prop(self, driver: str, prop_name: str) -> str: 157 def new_driver(vm: QEMUMachine, name: str, is_abstr: bool) -> Driver: 193 def get_prop(self, driver: str, prop: str) -> str: 204 def get_implementations(self, driver: str) -> List[str]: 214 def __init__(self, raw_mt_dict: Dict[str, Any], [all …]
|
| H A D | python_qmp_updater.py | 33 def tmatch(template: str, text: str, 34 padding: str, res: str) -> Optional[re.Match[str]]: 39 def find_closing_brace(text: str, start: int) -> int: 58 def update(text: str) -> str:
|
| H A D | get-wraps-from-cargo-registry.py | 22 def get_name_and_semver(namever: str) -> tuple[str, str]: 37 def find_installed_crate(self, namever: str) -> str | None: 50 def compare_build_rs(self, orig_dir: str, registry_namever: str) -> None: 69 def update_subproject(self, wrap_file: str, registry_namever: str) -> None:
|
| /openbmc/bmcweb/scripts/ |
| H A D | parse_registries.py | 57 dmtf_name: str, header_name: str, type_name: str 178 privilege_list: t.List[t.Dict[str, t.Any]], 202 privilege_list: t.List[t.Dict[str, t.Any]], 223 def get_response_code(entry_id: str) -> str | None: 269 entry_id: str, 270 entry: t.Dict[str, t.Any], 272 registry_name: str, 273 namespace_name: str, 420 registry_name: str, 421 namespace_name: str, [all …]
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | testrunner.py | 41 def file_diff(file1: str, file2: str) -> List[str]: argument 61 def __init__(self, cache_file: str, env: TestEnv) -> None: argument 72 def get(self, test: str, argument 83 def update(self, test: str, elapsed: float) -> None: argument 99 def __init__(self, status: str, descriptio argument 100 __init__(self, status: str, description: str = '', elapsed: Optional[float] = None, diff: Sequence[str] = (), casenotrun: str = '', interrupted: bool = False) global() argument 101 __init__(self, status: str, description: str = '', elapsed: Optional[float] = None, diff: Sequence[str] = (), casenotrun: str = '', interrupted: bool = False) global() argument 114 proc_run_test(test: str, test_field_width: int) global() argument 120 run_tests_pool(self, tests: List[str], test_field_width: int, jobs: int) global() argument 137 __init__(self, env: TestEnv, tap: bool = False, color: str = 'auto') global() argument 157 test_print_one_line(self, test: str, test_field_width: int, starttime: str, endtime: Optional[str] = None, status: str = '...', lasttime: Optional[float] = None, thistime: Optional[float] = None, description: str = '', end: str = 'n') global() argument 159 test_print_one_line(self, test: str, test_field_width: int, starttime: str, endtime: Optional[str] = None, status: str = '...', lasttime: Optional[float] = None, thistime: Optional[float] = None, description: str = '', end: str = 'n') global() argument 160 test_print_one_line(self, test: str, test_field_width: int, starttime: str, endtime: Optional[str] = None, status: str = '...', lasttime: Optional[float] = None, thistime: Optional[float] = None, description: str = '', end: str = 'n') global() argument 163 test_print_one_line(self, test: str, test_field_width: int, starttime: str, endtime: Optional[str] = None, status: str = '...', lasttime: Optional[float] = None, thistime: Optional[float] = None, description: str = '', end: str = 'n') global() argument 164 test_print_one_line(self, test: str, test_field_width: int, starttime: str, endtime: Optional[str] = None, status: str = '...', lasttime: Optional[float] = None, thistime: Optional[float] = None, description: str = '', end: str = 'n') global() argument 213 find_reference(self, test: str) global() argument 229 do_run_test(self, test: str) global() argument 319 run_test(self, test: str, test_field_width: int, mp: bool = False) global() argument 367 run_tests(self, tests: List[str], jobs: int = 1) global() argument [all...] |
| H A D | findtests.py | 28 def chdir(path: Optional[str] = None) -> Iterator[None]: 42 def __init__(self, test_dir: Optional[str] = None) -> None: 59 def add_group_file(self, fname: str) -> None: 74 def parse_test_name(self, name: str) -> str: 92 def find_tests(self, groups: Optional[List[str]] = None, 93 exclude_groups: Optional[List[str]] = None, 94 tests: Optional[List[str]] = None, 95 start_from: Optional[str] = None) -> List[str]:
|
| H A D | testenv.py | 34 def isxfile(path: str) -> bool: 38 def get_default_machine(qemu_prog: str) -> str: 81 def prepare_subprocess(self, args: List[str]) -> Dict[str, str]: 145 def root(*names: str) -> str: 175 def __init__(self, source_dir: str, build_dir: str, 176 imgfmt: str, imgproto: str, aiomode: str, 177 cachemode: Optional[str] = None, 178 imgopts: Optional[str] = None, 294 def print_env(self, prefix: str = '') -> None:
|
| H A D | iotests.py | 122 logger_name: str, level: int = logging.CRITICAL) -> Iterator[None]: 144 def qemu_tool_popen(args: Sequence[str], 154 def qemu_tool_pipe_and_status(tool: str, args: Sequence[str], 171 def qemu_img_create_prepare_args(args: List[str]) -> List[str]: 210 def qemu_tool(*args: str, check: bool = True, combine_stdio: bool = True 250 def qemu_img(*args: str, check: bool = True, combine_stdio: bool = True 277 def qemu_img_create(*args: str) -> 'subprocess.CompletedProcess[str]': 280 def qemu_img_json(*args: str) -> Any: 312 def qemu_img_measure(*args: str) -> Any: 315 def qemu_img_check(*args: str) -> Any: [all …]
|
| /openbmc/qemu/python/qemu/utils/ |
| H A D | __init__.py | 45 def get_info_usernet_hostfwd_port(info_usernet_output: str) -> Optional[int]: 62 content: str = '', 64 name: Optional[str] = None, 66 upper_left: str = '┏', 67 lower_left: str = '┗', 68 horizontal: str = '━', 69 vertical: str = '┃', 110 def _bar(name: Optional[str], top: bool = True) -> str: 119 def _wrap(line: str) -> str:
|
| H A D | qemu_ga_client.py | 65 def __getattr__(self, name: str) -> Callable[..., Any]: 96 def read(self, path: str) -> bytes: 156 def fsfreeze(self, cmd: str) -> object: 168 def suspend(self, mode: str) -> None: 179 def shutdown(self, mode: str = 'powerdown') -> None: 189 def _cmd_cat(client: QemuGuestAgentClient, args: Sequence[str]) -> None: 197 def _cmd_fsfreeze(client: QemuGuestAgentClient, args: Sequence[str]) -> None: 218 def _cmd_fstrim(client: QemuGuestAgentClient, args: Sequence[str]) -> None: 226 def _cmd_ifconfig(client: QemuGuestAgentClient, args: Sequence[str]) -> None: 231 def _cmd_info(client: QemuGuestAgentClient, args: Sequence[str]) -> None: [all …]
|
| H A D | accel.py | 34 def list_accel(qemu_bin: str) -> List[str]: 54 def kvm_available(target_arch: Optional[str] = None, 55 qemu_bin: Optional[str] = None) -> bool: 78 def tcg_available(qemu_bin: str) -> bool: 87 def hvf_available(qemu_bin: str) -> bool:
|
| /openbmc/qemu/docs/sphinx/ |
| H A D | dbusdomain.py | 45 def get_index_text(self, modname: str, name: str) -> str: 50 self, name: str, sig: str, signode: desc_signature 76 def get_index_text(self, ifacename: str, name: str) -> str: 85 def handle_signature(self, sig: str, signode: desc_signature) -> str: 135 def get_index_text(self, ifacename: str, name: str) -> str: 138 def handle_signature(self, sig: str, signode: desc_signature) -> str: 186 def get_index_text(self, ifacename: str, name: str) -> str: 208 def get_index_text(self, ifacename: str, name: str) -> str: 236 def handle_signature(self, sig: str, signode: desc_signature) -> str: 283 self, docnames: Iterable[str] = None [all …]
|
| H A D | qapi_domain.py | 96 title: str, 97 target: str, 169 def handle_signature(self, sig: str, signode: desc_signature) -> Signature: 212 self, name: Signature, sig: str, signode: desc_signature 243 def split_fqn(name: str) -> Tuple[str, str, str]: 348 def handle_signature(self, sig: str, signode: desc_signature) -> Signature: 386 source: str, content: Union[str, List[nodes.Node]], classname: str 689 docnames: Optional[Iterable[str]] = None, 813 name: str, 814 objtype: str, [all …]
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-cutils.c | 51 const char *str = ""; in test_parse_uint_empty() local 65 const char *str = " \t "; in test_parse_uint_whitespace() local 80 const char *str = " \t xxx"; in test_parse_uint_invalid() local 95 const char *str in test_parse_uint_trailing() local 109 const char *str = "123"; test_parse_uint_correct() local 123 const char *str = "0123"; test_parse_uint_octal() local 137 const char *str = "0123"; test_parse_uint_decimal() local 151 char *str = g_strdup_printf("%llu", (unsigned long long)LLONG_MAX + 1); test_parse_uint_llong_max() local 167 char *str = g_strdup_printf("%llu", ULLONG_MAX); test_parse_uint_max() local 183 const char *str; test_parse_uint_overflow() local 215 const char *str; test_parse_uint_negative() local 239 const char *str = " -0"; test_parse_uint_negzero() local 252 const char *str = "123xxx"; test_parse_uint_full_trailing() local 264 const char *str = "123"; test_parse_uint_full_correct() local 277 const char *str = "-2junk"; test_parse_uint_full_erange_junk() local 289 const char *str = NULL; test_parse_uint_full_null() local 300 const char *str = "12345 foo"; test_qemu_strtoi_correct() local 329 const char *str = ""; test_qemu_strtoi_empty() local 344 const char *str = " \t "; test_qemu_strtoi_whitespace() local 359 const char *str = " xxxx \t abc"; test_qemu_strtoi_invalid() local 374 const char *str = "123xxx"; test_qemu_strtoi_trailing() local 389 const char *str = "0123"; test_qemu_strtoi_octal() local 412 const char *str = "0123"; test_qemu_strtoi_decimal() local 436 const char *str = "0123"; test_qemu_strtoi_hex() local 469 char *str = g_strdup_printf("%d", INT_MAX); test_qemu_strtoi_max() local 485 const char *str; test_qemu_strtoi_overflow() local 533 char *str = g_strdup_printf("%d", INT_MIN); test_qemu_strtoi_min() local 549 const char *str; test_qemu_strtoi_underflow() local 605 const char *str; test_qemu_strtoi_negative() local 629 const char *str = " -0"; test_qemu_strtoi_negzero() local 644 const char *str = "123"; test_qemu_strtoi_full_correct() local 670 const char *str = ""; test_qemu_strtoi_full_empty() local 682 const char *str = " \t -321"; test_qemu_strtoi_full_negative() local 694 const char *str = " -0"; test_qemu_strtoi_full_negzero() local 706 const char *str = "123xxx"; test_qemu_strtoi_full_trailing() local 718 char *str = g_strdup_printf("%d", INT_MAX); test_qemu_strtoi_full_max() local 732 const char *str = "-9999999999junk"; test_qemu_strtoi_full_erange_junk() local 744 const char *str = "12345 foo"; test_qemu_strtoui_correct() local 773 const char *str = ""; test_qemu_strtoui_empty() local 788 const char *str = " \t "; test_qemu_strtoui_whitespace() local 803 const char *str = " xxxx \t abc"; test_qemu_strtoui_invalid() local 818 const char *str = "123xxx"; test_qemu_strtoui_trailing() local 833 const char *str = "0123"; test_qemu_strtoui_octal() local 856 const char *str = "0123"; test_qemu_strtoui_decimal() local 880 const char *str = "0123"; test_qemu_strtoui_hex() local 914 const char *str = "-4294967295"; /* 1 mod 2^32 */ test_qemu_strtoui_wrap() local 929 char *str = g_strdup_printf("%u", UINT_MAX); test_qemu_strtoui_max() local 945 const char *str; test_qemu_strtoui_overflow() local 1009 const char *str; test_qemu_strtoui_underflow() local 1057 const char *str = " \t -321"; test_qemu_strtoui_negative() local 1072 const char *str = " -0"; test_qemu_strtoui_negzero() local 1087 const char *str = "123"; test_qemu_strtoui_full_correct() local 1110 const char *str = ""; test_qemu_strtoui_full_empty() local 1122 const char *str = " \t -321"; test_qemu_strtoui_full_negative() local 1133 const char *str = " -0"; test_qemu_strtoui_full_negzero() local 1144 const char *str = "123xxx"; test_qemu_strtoui_full_trailing() local 1156 char *str = g_strdup_printf("%u", UINT_MAX); test_qemu_strtoui_full_max() local 1170 const char *str = "-9999999999junk"; test_qemu_strtoui_full_erange_junk() local 1182 const char *str = "12345 foo"; test_qemu_strtol_correct() local 1211 const char *str = ""; test_qemu_strtol_empty() local 1226 const char *str = " \t "; test_qemu_strtol_whitespace() local 1241 const char *str = " xxxx \t abc"; test_qemu_strtol_invalid() local 1256 const char *str = "123xxx"; test_qemu_strtol_trailing() local 1271 const char *str = "0123"; test_qemu_strtol_octal() local 1294 const char *str = "0123"; test_qemu_strtol_decimal() local 1318 const char *str = "0123"; test_qemu_strtol_hex() local 1351 char *str = g_strdup_printf("%ld", LONG_MAX); test_qemu_strtol_max() local 1367 const char *str; test_qemu_strtol_overflow() local 1410 char *str = g_strdup_printf("%ld", LONG_MIN); test_qemu_strtol_min() local 1426 const char *str; test_qemu_strtol_underflow() local 1469 const char *str = " \t -321"; test_qemu_strtol_negative() local 1484 const char *str = " -0"; test_qemu_strtol_negzero() local 1499 const char *str = "123"; test_qemu_strtol_full_correct() local 1525 const char *str = ""; test_qemu_strtol_full_empty() local 1537 const char *str = " \t -321"; test_qemu_strtol_full_negative() local 1549 const char *str = " -0"; test_qemu_strtol_full_negzero() local 1561 const char *str = "123xxx"; test_qemu_strtol_full_trailing() local 1573 char *str = g_strdup_printf("%ld", LONG_MAX); test_qemu_strtol_full_max() local 1587 const char *str = "-99999999999999999999junk"; test_qemu_strtol_full_erange_junk() local 1599 const char *str = "12345 foo"; test_qemu_strtoul_correct() local 1628 const char *str = ""; test_qemu_strtoul_empty() local 1643 const char *str = " \t "; test_qemu_strtoul_whitespace() local 1658 const char *str = " xxxx \t abc"; test_qemu_strtoul_invalid() local 1673 const char *str = "123xxx"; test_qemu_strtoul_trailing() local 1688 const char *str = "0123"; test_qemu_strtoul_octal() local 1711 const char *str = "0123"; test_qemu_strtoul_decimal() local 1735 const char *str = "0123"; test_qemu_strtoul_hex() local 1768 const char *str; test_qemu_strtoul_wrap() local 1785 char *str = g_strdup_printf("%lu", ULONG_MAX); test_qemu_strtoul_max() local 1801 const char *str; test_qemu_strtoul_overflow() local 1844 const char *str; test_qemu_strtoul_underflow() local 1887 const char *str = " \t -321"; test_qemu_strtoul_negative() local 1902 const char *str = " -0"; test_qemu_strtoul_negzero() local 1917 const char *str = "123"; test_qemu_strtoul_full_correct() local 1940 const char *str = ""; test_qemu_strtoul_full_empty() local 1952 const char *str = " \t -321"; test_qemu_strtoul_full_negative() local 1963 const char *str = " -0"; test_qemu_strtoul_full_negzero() local 1974 const char *str = "123xxx"; test_qemu_strtoul_full_trailing() local 1986 char *str = g_strdup_printf("%lu", ULONG_MAX); test_qemu_strtoul_full_max() local 2000 const char *str = "-99999999999999999999junk"; test_qemu_strtoul_full_erange_junk() local 2012 const char *str = "12345 foo"; test_qemu_strtoi64_correct() local 2041 const char *str = ""; test_qemu_strtoi64_empty() local 2056 const char *str = " \t "; test_qemu_strtoi64_whitespace() local 2071 const char *str = " xxxx \t abc"; test_qemu_strtoi64_invalid() local 2086 const char *str = "123xxx"; test_qemu_strtoi64_trailing() local 2101 const char *str = "0123"; test_qemu_strtoi64_octal() local 2124 const char *str = "0123"; test_qemu_strtoi64_decimal() local 2148 const char *str = "0123"; test_qemu_strtoi64_hex() local 2181 char *str = g_strdup_printf("%lld", LLONG_MAX); test_qemu_strtoi64_max() local 2197 const char *str; test_qemu_strtoi64_overflow() local 2229 char *str = g_strdup_printf("%lld", LLONG_MIN); test_qemu_strtoi64_min() local 2245 const char *str; test_qemu_strtoi64_underflow() local 2277 const char *str = " \t -321"; test_qemu_strtoi64_negative() local 2292 const char *str = " -0"; test_qemu_strtoi64_negzero() local 2307 const char *str = "123"; test_qemu_strtoi64_full_correct() local 2330 const char *str = ""; test_qemu_strtoi64_full_empty() local 2342 const char *str = " \t -321"; test_qemu_strtoi64_full_negative() local 2354 const char *str = " -0"; test_qemu_strtoi64_full_negzero() local 2366 const char *str = "123xxx"; test_qemu_strtoi64_full_trailing() local 2379 char *str = g_strdup_printf("%lld", LLONG_MAX); test_qemu_strtoi64_full_max() local 2393 const char *str = "-99999999999999999999junk"; test_qemu_strtoi64_full_erange_junk() local 2405 const char *str = "12345 foo"; test_qemu_strtou64_correct() local 2434 const char *str = ""; test_qemu_strtou64_empty() local 2449 const char *str = " \t "; test_qemu_strtou64_whitespace() local 2464 const char *str = " xxxx \t abc"; test_qemu_strtou64_invalid() local 2479 const char *str = "123xxx"; test_qemu_strtou64_trailing() local 2494 const char *str = "0123"; test_qemu_strtou64_octal() local 2517 const char *str = "0123"; test_qemu_strtou64_decimal() local 2541 const char *str = "0123"; test_qemu_strtou64_hex() local 2574 const char *str = "-18446744073709551615"; /* 1 mod 2^64 */ test_qemu_strtou64_wrap() local 2589 char *str = g_strdup_printf("%llu", ULLONG_MAX); test_qemu_strtou64_max() local 2605 const char *str; test_qemu_strtou64_overflow() local 2637 const char *str; test_qemu_strtou64_underflow() local 2669 const char *str = " \t -321"; test_qemu_strtou64_negative() local 2684 const char *str = " -0"; test_qemu_strtou64_negzero() local 2699 const char *str = "18446744073709551614"; test_qemu_strtou64_full_correct() local 2722 const char *str = ""; test_qemu_strtou64_full_empty() local 2734 const char *str = " \t -321"; test_qemu_strtou64_full_negative() local 2746 const char *str = " -0"; test_qemu_strtou64_full_negzero() local 2758 const char *str = "18446744073709551614xxxxxx"; test_qemu_strtou64_full_trailing() local 2770 char *str = g_strdup_printf("%lld", ULLONG_MAX); test_qemu_strtou64_full_max() local 2784 const char *str = "-99999999999999999999junk"; test_qemu_strtou64_full_erange_junk() local 2796 const char *str; test_qemu_strtod_simple() local 2850 const char *str; test_qemu_strtod_einval() local 2888 const char *str; test_qemu_strtod_erange() local 2924 const char *str; test_qemu_strtod_nonfinite() local 2960 const char *str; test_qemu_strtod_trailing() local 3013 const char *str; test_qemu_strtod_erange_junk() local 3040 const char *str; test_qemu_strtod_finite_simple() local 3094 const char *str; test_qemu_strtod_finite_einval() local 3132 const char *str; test_qemu_strtod_finite_erange() local 3170 const char *str; test_qemu_strtod_finite_nonfinite() local 3207 const char *str; test_qemu_strtod_finite_trailing() local 3263 const char *str; test_qemu_strtod_finite_erange_junk() local 3289 do_strtosz_full(const char * str,qemu_strtosz_fn fn,int exp_ptr_ret,uint64_t exp_ptr_val,size_t exp_ptr_offset,int exp_null_ret,uint64_t exp_null_val) do_strtosz_full() argument 3314 do_strtosz(const char * str,int exp_ret,uint64_t exp_val,size_t exp_offset) do_strtosz() argument 3321 do_strtosz_MiB(const char * str,int exp_ret,uint64_t exp_val,size_t exp_offset) do_strtosz_MiB() argument 3328 do_strtosz_metric(const char * str,int exp_ret,uint64_t exp_val,size_t exp_offset) do_strtosz_metric() argument 3561 char *str; test_freq_to_str() local 3578 char *str; test_size_to_str() local [all...] |
| /openbmc/qemu/python/qemu/machine/ |
| H A D | machine.py | 77 command: str, output: Optional[str]): 124 binary: str, 125 args: Sequence[str] = (), 126 wrapper: Sequence[str] = (), 127 name: Optional[str] = None, 128 base_temp_dir: str = "/var/tmp", 131 console_log: Optional[str] = None, 132 log_dir: Optional[str] = None, 212 opaque: str, opts: str = '') -> _T: 232 file_path: Optional[str] = None) -> int: [all …]
|
| /openbmc/qemu/python/qemu/qmp/ |
| H A D | qmp_tui.py | 77 def format_json(msg: str) -> str: 154 def __init__(self, address: Union[str, Tuple[str, int]], num_retries: int, 166 def add_to_history(self, msg: str, level: Optional[str] = None) -> None: 226 def cb_send_to_server(self, raw_msg: str) -> None: 245 def unhandled_input(self, key: str) -> None: 289 def _set_status(self, msg: str) -> None: 421 def __init__(self, text: str = ''): 449 def keypress(self, size: Tuple[int, int], key: str) -> Optional[str]: 527 history: Union[str, List[Tuple[str, str]]]) -> None: argument 538 def mouse_event(self, size: Tuple[int, int], _event: str, button: float, [all …]
|