Home
last modified time | relevance | path

Searched refs:off (Results 51 – 75 of 436) sorted by relevance

12345678910>>...18

/Zephyr-latest/scripts/
Dcheckpatch.pl1298 my $off = 0;
1304 for ($off = 1; $off < length($line); $off++) {
1305 $c = substr($line, $off, 1);
1309 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1312 substr($res, $off, 2, "$;$;");
1313 $off++;
1316 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
1318 substr($res, $off, 2, "$;$;");
1319 $off++;
1322 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
[all …]
/Zephyr-latest/samples/drivers/led/pwm/
DKconfig8 Specifies the LED on/off delay in milliseconds for short cycle
16 Specifies the LED on/off delay in milliseconds for long cycle
/Zephyr-latest/
Dzephyr-env.cmd1 @echo off
/Zephyr-latest/drivers/ethernet/
Deth_w5500.c181 uint8_t off[2]; in w5500_tx() local
184 w5500_spi_read(dev, W5500_S0_TX_WR, off, 2); in w5500_tx()
185 offset = sys_get_be16(off); in w5500_tx()
196 sys_put_be16(offset + len, off); in w5500_tx()
197 w5500_spi_write(dev, W5500_S0_TX_WR, off, 2); in w5500_tx()
211 uint16_t off; in w5500_rx() local
229 off = sys_get_be16(tmp); in w5500_rx()
231 w5500_readbuf(dev, off, header, 2); in w5500_rx()
244 reader = off + 2; in w5500_rx()
273 sys_put_be16(off + 2 + rx_len, tmp); in w5500_rx()
/Zephyr-latest/tests/bluetooth/tester/src/
Dbtp.c142 static uint8_t *recv_cb(uint8_t *buf, size_t *off) in recv_cb() argument
148 if (*off < sizeof(*cmd)) { in recv_cb()
155 *off = 0; in recv_cb()
159 if (*off < sizeof(*cmd) + len) { in recv_cb()
166 *off = 0; in recv_cb()
172 *off = 0; in recv_cb()
/Zephyr-latest/subsys/fs/fcb/
Dfcb_append.c125 off_t off; in fcb_append_finish() local
133 off = loc->fe_data_off + fcb_len_in_flash(fcb, loc->fe_data_len); in fcb_append_finish()
135 rc = fcb_flash_write(fcb, loc->fe_sector, off, em, fcb->f_align); in fcb_append_finish()
/Zephyr-latest/include/zephyr/drivers/
Duart_pipe.h35 typedef uint8_t *(*uart_pipe_recv_cb)(uint8_t *buf, size_t *off);
/Zephyr-latest/include/zephyr/fs/
Dfcb.h328 int fcb_flash_read(const struct fcb *fcbp, const struct flash_sector *sector, off_t off,
342 int fcb_flash_write(const struct fcb *fcbp, const struct flash_sector *sector, off_t off,
/Zephyr-latest/subsys/mgmt/mcumgr/grp/stat_mgmt/src/
Dstat_mgmt.c31 stats_mgmt_count_plus_one(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off) in stats_mgmt_count_plus_one() argument
55 stat_mgmt_walk_cb(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off);
63 stat_mgmt_walk_cb(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off) in stat_mgmt_walk_cb() argument
71 stat_val = (uint8_t *)hdr + off; in stat_mgmt_walk_cb()
/Zephyr-latest/drivers/sensor/ti/bq274xx/
Dbq274xx.h77 #define BQ274XX_EXT_BLKDAT(off) (BQ274XX_EXT_BLKDAT_START + off) argument
/Zephyr-latest/subsys/storage/flash_map/
Dflash_map_integrity.c49 if (!is_in_flash_area_bounds(fa, fac->off, fac->clen)) { in flash_area_check_int_sha256()
71 rc = flash_read(fa->fa_dev, (fa->fa_off + fac->off + pos), in flash_area_check_int_sha256()
/Zephyr-latest/tests/subsys/logging/log_stress/src/
Dmain.c38 int off = id - mock_backend.last_id[ctx_id] - 1; in handle_msg() local
44 if (off > 0) { in handle_msg()
45 mock_backend.missing += off; in handle_msg()
/Zephyr-latest/subsys/stats/
Dstats.c23 uint16_t off; in stats_get_name() local
31 off = sizeof(*hdr) + idx * hdr->s_size; in stats_get_name()
34 if (cur->snm_off == off) { in stats_get_name()
/Zephyr-latest/drivers/entropy/
Dentropy_cc13xx_cc26xx.c78 uint32_t off; in handle_shutdown_ovf() local
83 off = sys_read32(TRNG_BASE + TRNG_O_ALARMSTOP); in handle_shutdown_ovf()
88 sys_write32(off, TRNG_BASE + TRNG_O_FRODETUNE); in handle_shutdown_ovf()
90 sys_write32(off, TRNG_BASE + TRNG_O_FROEN); in handle_shutdown_ovf()
/Zephyr-latest/subsys/mgmt/mcumgr/grp/img_mgmt/src/
Dimg_mgmt.c676 zcbor_size_put(zse, g_img_mgmt_state.off); in img_mgmt_upload_good_rsp()
721 .off = SIZE_MAX, in img_mgmt_upload()
752 ZCBOR_MAP_DECODE_KEY_DECODER("off", zcbor_size_decode, &req.off), in img_mgmt_upload()
831 if (req.off == 0) { in img_mgmt_upload()
840 g_img_mgmt_state.off = 0; in img_mgmt_upload()
875 g_img_mgmt_state.off = g_img_mgmt_state.size; in img_mgmt_upload()
910 if (g_img_mgmt_state.off + req.img_data.len == g_img_mgmt_state.size) { in img_mgmt_upload()
914 rc = img_mgmt_write_image_data(req.off, req.img_data.value, action.write_bytes, in img_mgmt_upload()
917 g_img_mgmt_state.off += action.write_bytes; in img_mgmt_upload()
936 if (g_img_mgmt_state.off == g_img_mgmt_state.size) { in img_mgmt_upload()
[all …]
/Zephyr-latest/boards/qemu/x86/
Dboard.cmake17 list(APPEND QEMU_EXTRA_FLAGS -icount shift=5,align=off,sleep=off -rtc clock=vm)
74 list(APPEND QEMU_FLAGS_${ARCH} -machine acpi=off)
/Zephyr-latest/tests/drivers/regulator/fixed/dts/
Dtest_common.dtsi12 off-on-delay-us = <20000>;
/Zephyr-latest/drivers/ieee802154/
DKconfig.dw100023 int "SNIFF off time"
27 SNIFF off time in unit of approximate 1 microsecond.
/Zephyr-latest/samples/basic/fade_led/
DREADME.rst12 The LED starts off increases its brightness until it is fully or nearly fully
13 on. The brightness then decreases until the LED is off, completing on fade
/Zephyr-latest/samples/drivers/led/lp5569/
DREADME.rst12 LEDs until they are off again. Afterwards, it turns them all on at once, waits
13 a second, and turns them all back off.
/Zephyr-latest/lib/posix/options/
Dmmap.c49 void *mmap(void *addr, size_t len, int prot, int flags, int fd, off_t off) in mmap() argument
68 if (zvfs_ioctl_wrap(fd, ZFD_IOCTL_MMAP, addr, len, prot, flags, off, &virt) < 0) { in mmap()
/Zephyr-latest/drivers/clock_control/
Dclock_control_renesas_cpg_mssr.h50 #define RCAR_CORE_CLK_INFO_ITEM(id, off, par_id, in_frq) \ argument
54 .offset = off, \
/Zephyr-latest/include/zephyr/mgmt/mcumgr/grp/img_mgmt/
Dimg_mgmt.h186 size_t off; /* SIZE_MAX if unspecified */ member
198 size_t off; member
/Zephyr-latest/include/zephyr/drivers/mfd/
Dtle9104.h42 enum tle9104_off_state_diagnostics off: 2;
/Zephyr-latest/doc/hardware/peripherals/
Dclock_control.rst10 ability to turn them on and off.

12345678910>>...18