/Zephyr-Core-3.7.0/subsys/net/lib/shell/ |
D | http.c | 35 struct http_resource_detail *detail = res->detail; in cmd_net_http() local 40 switch (detail->type) { in cmd_net_http() 60 if (IS_BIT_SET(detail->bitmask_of_supported_http_methods, i)) { in cmd_net_http()
|
/Zephyr-Core-3.7.0/tests/net/lib/http_server/common/src/ |
D | main.c | 13 static struct http_resource_detail detail[] = { variable 40 #define DETAIL(n) &detail[n] 41 #define RES(n) &detail[n] 86 zassert_equal(service_A.detail, DETAIL(0)); in ZTEST() 93 zassert_equal(service_B.detail, DETAIL(1)); in ZTEST() 100 zassert_equal(service_C.detail, DETAIL(2)); in ZTEST() 270 zassert_equal(res->detail, RES(0)); in ZTEST() 273 zassert_equal(res->detail, RES(1)); in ZTEST() 276 zassert_equal(res->detail, RES(5)); in ZTEST() 287 zassert_equal(res->detail, RES(2)); in ZTEST() [all …]
|
/Zephyr-Core-3.7.0/include/zephyr/net/http/ |
D | service.h | 38 void *detail; member 62 .detail = (void *)(_detail), \ 70 void *detail; member 86 .detail = (void *)(_detail), \
|
/Zephyr-Core-3.7.0/subsys/net/lib/http/ |
D | http_server_http1.c | 601 struct http_resource_detail *detail; in handle_http1_request() local 659 detail = get_resource_detail(client->url_buffer, in handle_http1_request() 661 if (detail == NULL) { in handle_http1_request() 665 client->current_detail = detail; in handle_http1_request() 699 detail = get_resource_detail(client->url_buffer, &path_len, false); in handle_http1_request() 700 if (detail != NULL) { in handle_http1_request() 701 detail->path_len = path_len; in handle_http1_request() 703 if (detail->type == HTTP_RESOURCE_TYPE_STATIC) { in handle_http1_request() 705 (struct http_resource_detail_static *)detail, in handle_http1_request() 711 } else if (detail->type == HTTP_RESOURCE_TYPE_STATIC_FS) { in handle_http1_request() [all …]
|
D | http_server_core.c | 280 struct http_resource_detail *detail; in client_release_resources() local 285 detail = resource->detail; in client_release_resources() 287 if (detail->type != HTTP_RESOURCE_TYPE_DYNAMIC) { in client_release_resources() 291 dynamic_detail = (struct http_resource_detail_dynamic *)detail; in client_release_resources() 663 struct http_resource_detail *detail; in skip_this() local 665 detail = (struct http_resource_detail *)resource->detail; in skip_this() 668 if (detail->type != HTTP_RESOURCE_TYPE_WEBSOCKET) { in skip_this() 672 if (detail->type == HTTP_RESOURCE_TYPE_WEBSOCKET) { in skip_this() 697 return resource->detail; in get_resource_detail() 705 return resource->detail; in get_resource_detail()
|
D | http_server_http2.c | 909 struct http_resource_detail *detail; in handle_http1_to_http2_upgrade() local 957 detail = get_resource_detail(client->url_buffer, &path_len, false); in handle_http1_to_http2_upgrade() 958 if (detail != NULL) { in handle_http1_to_http2_upgrade() 959 detail->path_len = path_len; in handle_http1_to_http2_upgrade() 961 if (detail->type == HTTP_RESOURCE_TYPE_STATIC) { in handle_http1_to_http2_upgrade() 963 (struct http_resource_detail_static *)detail, in handle_http1_to_http2_upgrade() 968 } else if (detail->type == HTTP_RESOURCE_TYPE_STATIC_FS) { in handle_http1_to_http2_upgrade() 970 (struct http_resource_detail_static_fs *)detail, frame, client); in handle_http1_to_http2_upgrade() 974 } else if (detail->type == HTTP_RESOURCE_TYPE_DYNAMIC) { in handle_http1_to_http2_upgrade() 976 (struct http_resource_detail_dynamic *)detail, in handle_http1_to_http2_upgrade() [all …]
|
/Zephyr-Core-3.7.0/include/zephyr/net/ |
D | net_pkt.h | 141 } detail; member 1170 return pkt->detail.stat; in net_pkt_stats_tick() 1175 return pkt->detail.count; in net_pkt_stats_tick_count() 1180 memset(&pkt->detail, 0, sizeof(pkt->detail)); in net_pkt_stats_tick_reset() 1186 if (pkt->detail.count >= NET_PKT_DETAIL_STATS_COUNT) { in net_pkt_set_stats_tick() 1188 pkt->detail.count, NET_PKT_DETAIL_STATS_COUNT); in net_pkt_set_stats_tick() 1192 pkt->detail.stat[pkt->detail.count++] = tick; in net_pkt_set_stats_tick()
|
/Zephyr-Core-3.7.0/doc/build/kconfig/ |
D | index.rst | 21 into detail on how Kconfig is used within the Zephyr project, and have some
|
/Zephyr-Core-3.7.0/.github/ISSUE_TEMPLATE/ |
D | 003_rfc-proposal.md | 37 This section is freeform - you should describe your change in as much detail
|
/Zephyr-Core-3.7.0/tests/arch/arm/arm_no_multithreading/ |
D | README.txt | 7 ARM Cortex-M targets. In detail the test verifies that
|
/Zephyr-Core-3.7.0/doc/project/ |
D | index.rst | 39 :ref:`project_roles` describes in detail the Zephyr project roles and associated permissions
|
/Zephyr-Core-3.7.0/tests/drivers/i2c/i2c_target_api/ |
D | README.txt | 21 In slightly more detail the test has these phases:
|
/Zephyr-Core-3.7.0/samples/boards/intel_adsp/code_relocation/ |
D | linker_xtensa_intel_adsp_cavs.ld | 30 * One final detail: SRAM4 actually lives in the "uncached" memory,
|
/Zephyr-Core-3.7.0/doc/_static/js/ |
D | dark-mode-toggle.min.mjs | 2 …detail.colorScheme;this.o();this.l()}));e.addEventListener(f,(e=>{this.permanent=e.detail.permanen…
|
/Zephyr-Core-3.7.0/samples/boards/mimxrt595_evk/system_off/ |
D | README.rst | 71 the One-Time-Programmable (OTP) fuses in the MCU. The steps below detail 94 These steps detail using USB as the interface between blhost and the
|
/Zephyr-Core-3.7.0/boards/native/nrf_bsim/doc/ |
D | nrf54l15bsim.rst | 54 For more information on what is modeled to which level of detail,
|
D | nrf5340bsim.rst | 48 For more information on what is modelled to which level of detail,
|
/Zephyr-Core-3.7.0/doc/hardware/peripherals/ |
D | w1.rst | 55 This algorithm is described in detail by `Maxim's Applicationnote 187`_.
|
/Zephyr-Core-3.7.0/boards/atmel/sam0/samd20_xpro/doc/ |
D | index.rst | 82 connections. Download the `SAM D20 Xplained Pro Schematic`_ for more detail.
|
/Zephyr-Core-3.7.0/boards/vngiotlab/nrf51_vbluno51/doc/ |
D | index.rst | 149 .. _VBLUno51 website: http://iotviet.com.vn/store/detail?id=2
|
/Zephyr-Core-3.7.0/samples/drivers/led_strip/ |
D | README.rst | 60 :zephyr_file:`samples/drivers/led_strip/boards/thingy52_nrf52832.overlay` for more detail.
|
/Zephyr-Core-3.7.0/boards/ronoth/lodev/doc/ |
D | index.rst | 156 .. _AcSIP S76S: http://www.acsip.com.tw/index.php?action=products-detail&fid1=11&fid2=29&fid3=27&id…
|
/Zephyr-Core-3.7.0/boards/arduino/nano_33_iot/doc/ |
D | index.rst | 73 connections. Download the `schematic`_ for more detail.
|
/Zephyr-Core-3.7.0/boards/arduino/zero/doc/ |
D | index.rst | 67 connections. Download the `Arduino Zero Schematic`_ for more detail.
|
/Zephyr-Core-3.7.0/doc/services/zbus/ |
D | index.rst | 194 :alt: ZBus publish processing detail 197 ZBus VDED execution detail for priority T1 > MS1 > MS2 > S1. 207 .. list-table:: VDED execution steps in detail for priority T1 > MS1 > MS2 > S1. 257 :alt: ZBus publish processing detail 260 ZBus VDED execution detail for priority T1 < MS1 < MS2 < S1. 264 .. list-table:: VDED execution steps in detail for priority T1 < MS1 < MS2 < S1. 325 ZBus VDED execution detail with priority boost enabled and for priority T1 < MS1 < MS2 < S1. 559 The following sections describe in detail how to use zbus features.
|