text stringlengths 9 39.2M | dir stringlengths 25 226 | lang stringclasses 163
values | created_date timestamp[s] | updated_date timestamp[s] | repo_name stringclasses 751
values | repo_full_name stringclasses 752
values | star int64 1.01k 183k | len_tokens int64 1 18.5M |
|---|---|---|---|---|---|---|---|---|
```objective-c
/*
* Organisation (CSIRO) ABN 41 687 119 230.
*
*
* Generate memory regions from devicetree nodes.
*/
#ifndef ZEPHYR_INCLUDE_LINKER_DEVICETREE_REGIONS_H_
#define ZEPHYR_INCLUDE_LINKER_DEVICETREE_REGIONS_H_
#include <zephyr/devicetree.h>
#include <zephyr/sys/util.h>
#include <zephyr/toolchain.h>
/... | /content/code_sandbox/include/zephyr/linker/devicetree_regions.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,483 |
```linker script
/*
*
*/
#ifdef CONFIG_USERSPACE
/* During LINKER_KOBJECT_PREBUILT and LINKER_ZEPHYR_PREBUILT,
* space needs to be reserved for the rodata that will be
* produced by gperf during the final stages of linking.
* The alignment and size are produced by
* scripts/build/gen_kobject_placeholders.p... | /content/code_sandbox/include/zephyr/linker/kobject-rom.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 417 |
```objective-c
/*
*/
/**
* @file
* @brief USB-C Device APIs
*
* This file contains the USB-C Device APIs.
*/
#ifndef ZEPHYR_INCLUDE_USBC_H_
#define ZEPHYR_INCLUDE_USBC_H_
#include <zephyr/types.h>
#include <zephyr/device.h>
#include <zephyr/drivers/usb_c/usbc_tcpc.h>
#include <zephyr/drivers/usb_c/usbc_vbus.h>... | /content/code_sandbox/include/zephyr/usb_c/usbc.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 3,682 |
```objective-c
/*
*
*/
/*
* DESCRIPTION
* Platform independent set of macros for creating a memory segment for
* aggregating data that shall be kept in the elf file but not in the binary.
*/
#ifndef ZEPHYR_INCLUDE_LINKER_LINKER_DEVNULL_H_
#if defined(CONFIG_LINKER_DEVNULL_MEMORY)
#if defined(CONFIG_XIP)
#if (... | /content/code_sandbox/include/zephyr/linker/linker-devnull.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 527 |
```linker script
/* Empty file */
``` | /content/code_sandbox/include/zephyr/linker/app_smem_aligned.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 7 |
```linker script
/* following sections are obtained via 'ld --verbose' */
/* Stabs debugging sections. */
SECTION_PROLOGUE(.stab, 0,) { *(.stab) }
SECTION_PROLOGUE(.stabstr, 0,) { *(.stabstr) }
SECTION_PROLOGUE(.stab.excl, 0,) { *(.stab.excl) }
SECTION_PROLOGUE(.stab.exclstr, 0,) { *... | /content/code_sandbox/include/zephyr/linker/debug-sections.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 879 |
```objective-c
/*
*
*/
/*
* DESCRIPTION
* Platform independent, commonly used macros and defines related to linker
* script.
*
* This file may be included by:
* - Linker script files: for linker section declarations
* - C files: for external declaration of address or size of linker section
* - Assembly files... | /content/code_sandbox/include/zephyr/linker/linker-defs.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 2,435 |
```linker script
#ifdef CONFIG_THREAD_LOCAL_STORAGE
SECTION_DATA_PROLOGUE(tdata,,)
{
*(.tdata .tdata.* .gnu.linkonce.td.*);
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
SECTION_DATA_PROLOGUE(tbss,,)
{
*(.tbss .tbss.* .gnu.linkonce.tb.* .tcommon);
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
... | /content/code_sandbox/include/zephyr/linker/thread-local-storage.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 401 |
```linker script
/*
* Added after the very last allocation that might land in RAM to define the various
* end-of-used-memory symbols
*/
SECTION_PROLOGUE(.last_ram_section, (NOLOAD),)
{
#ifdef LAST_RAM_ALIGN
LAST_RAM_ALIGN
#endif
_image_ram_end = .;
_image_ram_size = _image_ram_end - _image_ram_start;
_e... | /content/code_sandbox/include/zephyr/linker/ram-end.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 110 |
```linker script
/*
*
*/
SECTION_PROLOGUE(_NOINIT_SECTION_NAME,(NOLOAD),)
{
/*
* This section is used for non-initialized objects that
* will not be cleared during the boot process.
*/
*(.noinit)
*(".noinit.*")
#ifdef CONFIG_USERSPACE
z_user_stacks_start = .;
*(.u... | /content/code_sandbox/include/zephyr/linker/common-noinit.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 155 |
```linker script
#include <zephyr/linker/common-rom/common-rom-kernel-devices.ld>
#include <zephyr/linker/common-rom/common-rom-ztest.ld>
#include <zephyr/linker/common-rom/common-rom-init.ld>
#include <zephyr/linker/common-rom/common-rom-net.ld>
#include <zephyr/linker/common-rom/common-rom-bt.ld>
#include <zeph... | /content/code_sandbox/include/zephyr/linker/common-rom.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 156 |
```linker script
/*
* Special section used by LLEXT if CONFIG_LLEXT_EXPORT_BUILTINS_BY_SLID
* is enabled. Declare this section to prevent it from being considered orphan.
*
* This section is used to temporarily save the exported symbols' names in the
* Zephyr ELF for post-processing, but it is not included ... | /content/code_sandbox/include/zephyr/linker/llext-sections.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 182 |
```linker script
/*
*
*/
__device_deps_start = .;
#ifdef LINKER_DEVICE_DEPS_PASS1
KEEP(*(SORT(.__device_deps_pass1*)));
#else
KEEP(*(SORT(.__device_deps_pass2*)));
#endif /* LINKER_DEVICE_DEPS_PASS1 */
__device_deps_end = .;
``` | /content/code_sandbox/include/zephyr/linker/device-deps.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 61 |
```objective-c
/*
*
*/
/**
* @file
* @brief Metware toolchain linker defs
*
* This header file defines the necessary macros used by the linker script for
* use with the metware linker.
*/
#ifndef ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_MWDT_H_
#define ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_MWDT_H_
/*
* mwdt linker doe... | /content/code_sandbox/include/zephyr/linker/linker-tool-mwdt.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 765 |
```linker script
#if LINKER_ZEPHYR_FINAL && CONFIG_ISR_TABLES_LOCAL_DECLARATION
/DISCARD/ :
{
KEEP(*(.vectors))
KEEP(*(_IRQ_VECTOR_TABLE_SECTION_SYMS))
}
#endif
``` | /content/code_sandbox/include/zephyr/linker/isr-local-drop-unused.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 46 |
```linker script
/*
*
*/
/* Empty file */
``` | /content/code_sandbox/include/zephyr/linker/app_smem_pinned_unaligned.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 8 |
```linker script
/*
*
*/
/* This creates a special section which is not included by the final binary,
* instead it is consumed by the gen_isr_tables.py script.
*
* What we create here is a data structure:
*
* struct {
* uint32_t num_vectors; <- typically CONFIG_NUM_IRQS
* struct _isr_list isrs[]; <- Usu... | /content/code_sandbox/include/zephyr/linker/intlist.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 321 |
```linker script
#include <zephyr/linker/iterable_sections.h>
#if defined(CONFIG_NETWORKING)
#ifndef NETWORK_RAM_SECTIONS
#define NETWORK_RAM_SECTIONS \
ITERABLE_SECTION_RAM(net_if, Z_LINK_ITERABLE_SUBALIGN) \
ITERABLE_SECTION_RAM(net_if_dev, Z_LINK_ITERABLE_SUBALIGN) \
ITERABLE_SECTION_RAM(net_l2, Z_LINK_ITERABLE... | /content/code_sandbox/include/zephyr/linker/common-ram.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,303 |
```objective-c
/*
*
*/
/**
* @file
* @brief Definitions of various linker Sections.
*
* Linker Section declarations used by linker script, C files and Assembly
* files.
*/
#ifndef ZEPHYR_INCLUDE_LINKER_SECTIONS_H_
#define ZEPHYR_INCLUDE_LINKER_SECTIONS_H_
#define _TEXT_SECTION_NAME text
#define _RODATA_SECTI... | /content/code_sandbox/include/zephyr/linker/sections.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,191 |
```linker script
#ifdef CONFIG_USERSPACE
/* We need to reserve room for the gperf generated hash functions.
* Fortunately, unlike the data tables, the size of the code is
* reasonably predictable.
*
* The linker will error out complaining that the location pointer
* is moving backwards if the reserved room ... | /content/code_sandbox/include/zephyr/linker/kobject-text.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 331 |
```objective-c
/* Macros for tagging symbols and putting them in the correct sections. */
/*
*
*/
#ifndef ZEPHYR_INCLUDE_LINKER_SECTION_TAGS_H_
#define ZEPHYR_INCLUDE_LINKER_SECTION_TAGS_H_
#include <zephyr/toolchain.h>
#if !defined(_ASMLANGUAGE)
#include <zephyr/linker/sections.h>
#define __noinit __in_sectio... | /content/code_sandbox/include/zephyr/linker/section_tags.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,122 |
```linker script
/*
*
*/
#if defined (CONFIG_CPP)
SECTION_PROLOGUE(.gcc_except_table,,ONLY_IF_RO)
{
*(.gcc_except_table .gcc_except_table.*)
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#if defined (CONFIG_CPP_EXCEPTIONS)
SECTION_PROLOGUE(.eh_frame_hdr,,)
{
*(.eh_frame_hdr)
} GROUP_ROM_LINK_IN(RAMABL... | /content/code_sandbox/include/zephyr/linker/cplusplus-rom.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 162 |
```linker script
/*
*
*/
/* Empty file */
``` | /content/code_sandbox/include/zephyr/linker/app_smem_pinned_aligned.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 9 |
```linker script
/*
* This hackish way of including files is due to CMake issues:
* path_to_url
* path_to_url
*
* When using the "Unix Makefiles" generator, CMake simply
* greps for "#include" to generate dependency list.
* So if doing it normally, both files are being included
* in the dependency list. Th... | /content/code_sandbox/include/zephyr/linker/app_smem.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 325 |
```linker script
/*
*
*/
#ifdef CONFIG_USERSPACE
#ifdef CONFIG_GEN_PRIV_STACKS
SECTION_DATA_PROLOGUE(priv_stacks_noinit,(NOLOAD),)
{
z_priv_stacks_ram_start = .;
/* During LINKER_KOBJECT_PREBUILT and LINKER_ZEPHYR_PREBUILT,
* space needs to be reserved for the rodata that will be
* produced by gperf during ... | /content/code_sandbox/include/zephyr/linker/kobject-priv-stacks.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 471 |
```linker script
/*
* .rel.* are for relocation.
* These are being produced by compiler/linker.
* Specify these here so they are not considered orphan sections.
*/
SECTION_PROLOGUE(.rel.plt,,)
{
*(.rel.plt)
PROVIDE_HIDDEN (__rel_iplt_start = .);
*(.rel.iplt)
PROVIDE_HIDDEN (__rel_iplt_end = .);
}
S... | /content/code_sandbox/include/zephyr/linker/rel-sections.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 198 |
```objective-c
/*
*/
#ifndef INCLUDE_ZEPHYR_LINKER_ITERABLE_SECTIONS_H_
#define INCLUDE_ZEPHYR_LINKER_ITERABLE_SECTIONS_H_
/**
* @addtogroup iterable_section_apis
* @{
*/
#define Z_LINK_ITERABLE(struct_type) \
_CONCAT(_##struct_type, _list_start) = .; \
KEEP(*(SORT_BY_NAME(._##struct_type.static.*))); \
_CONC... | /content/code_sandbox/include/zephyr/linker/iterable_sections.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,212 |
```linker script
/* Empty file */
``` | /content/code_sandbox/include/zephyr/linker/app_smem_unaligned.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 6 |
```linker script
/*
*
*/
#ifdef CONFIG_USERSPACE
z_kobject_data_begin = .;
SECTION_DATA_PROLOGUE(kobject_data,,)
{
#if !defined(LINKER_ZEPHYR_PREBUILT) && \
!defined(LINKER_ZEPHYR_FINAL)
#ifdef CONFIG_DYNAMIC_OBJECTS
PROVIDE(_thread_idx_map = .);
. = . + CONFIG_MAX_THREAD_BYTES;
#endif
#endif /* !LINKER... | /content/code_sandbox/include/zephyr/linker/kobject-data.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 545 |
```objective-c
/*
*
*/
/**
* @file
* @brief Toolchain-agnostic linker defs
*
* This header file is used to automatically select the proper set of macro
* definitions (based on the toolchain) for the linker script.
*/
#ifndef ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_H_
#define ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_H_
#i... | /content/code_sandbox/include/zephyr/linker/linker-tool.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 178 |
```linker script
/*
*
*/
/*
* This hackish way of including files is due to CMake issues:
* path_to_url
* path_to_url
*
* When using the "Unix Makefiles" generator, CMake simply
* greps for "#include" to generate dependency list.
* So if doing it normally, both files are being included
* in the dependenc... | /content/code_sandbox/include/zephyr/linker/app_smem_pinned.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 331 |
```linker script
/*
*
*/
#if defined (CONFIG_CPP)
SECTION_DATA_PROLOGUE(.gcc_except_table,,ONLY_IF_RW)
{
*(.gcc_except_table .gcc_except_table.*)
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#if defined (CONFIG_CPP_EXCEPTIONS)
SECTION_PROLOGUE(.tm_clone_table,,)
{
KEEP (*(SORT_NONE(EXCLUDE_FILE (*... | /content/code_sandbox/include/zephyr/linker/cplusplus-ram.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 131 |
```linker script
#if !(LINKER_ZEPHYR_FINAL && CONFIG_ISR_TABLES_LOCAL_DECLARATION)
. = ALIGN(CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN);
KEEP(*(_IRQ_VECTOR_TABLE_SECTION_SYMS))
#endif
/*
* Some ARM platforms require this symbol to be placed after the IRQ vector
* table (like STM32F0). The symbol defined here is overriding... | /content/code_sandbox/include/zephyr/linker/irq-vector-table-section.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 99 |
```objective-c
/*
*
*/
/**
* @file
* @brief LLVM LLD linker defs
*
* This header file defines the necessary macros used by the linker script for
* use with the LLD linker.
*/
#ifndef ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_LLD_H_
#define ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_LLD_H_
#include <zephyr/linker/linker-tool-... | /content/code_sandbox/include/zephyr/linker/linker-tool-lld.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 507 |
```objective-c
/*
*
*/
/**
* @file
* @brief GCC toolchain linker defs
*
* This header file defines the necessary macros used by the linker script for
* use with the GCC linker.
*/
#ifndef ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_GCC_H_
#define ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_GCC_H_
#include <zephyr/kernel/mm.h>
... | /content/code_sandbox/include/zephyr/linker/linker-tool-gcc.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,647 |
```objective-c
/*
*
*/
#ifndef ZEPHYR_INCLUDE_LINKER_UTILS_H_
#define ZEPHYR_INCLUDE_LINKER_UTILS_H_
#include <stdbool.h>
/**
* @brief Check if address is in read only section.
*
* Note that this may return false if the address lies outside
* the compiler's default read only sections (e.g. .rodata
* section),... | /content/code_sandbox/include/zephyr/linker/utils.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 384 |
```linker script
/*
*
*/
SECTION_PROLOGUE(ztest,,)
{
Z_LINK_ITERABLE(ztest_expected_result_entry);
Z_LINK_ITERABLE(ztest_suite_node);
Z_LINK_ITERABLE(ztest_unit_test);
Z_LINK_ITERABLE(ztest_test_rule);
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
``` | /content/code_sandbox/include/zephyr/linker/common-rom/common-rom-ztest.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 64 |
```linker script
/*
*
*/
#include <zephyr/linker/iterable_sections.h>
ITERABLE_SECTION_ROM(intc_table, 4)
``` | /content/code_sandbox/include/zephyr/linker/common-rom/common-rom-interrupt-controllers.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 29 |
```linker script
#include <zephyr/linker/iterable_sections.h>
ITERABLE_SECTION_ROM(bt_l2cap_fixed_chan, Z_LINK_ITERABLE_SUBALIGN)
#if defined(CONFIG_BT_CLASSIC)
ITERABLE_SECTION_ROM(bt_l2cap_br_fixed_chan, Z_LINK_ITERABLE_SUBALIGN)
#endif
#if defined(CONFIG_BT_CONN)
ITERABLE_SECTION_ROM(bt_conn_cb, Z_LINK_ITERAB... | /content/code_sandbox/include/zephyr/linker/common-rom/common-rom-bt.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 302 |
```linker script
#include <zephyr/linker/iterable_sections.h>
ITERABLE_SECTION_ROM(tracing_backend, Z_LINK_ITERABLE_SUBALIGN)
SECTION_DATA_PROLOGUE(zephyr_dbg_info,,)
{
KEEP(*(".dbg_thread_info"));
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#ifdef CONFIG_SYMTAB
SECTION_PROLOGUE(symtab,,)
{
KEEP(*... | /content/code_sandbox/include/zephyr/linker/common-rom/common-rom-debug.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 121 |
```linker script
#include <zephyr/linker/iterable_sections.h>
#if defined(CONFIG_NET_SOCKETS)
ITERABLE_SECTION_ROM(net_socket_register, Z_LINK_ITERABLE_SUBALIGN)
#endif
#if defined(CONFIG_NET_L2_PPP)
ITERABLE_SECTION_ROM(ppp_protocol_handler, Z_LINK_ITERABLE_SUBALIGN)
#endif
#if defined(CONFIG_DNS_SD)
ITERABLE_S... | /content/code_sandbox/include/zephyr/linker/common-rom/common-rom-net.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 198 |
```linker script
#include <zephyr/linker/iterable_sections.h>
#if defined(CONFIG_LOG_FMT_SECTION_STRIP) && defined(DEVNULL_REGION)
SECTION_PROLOGUE(log_strings,(COPY),SUBALIGN(Z_LINK_ITERABLE_SUBALIGN))
{
Z_LINK_ITERABLE(log_strings);
} GROUP_ROM_LINK_IN(DEVNULL_REGION, DEVNULL_REGION)
#else
ITERABLE_SECTION_RO... | /content/code_sandbox/include/zephyr/linker/common-rom/common-rom-logging.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 138 |
```linker script
#include <zephyr/linker/iterable_sections.h>
SECTION_PROLOGUE(initlevel,,)
{
/*
* link in initialization objects for all objects that are
* automatically initialized by the kernel; the objects are
* sorted in the order they will be initialized (i.e. ordered
* by level, sorted by prior... | /content/code_sandbox/include/zephyr/linker/common-rom/common-rom-kernel-devices.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 937 |
```linker script
#ifdef CONFIG_STATIC_INIT_GNU
SECTION_PROLOGUE(_CTOR_SECTION_NAME,,)
{
/*
* The compiler fills the constructor pointers table below,
* hence symbol __CTOR_LIST__ must be aligned on word
* boundary. To align with the C++ standard, the first element
* of the array contains the number of... | /content/code_sandbox/include/zephyr/linker/common-rom/common-rom-init.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 778 |
```objective-c
/*
*
*/
#ifndef ZEPHYR_INCLUDE_TRACING_TRACING_FORMAT_H
#define ZEPHYR_INCLUDE_TRACING_TRACING_FORMAT_H
#include <zephyr/toolchain/common.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Tracing format APIs
* @defgroup subsys_tracing_format_apis Tracing format APIs
* @ingroup subsys_tracin... | /content/code_sandbox/include/zephyr/tracing/tracing_format.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 514 |
```linker script
#include <zephyr/linker/iterable_sections.h>
#if defined(CONFIG_EC_HOST_CMD)
ITERABLE_SECTION_ROM(ec_host_cmd_handler, Z_LINK_ITERABLE_SUBALIGN)
#endif
#if defined(CONFIG_SETTINGS)
ITERABLE_SECTION_ROM(settings_handler_static, Z_LINK_ITERABLE_SUBALIGN)
#endif
#if defined(CONFIG_SENSING)
ITERABLE... | /content/code_sandbox/include/zephyr/linker/common-rom/common-rom-misc.ld | linker script | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 500 |
```objective-c
/*
*
*/
#ifndef ZEPHYR_INCLUDE_TRACING_SYSCALL_H_
#define ZEPHYR_INCLUDE_TRACING_SYSCALL_H_
#if defined CONFIG_SEGGER_SYSTEMVIEW
#include "tracing_sysview_syscall.h"
#elif defined CONFIG_TRACING_TEST
#include "tracing_test_syscall.h"
#else
/**
* @brief Syscall Tracing APIs
* @defgroup subsys_traci... | /content/code_sandbox/include/zephyr/tracing/tracing_syscall.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 290 |
```objective-c
/*
*
*/
#ifndef ZEPHYR_INCLUDE_TRACING_TRACING_MACROS_H_
#define ZEPHYR_INCLUDE_TRACING_TRACING_MACROS_H_
#include <zephyr/sys/util_macro.h>
#if !defined(CONFIG_TRACING) && !defined(__DOXYGEN__)
#define SYS_PORT_TRACING_FUNC(type, func, ...) do { } while (false)
#define SYS_PORT_TRACING_FUNC_ENTER(t... | /content/code_sandbox/include/zephyr/tracing/tracing_macros.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 3,391 |
```objective-c
/*
*
*/
#ifndef ZEPHYR_INCLUDE_TRACING_TRACKING_H_
#define ZEPHYR_INCLUDE_TRACING_TRACKING_H_
#include <zephyr/kernel.h>
#include <zephyr/kernel_structs.h>
#if defined(CONFIG_TRACING_OBJECT_TRACKING) || defined(__DOXYGEN__)
/**
* @brief Object tracking
*
* Object tracking provides lists to kernel... | /content/code_sandbox/include/zephyr/tracing/tracking.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,325 |
```objective-c
/** @file
* @brief Network interface promiscuous mode support
*
* An API for applications to start listening network traffic.
* This requires support from network device driver and from application.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_PROMISCUOUS_H_
#define ZEPHYR_INCLUDE_NET_PROMISCUOUS_H_
/... | /content/code_sandbox/include/zephyr/net/promiscuous.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 478 |
```objective-c
/*
*
*/
/**
* @file
* @brief API for controlling generic network association routines on network devices that
* support it.
*/
#ifndef ZEPHYR_INCLUDE_CONN_MGR_CONNECTIVITY_H_
#define ZEPHYR_INCLUDE_CONN_MGR_CONNECTIVITY_H_
#include <zephyr/device.h>
#include <zephyr/net/net_if.h>
#include <zephy... | /content/code_sandbox/include/zephyr/net/conn_mgr_connectivity.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 2,521 |
```objective-c
/*
*
*/
/**
* @file
* @brief IEEE 802.15.4 native L2 stack public header
*
* @note All references to the standard in this file cite IEEE 802.15.4-2020.
*/
#ifndef ZEPHYR_INCLUDE_NET_IEEE802154_H_
#define ZEPHYR_INCLUDE_NET_IEEE802154_H_
#include <limits.h>
#include <zephyr/net/net_l2.h>
#includ... | /content/code_sandbox/include/zephyr/net/ieee802154.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 3,489 |
```objective-c
/** @file
* @brief Loopback control interface
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_LOOPBACK_H_
#define ZEPHYR_INCLUDE_NET_LOOPBACK_H_
#ifdef __cplusplus
extern "C" {
#endif
#ifdef CONFIG_NET_LOOPBACK_SIMULATE_PACKET_DROP
/**
* @brief Set the packet drop rate
*
* @param[in] ratio Value between... | /content/code_sandbox/include/zephyr/net/loopback.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 176 |
```objective-c
/*
*
*/
#ifndef ZEPHYR_INCLUDE_TRACING_TRACING_H_
#define ZEPHYR_INCLUDE_TRACING_TRACING_H_
#include <zephyr/kernel.h>
#include "tracking.h"
#if defined CONFIG_SEGGER_SYSTEMVIEW
#include "tracing_sysview.h"
#elif defined CONFIG_TRACING_CTF
#include "tracing_ctf.h"
#elif defined CONFIG_TRACING_TEST
#... | /content/code_sandbox/include/zephyr/tracing/tracing.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 13,621 |
```objective-c
/** @file
* @brief Routines for network subsystem initialization.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_NET_CONFIG_H_
#define ZEPHYR_INCLUDE_NET_NET_CONFIG_H_
#include <zephyr/types.h>
#include <zephyr/device.h>
#include <zephyr/net/net_if.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief ... | /content/code_sandbox/include/zephyr/net/net_config.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 695 |
```objective-c
/*
*
*/
/**
* @file
* @brief CoAP Events code public header
*/
#ifndef ZEPHYR_INCLUDE_NET_COAP_MGMT_H_
#define ZEPHYR_INCLUDE_NET_COAP_MGMT_H_
#include <zephyr/net/net_mgmt.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief CoAP Manager Events
* @defgroup coap_mgmt CoAP Manager Events
* ... | /content/code_sandbox/include/zephyr/net/coap_mgmt.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 588 |
```objective-c
/*
*
*/
/** @file
* @brief DHCPv6 client
*/
#ifndef ZEPHYR_INCLUDE_NET_DHCPV6_H_
#define ZEPHYR_INCLUDE_NET_DHCPV6_H_
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief DHCPv6
* @defgroup dhcpv6 DHCPv6
* @since 3.5
* @version 0.8.0
* @ingroup networking
* @{
*/
/** @cond INTERNAL_HIDDEN... | /content/code_sandbox/include/zephyr/net/dhcpv6.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 737 |
```objective-c
/*
*
*/
/**
* @file
* @brief Public functions for the Precision Time Protocol time specification.
*
* References are to version 2019 of IEEE 1588, ("PTP")
* and version 2020 of IEEE 802.1AS ("gPTP").
*/
#ifndef ZEPHYR_INCLUDE_NET_PTP_TIME_H_
#define ZEPHYR_INCLUDE_NET_PTP_TIME_H_
/**
* @brief... | /content/code_sandbox/include/zephyr/net/ptp_time.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,984 |
```objective-c
/*
*
*/
/**
* @file
* @brief Representation of nanosecond resolution elapsed time and timestamps in
* the network stack.
*
* Inspired by
* path_to_url and
* path_to_url
*
* @defgroup net_time Network time representation.
* @since 3.5
* @version 0.1.0
* @ingroup networking
* @{
*/
#ifnde... | /content/code_sandbox/include/zephyr/net/net_time.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,204 |
```objective-c
/**
* @file
*
* @brief Public APIs for Ethernet PHY drivers.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_DRIVERS_PHY_H_
#define ZEPHYR_INCLUDE_DRIVERS_PHY_H_
/**
* @brief Ethernet PHY Interface
* @defgroup ethernet_phy Ethernet PHY Interface
* @since 2.7
* @version 0.8.0
* @ingroup networking
* @{
*... | /content/code_sandbox/include/zephyr/net/phy.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,542 |
```objective-c
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_SOCKET_POLL_H_
#define ZEPHYR_INCLUDE_NET_SOCKET_POLL_H_
/* Setting for pollfd to avoid circular inclusion */
/**
* @brief BSD Sockets compatible API
* @defgroup bsd_sockets BSD Sockets compatible API
* @ingroup networking
* @{
*/
#ifdef __cplusplus
extern "C... | /content/code_sandbox/include/zephyr/net/socket_poll.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 163 |
```objective-c
/*
*
*/
/**
* @file
* @brief API for defining conn_mgr connectivity implementations (allowing ifaces to be used with
* conn_mgr_connectivity).
*/
#ifndef ZEPHYR_INCLUDE_CONN_MGR_CONNECTIVITY_IMPL_H_
#define ZEPHYR_INCLUDE_CONN_MGR_CONNECTIVITY_IMPL_H_
#include <zephyr/device.h>
#include <zephyr/... | /content/code_sandbox/include/zephyr/net/conn_mgr_connectivity_impl.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 2,424 |
```objective-c
/*
*
*/
/**
* @file
* @brief Public API for network L2 interface
*/
#ifndef ZEPHYR_INCLUDE_NET_NET_L2_H_
#define ZEPHYR_INCLUDE_NET_NET_L2_H_
#include <zephyr/device.h>
#include <zephyr/net/buf.h>
#include <zephyr/net/capture.h>
#include <zephyr/sys/iterable_sections.h>
#ifdef __cplusplus
extern... | /content/code_sandbox/include/zephyr/net/net_l2.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,113 |
```objective-c
/*
*
*/
/** @file mqtt_sn.h
*
* @brief MQTT-SN Client Implementation
*
* @details
* MQTT-SN Client's Application interface is defined in this header.
* Targets protocol version 1.2.
*
* @defgroup mqtt_sn_socket MQTT-SN Client library
* @since 3.3
* @version 0.1.0
* @ingroup networking
* @{... | /content/code_sandbox/include/zephyr/net/mqtt_sn.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 2,906 |
```objective-c
/*
*
*/
/**
* @file
* @brief socket types definitionis
*/
#ifndef ZEPHYR_INCLUDE_NET_SOCKET_TYPES_H_
#define ZEPHYR_INCLUDE_NET_SOCKET_TYPES_H_
/**
* @brief BSD Sockets compatible API
* @defgroup bsd_sockets BSD Sockets compatible API
* @ingroup networking
* @{
*/
#include <zephyr/types.h>
... | /content/code_sandbox/include/zephyr/net/socket_types.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 266 |
```objective-c
/*
*
*/
/**
* @file
* @brief IEEE 802.11 protocol and general Wi-Fi definitions.
*/
/**
* @brief Wi-Fi Management API.
* @defgroup wifi_mgmt Wi-Fi Management
* @since 1.12
* @version 0.8.0
* @ingroup networking
* @{
*/
#ifndef ZEPHYR_INCLUDE_NET_WIFI_H_
#define ZEPHYR_INCLUDE_NET_WIFI_H_
... | /content/code_sandbox/include/zephyr/net/wifi.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 4,186 |
```objective-c
/*
* Lukasz Majewski <lukma@denx.de>
*/
/** @file
* @brief DSA definitions and handlers
*/
#ifndef ZEPHYR_INCLUDE_NET_DSA_H_
#define ZEPHYR_INCLUDE_NET_DSA_H_
#include <zephyr/device.h>
#include <zephyr/net/net_if.h>
/**
* @brief DSA definitions and helpers
* @defgroup DSA Distrib... | /content/code_sandbox/include/zephyr/net/dsa.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,767 |
```objective-c
/*
*
*/
/** @file
* @brief Definitions for IEEE 802.3, Section 2 MII compatible PHY transceivers
*/
#ifndef ZEPHYR_INCLUDE_NET_MII_H_
#define ZEPHYR_INCLUDE_NET_MII_H_
/**
* @brief Ethernet MII (media independent interface) functions
* @defgroup ethernet_mii Ethernet MII Support Functions
* @si... | /content/code_sandbox/include/zephyr/net/mii.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,837 |
```objective-c
/*
*
*/
/**
* @file
* @brief Virtual Interface Management interface public header
*/
#ifndef ZEPHYR_INCLUDE_NET_VIRTUAL_MGMT_H_
#define ZEPHYR_INCLUDE_NET_VIRTUAL_MGMT_H_
#include <zephyr/net/virtual.h>
#include <zephyr/net/net_mgmt.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Virtua... | /content/code_sandbox/include/zephyr/net/virtual_mgmt.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 647 |
```objective-c
/** @file
* @brief Network packet capture definitions
*
* Definitions for capturing network packets.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_CAPTURE_H_
#define ZEPHYR_INCLUDE_NET_CAPTURE_H_
#include <zephyr/kernel.h>
#include <zephyr/device.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief... | /content/code_sandbox/include/zephyr/net/capture.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 2,364 |
```objective-c
/*
*
*/
/** @file
*
* @brief Utility functions to be used by the Wi-Fi subsystem.
*/
#ifndef ZEPHYR_INCLUDE_NET_WIFI_UTILS_H_
#define ZEPHYR_INCLUDE_NET_WIFI_UTILS_H_
#ifdef __cplusplus
extern "C" {
#endif
/**
* @addtogroup wifi_mgmt
* @{
*/
/**
* @name Wi-Fi utility functions.
*
* Utilit... | /content/code_sandbox/include/zephyr/net/wifi_utils.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,185 |
```objective-c
/*
*
*/
/**
* @file
* @brief Public API for network interface
*/
#ifndef ZEPHYR_INCLUDE_NET_NET_IF_H_
#define ZEPHYR_INCLUDE_NET_NET_IF_H_
/**
* @brief Network Interface abstraction layer
* @defgroup net_if Network Interface abstraction layer
* @since 1.5
* @version 1.0.0
* @ingroup networki... | /content/code_sandbox/include/zephyr/net/net_if.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 23,229 |
```objective-c
/*
*
*/
/**
* @file
* @brief IEEE 802.15.4 Management interface public header
*
* @note All references to the standard in this file cite IEEE 802.15.4-2020.
*/
#ifndef ZEPHYR_INCLUDE_NET_IEEE802154_MGMT_H_
#define ZEPHYR_INCLUDE_NET_IEEE802154_MGMT_H_
#include <zephyr/net/ieee802154.h>
#include... | /content/code_sandbox/include/zephyr/net/ieee802154_mgmt.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 2,930 |
```objective-c
/** @file
* @brief NET_MGMT socket definitions.
*
* Definitions for NET_MGMT socket support.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_SOCKET_NET_MGMT_H_
#define ZEPHYR_INCLUDE_NET_SOCKET_NET_MGMT_H_
#include <zephyr/types.h>
#include <zephyr/net/net_ip.h>
#include <zephyr/net/net_if.h>
#include <ze... | /content/code_sandbox/include/zephyr/net/socket_net_mgmt.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 634 |
```objective-c
/** @file
* @brief Wi-Fi Network manager API
*
* This file contains the Wi-Fi network manager API. These APIs are used by the
* any network management application to register as a Wi-Fi network manager.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_ZEPHYR_NET_WIFI_NM_H_
#define ZEPHYR_INCLUDE_ZEPHYR_NET_WIF... | /content/code_sandbox/include/zephyr/net/wifi_nm.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 991 |
```objective-c
/*
*
*/
/**
* @file
*
* @brief CoAP implementation for Zephyr.
*/
#ifndef ZEPHYR_INCLUDE_NET_COAP_H_
#define ZEPHYR_INCLUDE_NET_COAP_H_
/**
* @brief COAP library
* @defgroup coap COAP Library
* @since 1.10
* @version 0.8.0
* @ingroup networking
* @{
*/
#include <zephyr/types.h>
#include ... | /content/code_sandbox/include/zephyr/net/coap.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 9,725 |
```objective-c
/*
*
*/
/**
* @file
* @brief Definitions for IEEE 802.3 management interface
*/
#ifndef ZEPHYR_INCLUDE_NET_MDIO_H_
#define ZEPHYR_INCLUDE_NET_MDIO_H_
/**
* @brief Definitions for IEEE 802.3 management interface
* @defgroup ethernet_mdio IEEE 802.3 management interface
* @since 3.5
* @version ... | /content/code_sandbox/include/zephyr/net/mdio.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 2,518 |
```objective-c
/** @file
* @brief Network core definitions
*
* Definitions for networking support.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_NET_CORE_H_
#define ZEPHYR_INCLUDE_NET_NET_CORE_H_
#include <stdbool.h>
#include <string.h>
#include <zephyr/logging/log.h>
#include <zephyr/sys/__assert.h>
#include <zephyr... | /content/code_sandbox/include/zephyr/net/net_core.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,055 |
```objective-c
/*
*
*/
/**
* @file
* @brief WiFi L2 stack public header
*/
#ifndef ZEPHYR_INCLUDE_NET_WIFI_MGMT_H_
#define ZEPHYR_INCLUDE_NET_WIFI_MGMT_H_
#include <zephyr/net/net_mgmt.h>
#include <zephyr/net/wifi.h>
#include <zephyr/net/ethernet.h>
#include <zephyr/net/offloaded_netdev.h>
#ifdef __cplusplus
e... | /content/code_sandbox/include/zephyr/net/wifi_mgmt.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 10,330 |
```objective-c
/*
*
*/
/**
* @file
* @brief This file extends interface of ieee802154_radio.h for OpenThread.
*/
#ifndef ZEPHYR_INCLUDE_NET_IEEE802154_RADIO_OPENTHREAD_H_
#define ZEPHYR_INCLUDE_NET_IEEE802154_RADIO_OPENTHREAD_H_
#include <zephyr/net/ieee802154_radio.h>
/**
* OpenThread specific capabilities ... | /content/code_sandbox/include/zephyr/net/ieee802154_radio_openthread.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,463 |
```objective-c
/*
*
*/
/**
* @file
* @brief Public functions for the Precision Time Protocol.
*
* References are to version 2019 of IEEE 1588, ("PTP")
*/
#ifndef ZEPHYR_INCLUDE_NET_PTP_H_
#define ZEPHYR_INCLUDE_NET_PTP_H_
/**
* @brief Precision Time Protocol (PTP) support
* @defgroup ptp PTP support
* @sin... | /content/code_sandbox/include/zephyr/net/ptp.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 214 |
```objective-c
/*
*
*/
/** @file
* @brief mDNS responder API
*
* This file contains the mDNS responder API. These APIs are used by the
* to register mDNS records.
*/
#ifndef ZEPHYR_INCLUDE_NET_MDNS_RESPONDER_H_
#define ZEPHYR_INCLUDE_NET_MDNS_RESPONDER_H_
#include <stddef.h>
#include <zephyr/net/dns_sd.h>
/*... | /content/code_sandbox/include/zephyr/net/mdns_responder.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 247 |
```objective-c
/** @file
* @brief DHCPv4 Client Handler
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_DHCPV4_H_
#define ZEPHYR_INCLUDE_NET_DHCPV4_H_
#include <zephyr/sys/slist.h>
#include <zephyr/types.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief DHCPv4
* @defgroup dhcpv4 DHCPv4
* @since 1.7
* @version ... | /content/code_sandbox/include/zephyr/net/dhcpv4.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,957 |
```objective-c
/*
*
*/
/**
* @file zperf.h
*
* @brief Zperf API
* @defgroup zperf Zperf API
* @since 3.3
* @version 0.8.0
* @ingroup networking
* @{
*/
#ifndef ZEPHYR_INCLUDE_NET_ZPERF_H_
#define ZEPHYR_INCLUDE_NET_ZPERF_H_
#include <zephyr/net/net_ip.h>
#include <zephyr/net/socket.h>
#ifdef __cplusplus
... | /content/code_sandbox/include/zephyr/net/zperf.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,149 |
```objective-c
/** @file
* @brief SocketCAN utilities.
*
* Utilities for SocketCAN support.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_SOCKETCAN_UTILS_H_
#define ZEPHYR_INCLUDE_NET_SOCKETCAN_UTILS_H_
#include <zephyr/drivers/can.h>
#include <zephyr/net/socketcan.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @b... | /content/code_sandbox/include/zephyr/net/socketcan_utils.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,016 |
```objective-c
/*
*
*/
/**
* @file
* @brief Network Management API public header
*/
#ifndef ZEPHYR_INCLUDE_NET_NET_MGMT_H_
#define ZEPHYR_INCLUDE_NET_NET_MGMT_H_
#include <zephyr/sys/__assert.h>
#include <zephyr/net/net_core.h>
#include <zephyr/net/net_event.h>
#include <zephyr/sys/iterable_sections.h>
#ifdef ... | /content/code_sandbox/include/zephyr/net/net_mgmt.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 3,176 |
```objective-c
/** @file
* @brief Network statistics
*
* Network statistics data. This should only be enabled when
* debugging as it consumes memory.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_NET_STATS_H_
#define ZEPHYR_INCLUDE_NET_NET_STATS_H_
#include <zephyr/types.h>
#include <zephyr/net/net_core.h>
#include <... | /content/code_sandbox/include/zephyr/net/net_stats.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 4,537 |
```objective-c
/*
*
*/
/**
* @file
* @brief Network Events code public header
*/
#ifndef ZEPHYR_INCLUDE_NET_NET_EVENT_H_
#define ZEPHYR_INCLUDE_NET_NET_EVENT_H_
#include <zephyr/net/net_ip.h>
#include <zephyr/net/hostname.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @addtogroup net_mgmt
* @{
*/
/** @co... | /content/code_sandbox/include/zephyr/net/net_event.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 3,885 |
```objective-c
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_LWM2M_PATH_H_
#define ZEPHYR_INCLUDE_NET_LWM2M_PATH_H_
/**
* @file lwm2m.h
*
* @brief LwM2M path helper macros
*
* @defgroup lwm2m_path_helpers LwM2M path helper macros
* @since 2.5
* @version 0.8.0
* @ingroup lwm2m_api
* @{
*/
/**
* @brief Generate LwM2... | /content/code_sandbox/include/zephyr/net/lwm2m_path.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 971 |
```objective-c
/** @file
* @brief DNS resolving library
*
* An API for applications to resolve a DNS name.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_DNS_RESOLVE_H_
#define ZEPHYR_INCLUDE_NET_DNS_RESOLVE_H_
#include <zephyr/kernel.h>
#include <zephyr/net/net_ip.h>
#include <zephyr/net/socket_poll.h>
#include <zephy... | /content/code_sandbox/include/zephyr/net/dns_resolve.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 4,826 |
```objective-c
/** @file
* @brief Network packet buffer descriptor API
*
* Network data is passed between different parts of the stack via
* net_buf struct.
*/
/*
*
*/
/* Data buffer API - used for all data to/from net */
#ifndef ZEPHYR_INCLUDE_NET_NET_PKT_H_
#define ZEPHYR_INCLUDE_NET_NET_PKT_H_
#include <z... | /content/code_sandbox/include/zephyr/net/net_pkt.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 16,857 |
```objective-c
/*
*
*/
/**
* @file
* @brief SNTP (Simple Network Time Protocol)
*/
#ifndef ZEPHYR_INCLUDE_NET_SNTP_H_
#define ZEPHYR_INCLUDE_NET_SNTP_H_
#include <zephyr/net/socket.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Simple Network Time Protocol API
* @defgroup sntp SNTP
* @since 1.10
*... | /content/code_sandbox/include/zephyr/net/sntp.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 807 |
```objective-c
/** @file
* @brief Offloaded network device iface API
*
* This is not to be included by the application.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_OFFLOADED_NETDEV_H_
#define ZEPHYR_INCLUDE_OFFLOADED_NETDEV_H_
#include <zephyr/kernel.h>
#include <zephyr/types.h>
#include <stdbool.h>
#include <zephyr/net... | /content/code_sandbox/include/zephyr/net/offloaded_netdev.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 527 |
```objective-c
/*
*
*/
/** @file tftp.h
*
* @brief TFTP Client Implementation
*
* @defgroup tftp_client TFTP Client library
* @since 2.3
* @version 0.1.0
* @ingroup networking
* @{
*/
#ifndef ZEPHYR_INCLUDE_NET_TFTP_H_
#define ZEPHYR_INCLUDE_NET_TFTP_H_
#include <zephyr/kernel.h>
#include <zephyr/net/sock... | /content/code_sandbox/include/zephyr/net/tftp.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 1,301 |
```objective-c
/** @file
* @brief Network packet filtering public header file
*
* The network packet filtering provides a mechanism for deciding the fate
* of an incoming or outgoing packet based on a set of basic rules.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_PKT_FILTER_H_
#define ZEPHYR_INCLUDE_NET_PKT_FILTER_... | /content/code_sandbox/include/zephyr/net/net_pkt_filter.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 4,522 |
```objective-c
/** @file
* @brief Buffer management.
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_BUF_H_
#define ZEPHYR_INCLUDE_NET_BUF_H_
#include <stddef.h>
#include <zephyr/types.h>
#include <zephyr/sys/util.h>
#include <zephyr/kernel.h>
#include <zephyr/sys/iterable_sections.h>
#ifdef __cplusplus
extern "C" {
#end... | /content/code_sandbox/include/zephyr/net/buf.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 19,964 |
```objective-c
/*
*
*/
/** @file
* @brief CAN bus socket API definitions.
*/
#ifndef ZEPHYR_INCLUDE_NET_CANBUS_H_
#define ZEPHYR_INCLUDE_NET_CANBUS_H_
#include <zephyr/types.h>
#include <zephyr/net/net_ip.h>
#include <zephyr/net/net_if.h>
#include <zephyr/drivers/can.h>
#ifdef __cplusplus
extern "C" {
#endif
... | /content/code_sandbox/include/zephyr/net/canbus.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 341 |
```objective-c
/*
*
*/
/**
* @file
* @brief Public API for offloading IP stack
*/
#ifndef ZEPHYR_INCLUDE_NET_NET_OFFLOAD_H_
#define ZEPHYR_INCLUDE_NET_NET_OFFLOAD_H_
/**
* @brief Network offloading interface
* @defgroup net_offload Network Offloading Interface
* @since 1.7
* @version 0.8.0
* @ingroup netwo... | /content/code_sandbox/include/zephyr/net/net_offload.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 3,901 |
```objective-c
/** @file
* @brief Hostname configuration definitions
*/
/*
*
*/
#ifndef ZEPHYR_INCLUDE_NET_HOSTNAME_H_
#define ZEPHYR_INCLUDE_NET_HOSTNAME_H_
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Network hostname configuration library
* @defgroup net_hostname Network Hostname Library
* @since 1... | /content/code_sandbox/include/zephyr/net/hostname.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 916 |
```objective-c
/*
*
*/
/**
* @file
* @brief API for monitoring network connections and interfaces.
*/
#ifndef ZEPHYR_INCLUDE_CONN_MGR_H_
#define ZEPHYR_INCLUDE_CONN_MGR_H_
#ifdef __cplusplus
extern "C" {
#endif
#if defined(CONFIG_NET_CONNECTION_MANAGER) || defined(__DOXYGEN__)
/**
* @brief Connection Manager... | /content/code_sandbox/include/zephyr/net/conn_mgr_monitor.h | objective-c | 2016-05-26T17:54:19 | 2024-08-16T18:09:06 | zephyr | zephyrproject-rtos/zephyr | 10,307 | 620 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.