Home
last modified time | relevance | path

Searched refs:call (Results 1 – 25 of 71) sorted by relevance

123

/lib/lwip/lwip/src/netif/ppp/
A Dpppapi.c80 err = tcpip_api_call(pppapi_do_ppp_set_default, &PPPAPI_VAR_REF(msg).call); in pppapi_set_default()
114 err = tcpip_api_call(pppapi_do_ppp_set_notify_phase_callback, &PPPAPI_VAR_REF(msg).call); in pppapi_set_notify_phase_callback()
154 tcpip_api_call(pppapi_do_pppos_create, &PPPAPI_VAR_REF(msg).call); in pppapi_pppos_create()
199 tcpip_api_call(pppapi_do_pppoe_create, &PPPAPI_VAR_REF(msg).call); in pppapi_pppoe_create()
259 tcpip_api_call(pppapi_do_pppol2tp_create, &PPPAPI_VAR_REF(msg).call); in pppapi_pppol2tp_create()
293 err = tcpip_api_call(pppapi_do_ppp_connect, &PPPAPI_VAR_REF(msg).call); in pppapi_connect()
325 err = tcpip_api_call(pppapi_do_ppp_listen, &PPPAPI_VAR_REF(msg).call); in pppapi_listen()
358 err = tcpip_api_call(pppapi_do_ppp_close, &PPPAPI_VAR_REF(msg).call); in pppapi_close()
389 err = tcpip_api_call(pppapi_do_ppp_free, &PPPAPI_VAR_REF(msg).call); in pppapi_free()
422 err = tcpip_api_call(pppapi_do_ppp_ioctl, &PPPAPI_VAR_REF(msg).call); in pppapi_ioctl()
/lib/mbedtls/external/mbedtls/docs/architecture/psa-thread-safety/
A Dpsa-thread-safety.md57 … is no overlap between an output parameter of one call and an input or output parameter of another…
59 > * A call to `psa_destroy_key()` must not overlap with a concurrent call to any of the following f…
60 > - Any call where the same key identifier is a parameter to the call.
70 > * If one call returns `PSA_ERROR_ALREADY_EXISTS`, then the other call must succeed.
223 * Once finished, they call `psa_unregister_read_under_mutex`.
275 * For every API call, have a test which runs multiple copies of the call simultaneously.
352 1. Non-thread-safe drivers must not call the core.
353 2. Provide a new public API that drivers can safely call.
354 3. Make the dispatch layer public for drivers to call.
355 …s can call. Drivers providing entry points to these must not make a call to the core when handling…
[all …]
/lib/mbedtls/external/mbedtls/docs/architecture/testing/
A Ddriver-interface-test-strategy.md21call `psa_register_se_driver` with a structure that describes the driver. The structure mostly con…
34 * Make at least one failing call to `psa_register_se_driver` followed by a successful call.
39 For each API function that can lead to a driver call (more precisely, for each driver method call s…
52 For each API function that can lead to a driver call (more precisely, for each driver method call s…
55 * If the API function can take parameters that are invalid and must not reach the driver, call the …
60 For each API function that leads to a driver call, call it with parameters that cause a driver to b…
85 …sub>, between M<sub>1</sub> and M<sub>2</sub>, ..., after M<sub>n</sub>), call `mbedtls_psa_crypto…
92 …ssive storage states and replay each of them. Each `psa_its_xxx` function call is assumed to be at…
/lib/mbedtls/external/mbedtls/scripts/
A Dcommon.make50 ## Usage: $(call remove_enabled_options,PREPROCESSOR_INPUT)
54 ## $(call remove_enabled_options,MBEDTLS_FOO MBEDTLS_BAR)
85 # If the call to remove_enabled_options returns "control", the symbols
87 # If the auto-detection fails, the result of the call is empty and
89 …ifeq (control,$(call remove_enabled_options,control MBEDTLS_THREADING_C MBEDTLS_THREADING_PTHREAD))
/lib/lwip/lwip/src/api/
A Dtcpip.c478 tcpip_api_call(tcpip_api_call_fn fn, struct tcpip_api_call_data *call) in tcpip_api_call() argument
483 err = fn(call); in tcpip_api_call()
490 err_t err = sys_sem_new(&call->sem, 0); in tcpip_api_call()
500 TCPIP_MSG_VAR_REF(msg).msg.api_call.arg = call; in tcpip_api_call()
505 TCPIP_MSG_VAR_REF(msg).msg.api_call.sem = &call->sem; in tcpip_api_call()
512 sys_sem_free(&call->sem); in tcpip_api_call()
515 return call->err; in tcpip_api_call()
A Dnetifapi.c253 err = tcpip_api_call(netifapi_do_netif_add, &API_VAR_REF(msg).call); in netifapi_netif_add()
290 err = tcpip_api_call(netifapi_do_netif_set_addr, &API_VAR_REF(msg).call); in netifapi_netif_set_addr()
313 err = tcpip_api_call(netifapi_do_netif_common, &API_VAR_REF(msg).call); in netifapi_netif_common()
341 err = tcpip_api_call(netifapi_do_name_to_index, &API_VAR_REF(msg).call); in netifapi_netif_name_to_index()
369 err = tcpip_api_call(netifapi_do_index_to_name, &API_VAR_REF(msg).call); in netifapi_netif_index_to_name()
/lib/mbedtls/external/mbedtls/docs/
A Duse-psa-crypto.md14 **Application code:** when this option is enabled, you need to call
29 When it is enabled, `psa_xxx()` APIs are available and you must call
30 `psa_crypto_init()` before you call any other `psa_xxx()` function. Other
32 PSA Crypto but you're not required to call `psa_crypto_init()` before calling
37 exceptions). When it is enabled, you need to call `psa_crypto_init()` before
62 `MBEDTLS_USE_PSA_CRYPTO` is that the user promises to call `psa_crypto_init()`
65 as TLS 1.3, can be introduced with a requirement to call `psa_crypto_init()`.
125 that will call PSA to store the key and perform the operations.
A Dpsa-transition.md366 4. For a one-shot operation, call `mbedtls_cipher_crypt`. To pass the input in multiple parts, call
369 …s passed as a single input), the equivalent workflow with the PSA API is to call a single function:
398 For a one-shot operation, the PSA API allows you to call a single function:
509 2. Call `mbedtls_md_setup` to select the hash algorithm, with `hmac=0`. Then call `mbedtls_md_start…
519call [`psa_hash_finish`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/gro…
552 2. Call `mbedtls_md_setup` to select the hash algorithm, with `hmac=1`. Then call `mbedtls_md_hmac_…
560 2. Call `mbedtls_cipher_setup` to select the block cipher. Then call `mbedtls_md_cmac_starts` to se…
598 …c interface using an operation object with one function call for each input and one function call
611 …c interface using an operation object with one function call for each input and one function call
796 … `mbedtls_pk_parse_keyfile` and `mbedtls_pk_parse_public_keyfile`. Either call the legacy function…
[all …]
A D3.0-migration-guide.md106 The default reaction to a failed check was to call a function
195 to call that from application code. However if you do (or if you want to
371 to `mbedtls_rsa_init()`, to call `mbedtls_rsa_set_padding()` to set it.
409 Previously, the documentation didn't state explicitly if it was OK to call
411 the last call to `mbedtls_cipher_update()` — that is, without calling
412 `mbedtls_cipher_finish()` in-between. If you code was missing that call,
802 This affects users which call the PSK configuration APIs
814 remove all but the last call, so that only one call to _either_
970 This affects users who call `mbedtls_ssl_get_session()` or
973 Those users will now observe the second call to fail with
[all …]
A Dpsa-driver-example-and-guide.md16 …arty drivers. Operations that are completed within one step (one function call), such as verifying…
25 …pper, developers will have to manually edit the driver dispatch layer and call their driver's entr…
102 | | | | ├── foo_driver_transparent_xxx() //call to driver entry point
107 | | | | ├── bar_driver_transparent_xxx() //call to driver entry point
116 | | | | ├── baz_driver_opaque_xxx() //call to driver entry point
123 …if`. Within this block, each individual driver's compatibility checks and call to the entry point …
156call is placed within a check for `MBEDTLS_PSA_P256M_DRIVER_ENABLED`. p256-m only supports non-det…
A Dtls13-early-data.md44 its initial phase, would look completely similar but the call to
74 just after a call to mbedtls_ssl_setup() or mbedtls_ssl_session_reset()) would
/lib/mbedtls/external/mbedtls/tests/scripts/
A Dtest_zeroize.gdb25 # memory that is not accessed later in the program, so removing the call to
27 # inserting a test after a call to mbedtls_platform_zeroize() to check whether
29 # eliminate the mbedtls_platform_zeroize() call. If this does not occur, then
A Drun_demos.py15 returncode = subprocess.call([demo], **args)
/lib/
A Dtrace.c269 struct trace_call *call = &hdr->ftrace[rec]; in trace_list_calls() local
272 out->func = call->func * FUNC_SITE_SIZE; in trace_list_calls()
273 out->caller = call->caller * FUNC_SITE_SIZE; in trace_list_calls()
274 out->flags = call->flags; in trace_list_calls()
/lib/mbedtls/external/mbedtls/docs/architecture/psa-migration/
A Dmd-cipher-dispatch.md27 I want to know which functions to call and which feature macros to check,
80 … at this stage to make more code directly call `psa_xxx` functions. Rather, the goal is to make mo…
88call the PSA API instead of legacy APIs for cryptographic calculations. `MBEDTLS_USE_PSA_CRYPTO` o…
206 * must call PSA if called by a module in the PSA domain;
207 * must not call PSA (or must have a fallback) if their caller is not in the PSA domain and the PSA
222 * How to perform the operation (context type, which functions to call).
239 * When called from `psa_sign_hash` and other PSA functions, it must call the PSA hash accelerator i…
265 …accelerator. Then just call `mbedtls_sha256`, it's all there is, and it doesn't matter (from an AP…
297 * Mixed-domain code can call PSA code if it knows that `psa_crypto_init()` has been called, without…
537 … hash's block size, instead of looking up hash metadata in the info structure, call the PSA macros.
[all …]
/lib/lwip/lwip/src/include/lwip/priv/
A Dtcpip_priv.h110 typedef err_t (*tcpip_api_call_fn)(struct tcpip_api_call_data* call);
111 err_t tcpip_api_call(tcpip_api_call_fn fn, struct tcpip_api_call_data *call);
/lib/lwip/lwip/contrib/addons/ipv6_static_routing/
A DREADME38    address and target netif, the application can call ip6_get_gateway(..).
42 -- To fetch a pointer to the head of the table, the application can call 
/lib/mbedtls/external/mbedtls/docs/proposed/
A Dpsa-driver-interface.md482 * For a call to `psa_key_derivation_output_key()`:
488 * For a call to `psa_key_derivation_verify_key()`:
489 1. If the driver has a `"key_derivation_verify_key"` entry point, call it and stop.
492 * For a call to `psa_key_derivation_verify_bytes()`:
496 * For a call to `psa_key_derivation_output_bytes()`:
502 * For a call to `psa_key_derivation_output_key()` where the derived key is in a secure element, cal…
563 …sa_key_derivation_key_agreement()` as if it was a call to `psa_raw_key_agreement()` followed by a
855 Here is a suggested call sequence for entropy collection that leverages these flags:
960 … a random generation context. On the first call to `"add_entropy"`, this object has been initializ…
966call this function at any time. For example, to enforce prediction resistance, the core can call `…
[all …]
/lib/lzma/
A Dlzma.txt41 and call make to recompile it:
338 1) Single-call Decompressing
339 2) Multi-call State Decompressing (zlib-like interface)
350 Single-call Decompressing
403 Multi-call State Decompressing (zlib-like interface)
427 3) Init LzmaDec structure before any new LZMA stream. And call LzmaDec_DecodeToBuf in loop
464 Single-call Compression with callbacks
534 Single-call RAM->RAM Compression
537 Single-call RAM->RAM Compression is similar to Compression with callbacks,
592 So you don't need to catch CNewException, if you call COM interfaces of 7-Zip.
/lib/mbedtls/external/mbedtls/tests/suites/
A Dtest_suite_mps.data31 MPS Reader: Pausing, repeat single call without commit
34 MPS Reader: Pausing, repeat single call with commit
/lib/mbedtls/external/mbedtls/programs/psa/
A Dpsa_hash_demo.sh10 compute a SHA-256 hash of a test string using the one-shot API call
/lib/lwip/lwip/doc/
A Dppp.txt334 * The listen call is meant for future support of PPPoE and PPPoL2TP server
336 * session before initiating PPP itself. We need this call because there is
356 * You can call this function at anytime.
372 * dead state (i.e. disconnected). You need to call ppp_close() before.
400 do that *BUT* you should NEVER call pppos_connect(), pppos_listen() and
407 * Function to call for received data
487 you have to call ppp_connect(), this way you can configure the session before
/lib/mbedtls/external/mbedtls/scripts/mbedtls_dev/
A Dc_wrapper_generator.py170 call = '({})({})'.format(self._underlying_function_name(function),
173 out.write(' {};\n'.format(call))
177 out.write(' {} = {};\n'.format(ret_decl, call))
/lib/lwip/lwip/src/
A DFILES2 you use the lowel-level call-back/raw API.
/lib/lwip/lwip/src/include/netif/ppp/
A Dpppapi.h101 struct tcpip_api_call_data call; member

Completed in 55 milliseconds

123