/openthread-3.6.0/tests/scripts/thread-cert/ |
D | network_diag.py | 68 def __eq__(self, other): argument 69 common.expect_the_same_class(self, other) 70 return self.addresses == other.addresses 130 def __eq__(self, other): argument 131 common.expect_the_same_class(self, other) 133 return self.counters == other.counters 158 def __eq__(self, other): argument 159 common.expect_the_same_class(self, other) 161 return self.battery_level == other.battery_level 182 def __eq__(self, other): argument [all …]
|
D | mle.py | 123 def __eq__(self, other): argument 124 common.expect_the_same_class(self, other) 126 return self.address == other.address 163 def __eq__(self, other): argument 164 common.expect_the_same_class(self, other) 166 return (self.receiver == other.receiver and self.secure == other.secure and 167 self.device_type == other.device_type and self.network_data == other.network_data) 194 def __eq__(self, other): argument 195 common.expect_the_same_class(self, other) 197 return self.timeout == other.timeout [all …]
|
D | network_layer.py | 71 def __eq__(self, other): argument 72 common.expect_the_same_class(self, other) 73 return self.eid == other.eid 96 def __eq__(self, other): argument 97 common.expect_the_same_class(self, other) 98 return self.mac_address == other.mac_address 121 def __eq__(self, other): argument 122 common.expect_the_same_class(self, other) 123 return self.rloc16 == other.rloc16 146 def __eq__(self, other): argument [all …]
|
D | network_data.py | 99 def __eq__(self, other): argument 100 common.expect_the_same_class(self, other) 102 return (self.border_router_16 == other.border_router_16 and self.prf == other.prf) 145 def __eq__(self, other): argument 146 common.expect_the_same_class(self, other) 148 return self.routes == other.routes 191 def __eq__(self, other): argument 192 common.expect_the_same_class(self, other) 194 return (self.domain_id == other.domain_id and self.prefix_length == other.prefix_length and 195 self.prefix == other.prefix and self.sub_tlvs == other.sub_tlvs) [all …]
|
D | mesh_cop.py | 121 def __eq__(self, other): argument 122 common.expect_the_same_class(self, other) 124 return (self._channel_page == other._channel_page and self._channel == other.__channel) 165 def __eq__(self, other): argument 166 return (isinstance(self, type(other)) and self.extended_panid == other.extended_panid) 189 def __eq__(self, other): argument 190 return (isinstance(self, type(other)) and self.network_name == other.network_name) 266 def __eq__(self, other): argument 267 common.expect_the_same_class(self, other) 269 return self._bloom_filter == other._bloom_filter [all …]
|
D | dtls.py | 201 def __eq__(self, other): argument 202 … return (isinstance(self, type(other)) and self.major == other.major and self.minor == other.minor) 225 def __eq__(self, other): argument 226 return (isinstance(self, type(other)) and self.gmt_unix_time == other.gmt_unix_time and 227 self.random_bytes == other.random_bytes) 250 def __eq__(self, other): argument 251 …return (isinstance(self, type(other)) and self.subrange == other.subrange and self.ele_cls == othe… 252 self.elements == other.elements) 295 def __eq__(self, other): argument 296 return isinstance(self, type(other)) and self.byte == other.byte [all …]
|
D | common.py | 48 def expect_the_same_class(self, other): argument 49 if not isinstance(other, self.__class__): 50 raise TypeError("Expected the same class. Got {} and {}".format(type(self), type(other))) 170 def __eq__(self, other): argument 171 return (self.type == other.type) and (self.mac_address == other.mac_address)
|
D | coap.py | 173 other = self.from_dotted(dotted_code) 174 return self.code == other.code 180 def __eq__(self, other): argument 181 if isinstance(other, int): 182 return self.code == other 184 elif isinstance(other, str): 185 return self.is_equal_dotted(other) 187 elif isinstance(other, self.__class__): 188 return self.code == other.code 191 raise TypeError("Could not compare {} and {}".format(type(self), type(other)))
|
/openthread-3.6.0/tools/otci/otci/ |
D | types.py | 101 def __eq__(self, other): argument 102 if isinstance(other, str): 103 other = ipaddress.IPv6Address(other) 105 return super().__eq__(other) 117 def __eq__(self, other): argument 118 if isinstance(other, str): 119 other = ipaddress.IPv6Network(other) 121 return super().__eq__(other)
|
/openthread-3.6.0/tests/scripts/thread-cert/pktverify/ |
D | null_field.py | 67 def __eq__(self, other): argument 73 def __ne__(self, other): argument 76 def __lt__(self, other): argument 82 def __le__(self, other): argument 88 def __gt__(self, other): argument 94 def __ge__(self, other): argument
|
D | bytes.py | 118 def __eq__(self, other: Union[str, 'Bytes']): 122 if other is None: 124 elif not isinstance(other, Bytes): 125 other = self.__class__(other) 127 eq = super().__eq__(other) 128 print("[%r %s %r]" % (self, "==" if eq else "!=", other), file=sys.stderr)
|
/openthread-3.6.0/ |
D | NOTICE | 12 certified. Members of the Thread Group may hold patents and other intellectual 17 LICENSE file, and all other rights and licenses are expressly reserved.
|
D | CODE_OF_CONDUCT.md | 13 - Demonstrating empathy and kindness toward other people 31 … remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that… 49 **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwe…
|
/openthread-3.6.0/etc/cmake/ |
D | print.cmake | 11 # documentation and/or other materials provided with the distribution. 33 # Depending on the generator in use, Ninja, Makefile, other, it is not possible
|
/openthread-3.6.0/third_party/mbedtls/repo/scripts/ |
D | assemble_changelog.py | 393 def __eq__(self, other): argument 394 return self.sort_key() == other.sort_key() 396 def __lt__(self, other): argument 397 return self.sort_key() < other.sort_key()
|
/openthread-3.6.0/.github/ISSUE_TEMPLATE/ |
D | bug_report.md | 19 **Additional context** Add any other context about the problem here.
|
D | feature_request.md | 12 **Additional context** Add any other context or screenshots about the feature request here.
|
/openthread-3.6.0/third_party/mbedtls/repo/ |
D | LICENSE | 17 other entities that control, are controlled by, or are under common 34 and conversions to other media types. 43 editorial revisions, annotations, elaborations, or other modifications 95 (a) You must give any other recipients of the Work or 163 other commercial damages or losses), even if such Contributor 169 or other liability obligations and/or rights consistent with this 172 of any other Contributor, and only if You agree to indemnify,
|
/openthread-3.6.0/third_party/mbedtls/repo/programs/fuzz/ |
D | README.md | 8 These targets were meant to be used with oss-fuzz but can be used in other contexts. 51 * Run them one against the other with `reproducible` option turned on while capturing trafic into t…
|
/openthread-3.6.0/third_party/mbedtls/repo/tests/data_files/ |
D | test-ca.opensslconf | 19 subjectAltName=otherName:1.2.3.4;UTF8:some other identifier
|
/openthread-3.6.0/third_party/mbedtls/repo/tests/ |
D | Descriptions.txt | 22 renegotiation, SNI, other extensions, etc.
|
/openthread-3.6.0/third_party/mbedtls/repo/ChangeLog.d/ |
D | 00README.md | 59 Use “Changes” for anything that doesn't fit in the other categories. 71 Mbed TLS issue. Add other external references such as CVE numbers where
|
/openthread-3.6.0/third_party/mbedtls/repo/docs/architecture/ |
D | mbed-crypto-storage-specification.md | 33 …y promises regarding key storage, or regarding the nonvolatile random seed file on other platforms. 70 …r namespace. The Crypto service can use arbitrary file identifiers and no other part of the system… 81 …CRYPTO_STORAGE_FILE_LOCATION` allows storing the key files in a directory other than the current d… 127 …r namespace. The Crypto service can use arbitrary file identifiers and no other part of the system… 137 …entity using the crypto library can use arbitrary file identifiers and no other part of the system… 210 …r namespace. The Crypto service can use arbitrary file identifiers and no other part of the system… 220 …entity using the crypto library can use arbitrary file identifiers and no other part of the system…
|
/openthread-3.6.0/third_party/mbedtls/repo/programs/ |
D | README.md | 20 …y algorithms (RSA or ECC) and writes it to a file that can be used by the other pk sample programs. 36 …): generates an RSA key and writes it to a file that can be used with the other RSA sample program… 85 Note: unlike most of the other programs under the `programs/` directory, these two programs are not… 105 …d PEM files directly, but this utility can be useful for interacting with other tools or with mini…
|
/openthread-3.6.0/src/lib/ |
D | CMakeLists.txt | 11 # documentation and/or other materials provided with the distribution.
|