Home
last modified time | relevance | path

Searched refs:method (Results 1 – 24 of 24) sorted by relevance

/openthread-latest/tests/scripts/thread-cert/
Dtest_coap_block.py58 def _do_transfer_test(self, method): argument
74 if method == 'GET':
79 if method == 'PUT':
85 if method == 'POST':
102 self._do_transfer_test(method='GET')
113 self._do_transfer_test(method='PUT')
124 self._do_transfer_test(method='POST')
Dcall_dbus_method.py40 method = getattr(iface, method_name)
41 res = method(*arguments)
Ddtls.py340 method = struct.unpack(">B", data.read(1))[0]
341 assert method == cls.NULL
Dnode.py3004 def _coap_rq(self, method, ipaddr, uri, con=False, payload=None): argument
3008 cmd = 'coap %s %s %s' % (method, ipaddr, uri)
3020 def _coap_rq_block(self, method, ipaddr, uri, size=16, count=0): argument
3024 cmd = 'coap %s %s %s' % (method, ipaddr, uri)
/openthread-latest/third_party/mbedtls/repo/docs/architecture/testing/
Ddriver-interface-test-strategy.md39 For each API function that can lead to a driver call (more precisely, for each driver method call s…
41 * Make at least one test with a key in a secure element that checks that the driver method is calle…
42 …e test with a key that is not in a secure element that checks that the driver method is not called.
43 …at does not have the requisite method (i.e. the method pointer is `NULL`) but has the substructure…
44 …lement with a driver that does not have the substructure containing that method (i.e. the pointer …
52 For each API function that can lead to a driver call (more precisely, for each driver method call s…
55 …driver, call the API function with such parameters and verify that the driver method is not called.
64 * Expected errors (e.g. `PSA_ERROR_INVALID_SIGNATURE` from a signature verification method).
69 …tected at each stage (slot number allocation or validation, key creation method, storage accesses).
74 The following tests must be performed at least one for each key creation method (import, generate, …
[all …]
Dinvasive-testing.md242 | Portability | ~ Depends on the method |
/openthread-latest/third_party/mbedtls/repo/library/
Dpsa_crypto_se.c182 psa_key_creation_method_t method, in psa_find_se_slot_for_key() argument
212 attributes, method, in psa_find_se_slot_for_key()
214 } else if (method == PSA_KEY_CREATION_REGISTER) { in psa_find_se_slot_for_key()
228 attributes, method, in psa_find_se_slot_for_key()
Dpsa_crypto_se.h133 psa_key_creation_method_t method,
Dpsa_crypto.c1750 psa_key_creation_method_t method, in psa_start_key_creation() argument
1759 (void) method; in psa_start_key_creation()
1818 status = psa_find_se_slot_for_key(attributes, method, *p_drv, in psa_start_key_creation()
1840 if (*p_drv == NULL && method == PSA_KEY_CREATION_REGISTER) { in psa_start_key_creation()
/openthread-latest/
DSTYLE_GUIDE.md32 …should be one return statement per free function or method at the end of the free function or meth…
66 …ion or object method that allocates a resource, then there should be one that deallocates it. If t…
79 …as such using the `OT_UNUSED_VARIABLE` macro at the top of a function or method before all local v…
134 …- All OpenThread class, namespace, structure, method, function, enumeration, and type names in the…
135 …aces, structures, methods, functions, enumerations, and types as well as method and function param…
143 …- All free function or method parameters should have an `a` prepended to the name to denote functi…
173 - Every public, and ideally private, free function and class method should likewise have a prologue…
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_crypto_se_driver_hal.function38 /** Like #TEST_ASSERT for use in a driver method, with no cleanup.
53 /** Like #TEST_ASSERT for use in a driver method, with cleanup.
124 psa_key_creation_method_t method;
134 psa_key_creation_method_t method,
142 DRIVER_ASSERT_RETURN(method ==
143 validate_slot_number_directions.method);
156 psa_key_creation_method_t method,
161 (void) method;
409 psa_key_creation_method_t method,
414 (void) method;
[all …]
Dtest_suite_psa_crypto_se_driver_hal_mocks.function246 psa_key_creation_method_t method,
252 (void) method;
/openthread-latest/third_party/mbedtls/repo/
D.pylintrc19 # No upper limit on method names. Pylint <2.1.0 has an upper limit of 30.
21 method-rgx=[a-z_][a-z0-9_]{2,}$
/openthread-latest/tools/gerrit/
DREADME.md45 44e583a55 [toranj] add new method to finalize all nodes at end of each test (#2930)
52 492f0c3b1 [harness-automation] update read method for TopologyConfig.txt format change (#2950)
/openthread-latest/third_party/mbedtls/repo/configs/
DREADME.txt23 Note that the second method also works if you want to keep your custom
/openthread-latest/third_party/mbedtls/repo/include/psa/
Dcrypto_se_driver.h902 psa_key_creation_method_t method,
948 psa_key_creation_method_t method,
/openthread-latest/tests/toranj/
DREADME_NCP.md217 `wpan.Node` method `prepare_tx()` prepares a UDP6 transmission from a node.
237 `wpan.Node` method `prepare_rx()` prepares a node to listen for UDP messages from a sender.
246 After all exchanges are prepared, static method `perform_async_tx_rx()` should be used to start all…
/openthread-latest/third_party/mbedtls/repo/docs/architecture/
Dpsa-shared-memory.md134 …ill access buffers. Therefore the only possible protection at this layer method is to ensure that …
388 …on of copying, the simplest method of validation we can implement is careful code review. This is …
460 * Performance - Does the test method perform well? Will it cause significant slowdown to CI jobs?
Dpsa-storage-resilience.md534 In addition, have at least one positive test case for each creation method other than import, to en…
/openthread-latest/src/cli/
DREADME_DATASET.md14 In production Thread networks, the correct method to write/change Operational Datasets is via a [Co…
DREADME.md425 If a commissioner is connected using the ephemeral key and is currently active, calling this method
/openthread-latest/third_party/mbedtls/repo/docs/
Dpsa-driver-example-and-guide.md3 … implemented. As a result, the deliverables for writing a driver and the method for integrating a …
/openthread-latest/doc/
DDoxyfile.in2242 # dependency graph for every global function or class method.
2253 # dependency graph for every global function or class method.
/openthread-latest/third_party/mbedtls/repo/docs/proposed/
Dpsa-driver-interface.md1012 …ut_size`; in this case the core should call the driver's `"add_entropy"` method to supply at least…