Home
last modified time | relevance | path

Searched refs:abc (Results 1 – 25 of 87) sorted by relevance

1234

/OK3568_Linux_fs/u-boot/common/
H A Dandroid_ab.c24 struct android_bootloader_control *abc) in android_boot_control_compute_crc() argument
26 return crc32(0, (void *)abc, offsetof(typeof(*abc), crc32_le)); in android_boot_control_compute_crc()
34 void android_boot_control_default(struct android_bootloader_control *abc) in android_boot_control_default() argument
44 memcpy(abc->slot_suffix, "a\0\0\0", 4); in android_boot_control_default()
45 abc->magic = ANDROID_BOOT_CTRL_MAGIC; in android_boot_control_default()
46 abc->version = ANDROID_BOOT_CTRL_VERSION; in android_boot_control_default()
47 abc->nb_slot = ARRAY_SIZE(abc->slot_info); in android_boot_control_default()
48 memset(abc->reserved0, 0, sizeof(abc->reserved0)); in android_boot_control_default()
49 for (i = 0; i < abc->nb_slot; ++i) { in android_boot_control_default()
50 abc->slot_info[i] = metadata; in android_boot_control_default()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dnamedtuple_with_abc.py39 from abc import ABCMeta, abstractproperty
69 _namedtuple.abc = _NamedTupleABC
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)
221 assert issubclass(MyRecord33, namedtuple.abc)
[all …]
H A Dpersist_data.py15 import collections.abc
22 from collections.abc import Mapping
32 class SQLTable(collections.abc.MutableMapping):
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/4g/
H A Dmainwindow.cpp62 QString abc = myprocess->readAllStandardOutput(); in result() local
63 if(abc.length()>1)ui->result->append(abc.trimmed()); in result()
70 QString abc = ping_process->readAllStandardOutput(); in ping_result() local
71 if(abc.length()>1)ui->result->append(abc.trimmed()); in ping_result()
/OK3568_Linux_fs/app/forlinx/forlinx_qt/4g/
H A Dmainwindow.cpp62 QString abc = myprocess->readAllStandardOutput(); in result() local
63 if(abc.length()>1)ui->result->append(abc.trimmed()); in result()
70 QString abc = ping_process->readAllStandardOutput(); in ping_result() local
71 if(abc.length()>1)ui->result->append(abc.trimmed()); in ping_result()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/
H A D0005-Fixup-compatibility-of-mozbuild-with-Python-3.10.patch43 +class ConfigSettings(collections.abc.Mapping):
52 + class ConfigSection(collections.abc.MutableMapping, object):
65 + if not isinstance(command.conditions, collections.abc.Iterable):
79 +from collections.abc import Iterable
92 +from collections.abc import Iterable
105 + class StringListAdaptor(collections.abc.Sequence):
118 + if isinstance(ignored_exceptions, collections.abc.Iterable):
132 +from collections.abc import MutableSequence
145 +from collections.abc import Iterable
158 +from collections.abc import MutableMapping
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-slip-dbus/
H A D9b939c0b534c1b7958fa0a3c7aedf30bca910431.patch4 Subject: [PATCH] Python 3.10+ fix: Use collections.abc.Callable instead of
25 +import collections.abc
34 + assert(func is None or isinstance(func, collections.abc.Callable))
42 + isinstance(authfail_callback, collections.abc.Callable))
55 +import collections.abc
64 + assert(isinstance(hook, collections.abc.Callable))
73 + assert isinstance(hook, collections.abc.Callable)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/gyp/gyp/
H A D0001-Fix-for-Python-3.10-compatibility.patch6 The collections.abc module replaces collections for Python 3.10
22 +import collections.abc
31 +class OrderedSet(collections.abc.MutableSet):
/OK3568_Linux_fs/buildroot/package/python-backports-abc/
H A DConfig.in2 bool "python-backports-abc"
5 A backport of recent additions to the 'collections.abc'
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dcompress_doc.bbclass11 # DOC_COMPRESS_LIST:append = ' abc'
12 # DOC_COMPRESS = 'abc'
13 # DOC_COMPRESS_CMD[abc] = 'abc compress cmd ***'
14 # DOC_DECOMPRESS_CMD[abc] = 'abc decompress cmd ***'
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-requests-toolbelt/
H A D0001-Fix-collections.abc-deprecation-warning-in-downloadu.patch4 Subject: [PATCH] Fix collections.abc deprecation warning in downloadutils
9 …sing or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and…
/OK3568_Linux_fs/app/forlinx/forlinx_qt/wifi/
H A Dmainwindow.cpp37 QString abc = myprocess->readAllStandardOutput(); in result() local
38 ui->result->append(abc.trimmed()); in result()
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/wifi/
H A Dmainwindow.cpp37 QString abc = myprocess->readAllStandardOutput(); in result() local
38 ui->result->append(abc.trimmed()); in result()
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-uevent41 add fe4d7c9d-b8c6-4a70-9ef1-3d8a58d18eed A=1 B=abc
47 SYNTH_ARG_B=abc
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/asyncrpc/
H A Dclient.py7 import abc
147 @abc.abstractmethod
H A Dserv.py7 import abc
186 @abc.abstractmethod
/OK3568_Linux_fs/buildroot/package/python-frozenlist/
H A DConfig.in6 collections.abc.MutableSequence.
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/ssv6xxx/script/
H A Dwpa.conf.template4 uuid=12345678-9abc-def0-1234-56789abcde11
H A Dp2p.conf.template3 uuid=12345678-9abc-def0-1234-56789abcde22
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/target/
H A D__init__.py7 from abc import abstractmethod
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-frozenlist_1.3.0.bb1 SUMMARY = "A list-like structure which implements collections.abc.MutableSequence, and which can be…
H A Dpython3-requests-toolbelt_0.9.1.bb9 file://0001-Fix-collections.abc-deprecation-warning-in-downloadu.patch \
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxx11/gprs/
H A Dgprs.cpp67 QString abc = myprocess->readAllStandardOutput(); in result() local
68 ui->Edit_info->append(abc.trimmed()); in result()
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/decorator/
H A D__init__.py8 from abc import ABCMeta
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bs4/
H A Delement.py3 import collections.abc
157 if not isinstance(formatter, collections.abc.Callable):
1079 if not isinstance(formatter, collections.abc.Callable):
1183 if not isinstance(formatter, collections.abc.Callable):
1564 …if (isinstance(value, str) or isinstance(value, collections.abc.Callable) or hasattr(value, 'match…
1604 isinstance(self.name, collections.abc.Callable)
1690 if isinstance(match_against, collections.abc.Callable):

1234