| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | namedtuple_with_abc.py | 44 _namedtuple = collections.namedtuple 73 def namedtuple(*args, **kwargs): function 79 collections.namedtuple = namedtuple 90 class MyRecord(namedtuple.abc): 104 class MyAbstractRecord(namedtuple.abc): 216 assert issubclass(MyRecord, namedtuple.abc) 217 assert issubclass(MyAbstractRecord, namedtuple.abc) 218 assert issubclass(AnotherAbstractRecord, namedtuple.abc) 219 assert issubclass(MyRecord2, namedtuple.abc) 220 assert issubclass(MyRecord3, namedtuple.abc) [all …]
|
| H A D | exceptions.py | 10 from collections import namedtuple 13 class TracebackEntry(namedtuple.abc):
|
| H A D | cooker.py | 19 from collections import defaultdict, namedtuple 502 EventLogWriteHandler = namedtuple('EventLogWriteHandler', ['event'])
|
| /OK3568_Linux_fs/kernel/tools/testing/kunit/ |
| H A D | kunit.py | 15 from collections import namedtuple 23 KunitResult = namedtuple('KunitResult', ['status','result','elapsed_time']) 25 KunitConfigRequest = namedtuple('KunitConfigRequest', 27 KunitBuildRequest = namedtuple('KunitBuildRequest', 30 KunitExecRequest = namedtuple('KunitExecRequest', 32 KunitParseRequest = namedtuple('KunitParseRequest', 34 KunitRequest = namedtuple('KunitRequest', ['raw_output','timeout', 'jobs',
|
| H A D | kunit_parser.py | 11 from collections import namedtuple 17 TestResult = namedtuple('TestResult', ['status','suites','log']) 109 OkNotOkResult = namedtuple('OkNotOkResult', ['is_ok','description', 'text'])
|
| H A D | kunit_config.py | 15 KconfigEntryBase = collections.namedtuple('KconfigEntryBase', ['name', 'value'])
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | sbom.py | 7 DepRecipe = collections.namedtuple("DepRecipe", ("doc", "doc_sha1", "recipe")) 8 DepSource = collections.namedtuple("DepSource", ("doc", "doc_sha1", "recipe", "file"))
|
| H A D | cve_check.py | 6 _Version = collections.namedtuple(
|
| /OK3568_Linux_fs/yocto/poky/bitbake/bin/ |
| H A D | toaster-eventreplay | 25 from collections import namedtuple 104 params = namedtuple('ConfigParams', ['observe_only'])(True)
|
| /OK3568_Linux_fs/u-boot/tools/binman/ |
| H A D | entry_test.py | 22 Node = collections.namedtuple('Node', ['name', 'path'])
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/ |
| H A D | buildstats.py | 11 from collections import namedtuple 20 TaskDiff = namedtuple('TaskDiff', ' '.join(taskdiff_fields)) 338 RecipeVerDiff = namedtuple('RecipeVerDiff', 'left right')
|
| /OK3568_Linux_fs/u-boot/tools/dtoc/ |
| H A D | test_dtoc.py | 102 Prop = collections.namedtuple('Prop', ['value']) 103 Node = collections.namedtuple('Node', ['props'])
|
| H A D | dtb_platdata.py | 53 PhandleInfo = collections.namedtuple('PhandleInfo', ['max_args', 'args'])
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/ |
| H A D | gitarchive.py | 14 from collections import namedtuple 170 TestedRev = namedtuple('TestedRev', 'commit commit_number tags')
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/build_perf/ |
| H A D | report.py | 7 from collections import OrderedDict, namedtuple 14 AggregateTestData = namedtuple('AggregateTestData', ['metadata', 'results'])
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/systemd/systemd-systemctl/ |
| H A D | systemctl | 13 from collections import namedtuple 112 Directive = namedtuple("Directive", "action unit_name")
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | wic | 27 from collections import namedtuple 386 return namedtuple('ImgType', 'image part path')(image, part, path)
|
| H A D | oe-build-perf-report | 16 from collections import namedtuple, OrderedDict
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/net/ |
| H A D | devlink_port_split.py | 21 Port = collections.namedtuple('Port', 'bus_info name')
|
| /OK3568_Linux_fs/u-boot/tools/patman/ |
| H A D | checkpatch.py | 59 result = collections.namedtuple('CheckPatchResult', fields)
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/ |
| H A D | engine.py | 25 from collections import namedtuple, OrderedDict 262 parttype = namedtuple("Part", "pnum start end size fstype")
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/ |
| H A D | 0005-Fixup-compatibility-of-mozbuild-with-Python-3.10.patch | 253 Flag = collections.namedtuple("Flag", ["name", "bit"]) 266 Flag = collections.namedtuple("Flag", ["name", "bit"])
|
| /OK3568_Linux_fs/kernel/tools/kvm/kvm_stat/ |
| H A D | kvm_stat | 36 from collections import defaultdict, namedtuple 862 EventStat = namedtuple('EventStat', ['value', 'delta'])
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/deb/ |
| H A D | __init__.py | 238 ControlScript = collections.namedtuple("ControlScript", ["suffix", "name", "argument"])
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | mkbootimg | 330 VendorRamdiskTableEntry = collections.namedtuple( # pylint: disable=invalid-name
|