Home
last modified time | relevance | path

Searched full:fsync (Results 1 – 17 of 17) sorted by relevance

/Zephyr-latest/lib/posix/options/
DKconfig.sync_io8 bool "Support for fsync()"
10 Select 'y' here and Zephyr will provide an implementation of fsync().
13 https://pubs.opengroup.org/onlinepubs/9699919799/functions/fsync.html
20 Select 'y' here and Zephyr will provide an implementation of fdatasync(), fsync(),
35 Select 'y' here and Zephyr will provide an alias for fsync() as _fsync().
Dfsync.c12 int fsync(int fd) in fsync() function
17 FUNC_ALIAS(fsync, _fsync, int);
23 return fsync(fd); in fdatasync()
DCMakeLists.txt78 zephyr_library_sources_ifdef(CONFIG_POSIX_FSYNC fsync.c)
/Zephyr-latest/include/zephyr/drivers/
Ddai.h52 /**< codec BLCK provider, codec FSYNC provider */
54 /**< codec BCLK consumer, codec FSYNC provider */
56 /**< codec BCLK provider, codec FSYNC consumer */
58 /**< codec BCLK consumer, codec FSYNC consumer */
71 DAI_PROTO_DSP_A, /**< TDM, FSYNC asserted 1 BCLK early */
72 DAI_PROTO_DSP_B, /**< TDM, FSYNC asserted at the same time as MSB */
79 * clock polarity (FSYNC/BCLK) compared to
83 /**< no BCLK inversion, no FSYNC inversion */
85 /**< no BCLK inversion, FSYNC inversion */
87 /**< BCLK inversion, no FSYNC inversion */
[all …]
/Zephyr-latest/drivers/dai/nxp/esai/
Desai.h235 /* FSYNC direction - input or output */
237 /* FSYNC polarity - LOW or HIGH */
240 /* should FSYNC be bit-wide or word-wide? */
247 /* should FSYNC be asserted before MSB transmission
252 /* FSYNC divison value - for network mode this is
498 LOG_DBG("FSYNC direction: %d", cfg->fsync_dir); in esai_dump_xceiver_config()
499 LOG_DBG("FSYNC polarity: %d", cfg->fsync_polarity); in esai_dump_xceiver_config()
501 LOG_DBG("FSYNC is bit wide: %d", cfg->fsync_is_bit_wide); in esai_dump_xceiver_config()
503 LOG_DBG("FSYNC asserted early: %d", cfg->fsync_early); in esai_dump_xceiver_config()
Desai.c182 /* default FSYNC and BCLK are OUTPUT */ in esai_get_clk_provider_config()
/Zephyr-latest/drivers/dai/nxp/sai/
DKconfig.sai37 the SAI is FSYNC/BCLK master, one of the directions
Dsai.c245 /* condition: BCLK = FSYNC * TDM_SLOT_WIDTH * TDM_SLOTS */ in sai_config_set()
285 /* FSYNC is asserted for tdm_slot_width BCLKs */ in sai_config_set()
320 /* FSYNC is active LOW */ in sai_config_set()
324 /* FSYNC is asserted for a single BCLK */ in sai_config_set()
359 LOG_DBG("FSYNC polarity: %d", tx_config->frameSync.frameSyncPolarity); in sai_config_set()
Dsai.h397 /* by default, FSYNC has the following properties: in get_fsync_default_config()
399 * 1) FSYNC is asserted one bit early with respect to the next in get_fsync_default_config()
401 * 2) FSYNC is active HIGH. in get_fsync_default_config()
/Zephyr-latest/tests/posix/fs/src/
Dtest_fs_file.c152 res = fsync(file); in test_file_fsync()
265 * @brief Test for POSIX fsync API
267 * @details Test sync the file through POSIX fsync API.
/Zephyr-latest/include/zephyr/posix/
Dunistd.h35 int fsync(int fd);
/Zephyr-latest/dts/bindings/dai/
Dnxp,dai-esai.yaml72 Use this property to configure the directions of the ESAI clocks (HCLK, BCLK, FSYNC).
/Zephyr-latest/drivers/dai/intel/ssp/
Ddai-params-intel-ipc3.h107 uint32_t fsync_rate; /* fsync frequency in Hz */
/Zephyr-latest/drivers/sensor/tdk/icm42688/
Dicm42688_common.c205 /* Disable FSYNC */ in icm42688_configure()
/Zephyr-latest/doc/services/portability/posix/option_groups/
Dindex.rst733 fsync(),yes
897 fsync(),yes
/Zephyr-latest/subsys/fs/
Dfuse_fs_access.c438 .fsync = NULL,
/Zephyr-latest/tests/posix/headers/src/
Dunistd_h.c237 zassert_not_null(fsync); in ZTEST()