Home
last modified time | relevance | path

Searched refs:Any (Results 1 – 25 of 822) sorted by relevance

12345678910>>...33

/openbmc/qemu/python/qemu/qmp/
H A Dmodels.py13 Any,
29 def __init__(self, raw: Mapping[str, Any]): argument
63 def __init__(self, raw: Mapping[str, Any]): argument
91 def __init__(self, raw: Mapping[str, Any]): argument
113 def __init__(self, raw: Mapping[str, Any]): argument
135 def __init__(self, raw: Mapping[str, Any]): argument
H A Dutil.py17 Any,
87 def create_task(coro: Coroutine[Any, Any, T], argument
152 def asyncio_run(coro: Coroutine[Any, Any, T], *, debug: bool = False) -> T: argument
/openbmc/qemu/scripts/qapi/
H A Dcommon.py16 Any,
202 def gen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]], argument
206 def do_gen(ifcond: Union[str, Dict[str, Any]], argument
221 def gen_infix(operator: str, operands: Sequence[Any]) -> str: argument
229 def cgen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]]) -> str: argument
233 def docgen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]]) -> str: argument
/openbmc/linux/rust/kernel/sync/arc/
H A Dstd_vendor.rs9 use core::any::Any;
11 impl Arc<dyn Any + Send + Sync> {
15 T: Any + Send + Sync, in downcast()
/openbmc/linux/Documentation/translations/zh_CN/mm/
H A Dpage_table_check.rst38 | Anonymous | Named | Any | Prohibit |
40 | Named | Anonymous | Any | Prohibit |
42 | Named | Named | Any | Allow |
/openbmc/qemu/docs/sphinx/
H A Dfakedbusdoc.py12 from typing import Any, Dict
23 def setup(app: Sphinx) -> Dict[str, Any]:
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-freezegun/
H A D1777174bb97c0b514033a09b820078b0d117f4a8.patch19 def test_method_decorator_works_on_unittest_kwarg_frozen_time(self, frozen_time: Any) -> None:
25 def test_method_decorator_works_on_unittest_kwarg_hello(self, **kwargs: Any) -> None:
31 …def test_method_decorator_works_on_unittest_kwarg_frozen_time_with_func(self, frozen_time: Any) ->…
/openbmc/qemu/python/qemu/utils/
H A Dqom_common.py22 Any,
47 def make(cls, value: Dict[str, Any]) -> 'ObjectPropertyInfo': argument
89 def register(cls, subparsers: Any) -> None: argument
/openbmc/qemu/scripts/
H A Dcompare-machine-types.py34 from typing import Optional, List, Dict, Generator, Tuple, Union, Any, Set
108 self.cached: Dict[str, List[Dict[str, Any]]] = {}
124 self.cached: Dict[str, Dict[str, Any]] = {}
144 self.cached: Dict[str, List[Dict[str, Any]]] = {}
214 def __init__(self, raw_mt_dict: Dict[str, Any], argument
217 self.compat_props: Dict[str, Any] = {}
392 driver_props: Dict[str, Set[Any]] = {}
/openbmc/qemu/tests/qemu-iotests/
H A Dtestrunner.py30 from typing import List, Optional, Any, Sequence, Dict
99 def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None: argument
159 def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None: argument
H A Diotests.py34 from typing import (Any, Callable, Dict, Iterable, Iterator,
280 def qemu_img_json(*args: str) -> Any:
312 def qemu_img_measure(*args: str) -> Any:
315 def qemu_img_check(*args: str) -> Any:
318 def qemu_img_info(*args: str) -> Any:
321 def qemu_img_map(*args: str) -> Any:
705 Msg = TypeVar('Msg', Dict[str, Any], List[Any], str)
914 kwargs: Dict[str, Any] = {'command-line': command_line}
979 filters: Iterable[Callable[[Any], Any]] = (), argument
1545 def func_wrapper(test_case: QMPTestCase, *args: List[Any], argument
[all …]
H A Dtestenv.py28 from typing import List, Dict, Any, Optional
294 def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None: argument
/openbmc/linux/tools/testing/kunit/
H A Dkunit_json.py11 from typing import Any, Dict
22 JsonObj = Dict[str, Any]
H A Dkunit_config.py11 from typing import Any, Dict, Iterable, List, Tuple
37 def __eq__(self, other: Any) -> bool: argument
/openbmc/linux/Documentation/ABI/testing/
H A Ddebugfs-scmi-raw9 Any subsequently received response can be read from this same
24 Any subsequently received response can be read from this same
26 Any additional delayed response received afterwards can be read
77 Any subsequently received response can be read from this same
101 Any subsequently received response can be read from this same
104 Any additional delayed response received afterwards can be read
/openbmc/qemu/python/scripts/
H A Dmkvenv.py80 Any,
156 def __init__(self, *args: Any, **kwargs: Any) -> None: argument
719 def _parse_groups(file: str) -> Dict[str, Dict[str, Any]]:
785 def _add_create_subcommand(subparsers: Any) -> None: argument
795 def _add_post_init_subcommand(subparsers: Any) -> None: argument
799 def _add_ensuregroup_subcommand(subparsers: Any) -> None: argument
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DXerox3Any copy of this software or of any derivative work must include the above copyright notice of Xer…
H A DIBM-pibs3 Any user of this software should understand that IBM cannot provide technical support for this soft…
5 Any person who transfers this source code or any derivative work must include the IBM copyright not…
/openbmc/u-boot/Licenses/
H A Dibm-pibs.txt8 Any user of this software should understand that IBM cannot provide
12 Any person who transfers this source code or any derivative work
/openbmc/bmcweb/scripts/
H A Dparse_registries.py55 RegistryInfo: t.TypeAlias = t.Tuple[str, t.Dict[str, t.Any], str, str]
166 privilege_list: t.List[t.Dict[str, t.Any]], argument
190 privilege_list: t.List[t.Dict[str, t.Any]], argument
262 entry: t.Dict[str, t.Any], argument
589 privilege_dict: t.Dict[str, t.Tuple[t.Any, str | None]] = {}
/openbmc/qemu/python/qemu/machine/
H A Dmachine.py32 Any,
688 args: Dict[str, Any]) -> Dict[str, object]: argument
697 **args: Any) -> QMPMessage: argument
719 **args: Any) -> QMPReturnValue: argument
758 def event_match(event: Any, match: Optional[Any]) -> bool: argument
803 events: Sequence[Tuple[str, Any]], argument
/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dpatching.py8 from typing import IO, Match, NamedTuple, Optional, Literal, Iterable, Type, Dict, List, Any, TypeV…
266 self.match_index: Dict[Type[Any], List[FileMatch]] = {}
267 self.match_name_index: Dict[Tuple[Type[Any], str, str], Optional[FileMatch]] = {}
269 def _matches_of_type(self, klass: Type[Any]) -> Iterable[FileMatch]: argument
324 def _matches_of_type(self, klass: Type[Any]) -> List[FileMatch]: argument
424 def _matches_of_type(self, klass: Type[Any]) -> Iterable[FileMatch]: argument
/openbmc/linux/Documentation/mm/
H A Dpage_table_check.rst42 | Anonymous | Named | Any | Prohibit |
44 | Named | Anonymous | Any | Prohibit |
46 | Named | Named | Any | Allow |
/openbmc/linux/rust/alloc/
H A Dboxed.rs151 use core::any::Any;
1720 impl<A: Allocator> Box<dyn Any, A> {
1740 pub fn downcast<T: Any>(self) -> Result<Box<T, A>, Self> { in downcast()
1770 pub unsafe fn downcast_unchecked<T: Any>(self) -> Box<T, A> { in downcast_unchecked()
1773 let (raw, alloc): (*mut dyn Any, _) = Box::into_raw_with_allocator(self); in downcast_unchecked()
1779 impl<A: Allocator> Box<dyn Any + Send, A> {
1799 pub fn downcast<T: Any>(self) -> Result<Box<T, A>, Self> { in downcast()
1829 pub unsafe fn downcast_unchecked<T: Any>(self) -> Box<T, A> { in downcast_unchecked()
1832 let (raw, alloc): (*mut (dyn Any + Send), _) = Box::into_raw_with_allocator(self); in downcast_unchecked()
1838 impl<A: Allocator> Box<dyn Any + Send + Sync, A> {
[all …]
/openbmc/linux/Documentation/ABI/stable/
H A Dsysfs-bus-mhi10 Users: Any userspace application or clients interested in device info.
21 Users: Any userspace application or clients interested in device info.

12345678910>>...33