/Zephyr-latest/include/zephyr/sys/ |
D | ring_buffer.h | 52 struct ring_buf_index put; member 72 buf->put.head = buf->put.tail = buf->put.base = value; in ring_buf_internal_reset() 214 return buf->get.head == buf->put.tail; in ring_buf_is_empty() 236 ring_buf_idx_t allocated = buf->put.head - buf->get.tail; in ring_buf_space_get() 274 ring_buf_idx_t available = buf->put.tail - buf->get.head; in ring_buf_size_get() 307 return ring_buf_area_claim(buf, &buf->put, data, in ring_buf_put_claim() 335 return ring_buf_area_finish(buf, &buf->put, size); in ring_buf_put_finish()
|
/Zephyr-latest/tests/benchmarks/latency_measure/ |
D | README.rst | 70 …fifo.put.immediate.kernel - Add data to FIFO (no ctx switch) : … 72 …fifo.put.alloc.immediate.kernel - Allocate to add data to FIFO (no ctx switch) : … 75 …fifo.put.wake+ctx.k_to_k - Add data to FIFO (w/ ctx switch) : … 77 …fifo.put.alloc.wake+ctx.k_to_k - Allocate to add data to FIFO (w/ ctx switch) : … 78 …lifo.put.immediate.kernel - Add data to LIFO (no ctx switch) : … 80 …lifo.put.alloc.immediate.kernel - Allocate to add data to LIFO (no ctx switch) : … 83 …lifo.put.wake+ctx.k_to_k - Add data to LIFO (w/ ctx switch) : … 85 …lifo.put.alloc.wake+ctx.k_to_k - Allocate to add data to LIFO (w/ ctx switch) : … 123 …fifo.put.immediate.kernel - Add data to FIFO (no ctx switch) : … 125 …fifo.put.alloc.immediate.kernel - Allocate to add data to FIFO (no ctx switch) : … [all …]
|
/Zephyr-latest/tests/net/lib/coap_server/common/src/ |
D | main.c | 41 .put = coap_method2, 57 .put = coap_method1, 280 zassert_equal(res->put, coap_method2); in ZTEST() 296 zassert_equal(res->put, coap_method1); in ZTEST() 313 zassert_equal(res->put, NULL); in ZTEST()
|
/Zephyr-latest/soc/renesas/ra/ra4m1/ |
D | ram_sections.ld | 9 /* If DTC is used, put the DTC vector table at the start of SRAM.
|
/Zephyr-latest/soc/renesas/ra/ra2a1/ |
D | ram_sections.ld | 9 /* If DTC is used, put the DTC vector table at the start of SRAM.
|
/Zephyr-latest/soc/renesas/ra/ra6m1/ |
D | sections.ld | 9 /* If DTC is used, put the DTC vector table at the start of SRAM.
|
/Zephyr-latest/soc/renesas/ra/ra6m2/ |
D | sections.ld | 9 /* If DTC is used, put the DTC vector table at the start of SRAM.
|
/Zephyr-latest/soc/renesas/ra/ra6m3/ |
D | sections.ld | 9 /* If DTC is used, put the DTC vector table at the start of SRAM.
|
/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/ |
D | leshan.py | 67 …resp = self._s.put(f'{self.api_url}{path}', data=data, headers=headers, params=params, timeout=sel… 70 def put(self, path: str, data: str | dict, uri_options: str = ''): member in Leshan 109 return self.put(f'/clients/{endpoint}/{path}', self._define_resource(rid, value, kind)) 129 return self.put(f'/clients/{endpoint}/{path}', data, uri_options='&replace=false') 134 return self.put(f'/clients/{endpoint}/{path}', data, uri_options='&replace=true') 362 …resp = self._s.put(f'{self.api_url}/clients/{endpoint}/composite', params=parameters, json=data, t… 374 …self.put('/security/clients/', f'{{"endpoint":"{endpoint}","tls":{{"mode":"psk","details":{{"ident… 382 self.put('/security/clients/', data)
|
/Zephyr-latest/soc/renesas/ra/ra4w1/ |
D | sections.ld | 17 /* If DTC is used, put the DTC vector table at the start of SRAM.
|
/Zephyr-latest/samples/net/tftp_client/ |
D | README.rst | 5 Use the TFTP client library to get/put files from/to a TFTP server. 11 based on UDP, and is designed to get a file from or put a file onto a remote host. 95 <inf> net_tftp_client_app: TFTP client put done
|
/Zephyr-latest/tests/subsys/modem/mock/ |
D | modem_backend_mock.h | 20 const uint8_t *put; member
|
/Zephyr-latest/doc/services/pm/ |
D | device_runtime.rst | 19 not used. On the first device request, it will be resumed and so put into the 23 device will be immediately put into the 25 asynchronously, it will be put into the 74 and *put* terminology to indicate when a device is needed or not, respectively. 87 Until this feature is added, devices can manually *get* or *put* their 187 *get* and *put* operations could be carried out as follows: 204 /* "put" device (decreases usage count, suspends device if no more users) */ 226 /* "put" device (decreases usage count, schedule suspend if no more users) */
|
/Zephyr-latest/subsys/pm/ |
D | pm_shell.c | 170 SHELL_CMD_ARG(runtime-put, &dsub_device_name, 173 SHELL_CMD_ARG(runtime-put-async, &dsub_device_name,
|
/Zephyr-latest/include/zephyr/net/ |
D | net_offload.h | 124 int (*put)(struct net_context *context); member 450 NET_ASSERT(net_if_offload(iface)->put); in net_offload_put() 452 return net_if_offload(iface)->put(context); in net_offload_put()
|
/Zephyr-latest/doc/releases/ |
D | release-notes-4.2.rst | 5 features. If you feel like something new can be useful to a user, put it 8 livestream) put it under "Major enhancement". 18 you think it needs more details, put them in the content that shows up on the 21 Are you thinking about generating this? Don't put anything at all.
|
/Zephyr-latest/kernel/ |
D | msg_q.c | 139 SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_msgq, put, msgq, timeout); in z_impl_k_msgq_put() 169 SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(k_msgq, put, msgq, timeout); in z_impl_k_msgq_put() 175 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_msgq, put, msgq, timeout, result); in z_impl_k_msgq_put() 179 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_msgq, put, msgq, timeout, result); in z_impl_k_msgq_put()
|
D | pipes.c | 405 SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_pipe, put, pipe, timeout); in z_impl_k_pipe_put() 408 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_pipe, put, pipe, timeout, in z_impl_k_pipe_put() 445 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_pipe, put, pipe, in z_impl_k_pipe_put() 492 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_pipe, put, pipe, timeout, 0); in z_impl_k_pipe_put() 499 SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(k_pipe, put, pipe, timeout); in z_impl_k_pipe_put() 520 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_pipe, put, pipe, timeout, ret); in z_impl_k_pipe_put()
|
/Zephyr-latest/tests/subsys/modem/modem_cmux/src/ |
D | main.c | 201 .put = cmux_frame_control_cld_ack, 208 .put = cmux_frame_control_sabm_ack, 215 .put = cmux_frame_dlci1_ua_ack, 222 .put = cmux_frame_dlci2_ua_ack, 229 .put = cmux_frame_dlci1_ua_ack, 236 .put = cmux_frame_dlci2_ua_ack,
|
/Zephyr-latest/scripts/west_commands/ |
D | README.txt | 5 Before adding more here, consider whether you might want to put new
|
/Zephyr-latest/soc/altr/zephyr_nios2f/cpu/ |
D | README | 18 .pof file which will then put the image onto the device using quartus_pgm tool.
|
/Zephyr-latest/tests/benchmarks/app_kernel/ |
D | README.txt | 70 | put | get | no buf | small buf| big buf | no buf | small buf| big buf | 87 | put | get | no buf | small buf| big buf | no buf | small buf| big buf | 104 | put | get | no buf | small buf| big buf | no buf | small buf| big buf |
|
/Zephyr-latest/soc/renesas/ra/ra4m2/ |
D | sections.ld | 9 /* If DTC is used, put the DTC vector table at the start of SRAM.
|
/Zephyr-latest/soc/renesas/ra/ra4m3/ |
D | sections.ld | 9 /* If DTC is used, put the DTC vector table at the start of SRAM.
|
/Zephyr-latest/soc/renesas/ra/ra6e1/ |
D | sections.ld | 9 /* If DTC is used, put the DTC vector table at the start of SRAM.
|