/openthread-2.7.6/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 | 122 def __eq__(self, other): argument 123 common.expect_the_same_class(self, other) 125 return self.address == other.address 162 def __eq__(self, other): argument 163 common.expect_the_same_class(self, other) 165 return (self.receiver == other.receiver and self.secure == other.secure and 166 self.device_type == other.device_type and self.network_data == other.network_data) 193 def __eq__(self, other): argument 194 common.expect_the_same_class(self, other) 196 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-2.7.6/tools/otci/otci/ |
D | types.py | 100 def __eq__(self, other): argument 101 if isinstance(other, str): 102 other = ipaddress.IPv6Address(other) 104 return super().__eq__(other) 116 def __eq__(self, other): argument 117 if isinstance(other, str): 118 other = ipaddress.IPv6Network(other) 120 return super().__eq__(other)
|
/openthread-2.7.6/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-2.7.6/ |
D | CODE_OF_CONDUCT.md | 15 - Showing empathy towards other community members 29 …issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporaril… 39 …good faith may face temporary or permanent repercussions as determined by other members of the pro…
|
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.
|
/openthread-2.7.6/third_party/nlbuild-autotools/repo/ |
D | CONTRIBUTING.md | 10 need to be sure of various other things—for instance that you'll tell us if you 11 know that your code infringes on other people's patents. You don't have to sign
|
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-2.7.6/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-2.7.6/third_party/openthread-test-driver/ |
D | LICENSE | 16 Foundation's software and to any other program whose authors commit to 17 using it. (Some other Free Software Foundation software is covered by 62 0. This License applies to any program or other work which contains 72 Activities other than copying, distribution and modification are not 84 and give any other recipients of the Program a copy of this License 121 this License, whose permissions for other licensees extend to the 131 a storage or distribution medium does not bring the other work under 198 infringement or for any other reason (not limited to patent issues), 203 License and any other pertinent obligations, then as a consequence you 212 apply and the section as a whole is intended to apply in other [all …]
|
/openthread-2.7.6/third_party/mbedtls/repo/scripts/ |
D | assemble_changelog.py | 373 def __eq__(self, other): argument 374 return self.sort_key() == other.sort_key() 376 def __lt__(self, other): argument 377 return self.sort_key() < other.sort_key()
|
/openthread-2.7.6/.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-2.7.6/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-2.7.6/third_party/nlbuild-autotools/repo/automake/pre/macros/ |
D | constants.am | 19 # This file defines automake file constants common to all other
|
D | verbosity.am | 19 # This file defines automake variables common to all other
|
/openthread-2.7.6/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-2.7.6/third_party/nlbuild-autotools/repo/make/pre/ |
D | macros.mak | 20 # all other make headers and files.
|