Home
last modified time | relevance | path

Searched refs:library (Results 1 – 25 of 337) sorted by relevance

12345678910>>...14

/Zephyr-latest/modules/mbedtls/
DCMakeLists.txt53 # Add base library with files required by all drivers/backends.
58 ${ZEPHYR_CURRENT_MODULE_DIR}/library/aes.c
59 ${ZEPHYR_CURRENT_MODULE_DIR}/library/aesni.c
60 ${ZEPHYR_CURRENT_MODULE_DIR}/library/aria.c
61 ${ZEPHYR_CURRENT_MODULE_DIR}/library/asn1parse.c
62 ${ZEPHYR_CURRENT_MODULE_DIR}/library/asn1write.c
63 ${ZEPHYR_CURRENT_MODULE_DIR}/library/base64.c
64 ${ZEPHYR_CURRENT_MODULE_DIR}/library/bignum_core.c
65 ${ZEPHYR_CURRENT_MODULE_DIR}/library/bignum_mod_raw.c
66 ${ZEPHYR_CURRENT_MODULE_DIR}/library/bignum_mod.c
[all …]
/Zephyr-latest/subsys/ipc/ipc_service/lib/
DKconfig5 bool "RPMsg support library"
7 "RPMsg library"
10 bool "Static VRINGs support library"
12 "Static VRINGs library"
23 bool "icmsg IPC library"
26 Icmsg library
33 bool "icmsg IPC library with multi-endpoint functionality"
37 Multi-endpoint functionality for the icmsg library
/Zephyr-latest/modules/uoscore-uedhoc/
DKconfig5 bool "UOSCORE library"
10 This option enables the UOSCORE library.
15 bool "Debug logs in the uoscore library"
20 bool "UEDHOC library"
25 This option enables the UEDHOC library.
30 bool "Debug logs in the uedhoc library"
/Zephyr-latest/lib/libc/
DKconfig1 # C library
7 prompt "Require complete C library"
10 Select a C library implementation that provides a complete C library
24 Selected when the target has at least one C library that offers a
33 Selected when the target has support for the minimal C library
42 Selected when the target has support for the newlib C library
78 bool "Minimal C library"
88 Build with minimal C library.
91 bool "Picolibc library"
101 Build with picolibc library. The picolibc library is built as
[all …]
/Zephyr-latest/lib/runtime/
DKconfig9 Selected when the compiler supports compiler-rt runtime library.
12 prompt "Runtime library implementation"
18 Use libgcc as a runtime library.
24 Use LLVM compiler-rt as a runtime library.
/Zephyr-latest/doc/connectivity/networking/api/
Dhttp_client.rst13 The HTTP client library allows you to send HTTP requests and
14 parse HTTP responses. The library communicates over the sockets
18 The application must be responsible for creating a socket and passing it to the library.
19 Therefore, depending on the application's needs, the library can communicate over
25 The API of the HTTP client library has a single function.
47 If the server responds to the request, the library provides the response to the
49 As the library can provide the response in chunks, the application must be able
53 also provides information about whether the library expects to receive more data.
73 more information about the library usage.
Dtftp.rst6 Zephyr provides a simple TFTP client library that can enabled with
10 more information about the library usage.
Dnet_config.rst13 The network configuration library sets up networking devices in a
17 The following Kconfig options affect how configuration library will
20 .. csv-table:: Kconfig options for network configuration library
26 config library is not used for initialization and the application needs to
31 the config library Kconfig file :zephyr_file:`subsys/net/lib/config/Kconfig`
69 If :kconfig:option:`CONFIG_NET_CONFIG_AUTO_INIT` is set, then the configuration library
71 the library will call ``net_config_init()`` automatically and the application
74 If you want to use the network configuration library but without automatic
76 parameter can be used to give hints to the library about what kind of
/Zephyr-latest/lib/cpp/
DKconfig30 Adding this to your library's enablement Kconfig will force a minimum
81 bool "Require complete C++ standard library"
84 Indicates that a full C++ standard library is required, either by
86 library implementation.
91 Selected when the target has at least one C++ library that offers a
106 Build with the minimal C++ library provided by Zephyr.
108 The Zephyr minimal C++ library only provides a very limited subset
109 of the standard C++ library and is mainly intended for use with the
129 toolchain. Information about library can be found at
141 bool "External C++ standard library"
[all …]
/Zephyr-latest/lib/libc/common/
DKconfig51 bool "Common C library malloc implementation"
58 int "Size of the common C library malloc arena"
67 common C library malloc() implementation.
79 When using the minimal C library, the default is to have no
85 bool "Common C library calloc"
90 Enable the common C library trivial implementation of calloc,
94 bool "Common C library reallocarray"
99 Enable the common C library trivial implementation of
111 # of C11 threads and POSIX API can be abstracted out to a common library.
118 bool "Common C library remove"
/Zephyr-latest/samples/boards/nxp/adsp/number_crunching/
DREADME.rst2 :name: Number crunching using optimized library
10 This example demonstrates how to include a proprietary static library into the Zephyr build system.
11 The library is in an out of tree location.
13 To use this sample, with an out of tree library, one needs to define an environment variable
19 # Link with the external 3rd party library.
35 …that NatureDSP lib and headers can be found, calls the exact math functions from NatureDSP library.
37 If one wants to include a new backend it needs to create a new wrapper for that library or backend.
70 Proprietary library example!
108 Proprietary library example!
111 [Backend] NatureDSP library
[all …]
/Zephyr-latest/doc/develop/languages/c/
Dcommon_libc.rst3 Common C library code
6 Zephyr provides some C library functions that are designed to be used in
9 in the C library with code better suited for use in the Zephyr environment
25 The common C library internally uses the :ref:`kernel memory heap API
35 The default heap size for applications using the common C library is zero
36 (no heap). For other C library users, if there is an MMU present, then the
45 the common C library are thread safe and may be simultaneously called by
/Zephyr-latest/subsys/dsp/
DKconfig23 prompt "DSP library backend selection"
29 bool "Use the CMSIS-DSP library as the math backend"
33 Implement the various zephyr DSP functions using the CMSIS-DSP library. This feature
43 bool "Use the mwdt library as the math backend"
50 Implement the various zephyr DSP functions using the MWDT-DSP library. This feature
/Zephyr-latest/arch/arm/core/cortex_m/tz/
DCMakeLists.txt13 # an import library that consists of a relocatable file containing
14 # only a symbol table with the entry veneers. The library may be used
25 # Indicate that the entry veneers library file is created during linking of this firmware.
35 # Link the entry veneers library file with the Non-Secure Firmware that needs it.
/Zephyr-latest/samples/application_development/external_lib/
DREADME.rst4 Include an external static library into the Zephyr build system.
9 A simple example that demonstrates how to include an external static library
11 The demonstrates both how to build the external library using a different build
12 system and how to include the built static library.
/Zephyr-latest/drivers/input/
DKconfig.tsc_keys5 bool "STM32 TSC touch library"
10 Enable support for STM32 TSC touch library.
17 Size of the ring buffer for the STM32 TSC touch library. The size of this
/Zephyr-latest/subsys/mem_mgmt/
DKconfig5 bool "Memory Attributes management library"
8 Enable a small library to manage the memory regions defined in the DT
9 with a `zephyr,memory-attr` property. This library builds at build
/Zephyr-latest/cmake/modules/
DFindThreads.cmake13 # The threads library to use. Zephyr provides threads implementation and no
20 # The original implementation tries to find threads library using various
21 # methods (e.g. checking if pthread library is present or compiling example
39 # options. Nevertheless this library must exist, because third-party modules
/Zephyr-latest/modules/
DKconfig.open-amp12 This option enables the OpenAMP IPC library
17 string "OpenAMP library source path"
21 This option specifies the path to the source for the open-amp library
DKconfig.libmetal14 string "libmetal library source path"
18 This option specifies the path to the source for the libmetal library
/Zephyr-latest/cmake/linker/armlink/
Dlinker_libraries.cmake5 # Per default armclang (Arm Compiler 6) doesn't need explicit C library linking
6 # so we only need to set link order linking in case a custom C library is linked
/Zephyr-latest/subsys/net/lib/trickle/
DKconfig7 bool "Trickle library"
16 module-help = Enables Trickle library output debug messages
/Zephyr-latest/lib/posix/options/
DKconfig.c_lib_ext6 bool "POSIX general C library extension"
19 bool "Getopt long library support"
25 apart from shell this library is not thread safe. User can add support
/Zephyr-latest/tests/subsys/ipc/ipc_sessions/interoperability/
DKconfig22 bool "icmsg IPC library (old implementation)"
25 Icmsg library
/Zephyr-latest/cmake/toolchain/armclang/
DKconfig17 bool "ARM Compiler C library"
22 A reduced Zephyr minimal libc will be used for library functionality

12345678910>>...14