| /Zephyr-latest/subsys/fs/zms/ | 
| D | zms.c | 44 static int zms_lookup_cache_rebuild(struct zms_fs *fs)  in zms_lookup_cache_rebuild()96 static void zms_lookup_cache_invalidate(struct zms_fs *fs, uint32_t sector)  in zms_lookup_cache_invalidate()
 111 static inline off_t zms_addr_to_offset(struct zms_fs *fs, uint64_t addr)  in zms_addr_to_offset()
 117 static inline size_t zms_round_down_write_block_size(struct zms_fs *fs, size_t len)  in zms_round_down_write_block_size()
 123 static inline size_t zms_round_up_write_block_size(struct zms_fs *fs, size_t len)  in zms_round_up_write_block_size()
 130 static inline size_t zms_al_size(struct zms_fs *fs, size_t len)  in zms_al_size()
 142 static inline uint64_t zms_empty_ate_addr(struct zms_fs *fs, uint64_t addr)  in zms_empty_ate_addr()
 148 static inline uint64_t zms_close_ate_addr(struct zms_fs *fs, uint64_t addr)  in zms_close_ate_addr()
 154 static int zms_flash_al_wrt(struct zms_fs *fs, uint64_t addr, const void *data, size_t len)  in zms_flash_al_wrt()
 194 static int zms_flash_rd(struct zms_fs *fs, uint64_t addr, void *data, size_t len)  in zms_flash_rd()
 [all …]
 
 | 
| /Zephyr-latest/subsys/fs/nvs/ | 
| D | nvs.c | 39 static int nvs_lookup_cache_rebuild(struct nvs_fs *fs)  in nvs_lookup_cache_rebuild()73 static void nvs_lookup_cache_invalidate(struct nvs_fs *fs, uint32_t sector)  in nvs_lookup_cache_invalidate()
 89 static inline size_t nvs_al_size(struct nvs_fs *fs, size_t len)  in nvs_al_size()
 102 static int nvs_flash_al_wrt(struct nvs_fs *fs, uint32_t addr, const void *data,  in nvs_flash_al_wrt()
 145 static int nvs_flash_rd(struct nvs_fs *fs, uint32_t addr, void *data,  in nvs_flash_rd()
 160 static int nvs_flash_ate_wrt(struct nvs_fs *fs, const struct nvs_ate *entry)  in nvs_flash_ate_wrt()
 178 static int nvs_flash_data_wrt(struct nvs_fs *fs, const void *data, size_t len, bool compute_crc)  in nvs_flash_data_wrt()
 222 static int nvs_flash_ate_rd(struct nvs_fs *fs, uint32_t addr,  in nvs_flash_ate_rd()
 236 static int nvs_flash_block_cmp(struct nvs_fs *fs, uint32_t addr, const void *data,  in nvs_flash_block_cmp()
 268 static int nvs_flash_cmp_const(struct nvs_fs *fs, uint32_t addr, uint8_t value,  in nvs_flash_cmp_const()
 [all …]
 
 | 
| /Zephyr-latest/subsys/fs/ext2/ | 
| D | ext2_diskops.c | 201 int ext2_fetch_superblock(struct ext2_data *fs)  in ext2_fetch_superblock()226 static inline uint32_t get_ngroups(struct ext2_data *fs)  in get_ngroups()
 238 int ext2_fetch_block_group(struct ext2_data *fs, uint32_t group)  in ext2_fetch_block_group()
 299 	struct ext2_data *fs = bg->fs;  in ext2_fetch_bg_itable()  local
 318 	struct ext2_data *fs = bg->fs;  in ext2_fetch_bg_ibitmap()  local
 334 	struct ext2_data *fs = bg->fs;  in ext2_fetch_bg_bbitmap()  local
 349 static int32_t get_itable_entry(struct ext2_data *fs, uint32_t ino)  in get_itable_entry()
 377 int ext2_fetch_inode(struct ext2_data *fs, uint32_t ino, struct ext2_inode *inode)  in ext2_fetch_inode()
 456 	struct ext2_data *fs = inode->i_fs;  in ext2_fetch_inode_block()  local
 497 static int64_t delete_blocks(struct ext2_data *fs, uint32_t block_num, int lvl,  in delete_blocks()
 [all …]
 
 | 
| D | ext2_disk_access.c | 22 static int64_t disk_access_device_size(struct ext2_data *fs)  in disk_access_device_size()29 static int64_t disk_access_write_size(struct ext2_data *fs)  in disk_access_write_size()
 89 static int disk_access_read_block(struct ext2_data *fs, void *buf, uint32_t block)  in disk_access_read_block()
 103 static int disk_access_write_block(struct ext2_data *fs, const void *buf, uint32_t block)  in disk_access_write_block()
 117 static int disk_access_read_superblock(struct ext2_data *fs, struct ext2_disk_superblock *sb)  in disk_access_read_superblock()
 131 static int disk_access_sync(struct ext2_data *fs)  in disk_access_sync()
 148 int ext2_init_disk_access_backend(struct ext2_data *fs, const void *storage_dev, int flags)  in ext2_init_disk_access_backend()
 
 | 
| D | ext2_impl.c | 39 void error_behavior(struct ext2_data *fs, const char *msg)  in error_behavior()89 struct ext2_block *ext2_get_block(struct ext2_data *fs, uint32_t block)  in ext2_get_block()
 108 struct ext2_block *ext2_get_empty_block(struct ext2_data *fs)  in ext2_get_empty_block()
 121 int ext2_write_block(struct ext2_data *fs, struct ext2_block *b)  in ext2_write_block()
 148 void ext2_init_blocks_slab(struct ext2_data *fs)  in ext2_init_blocks_slab()
 162 int ext2_assign_block_num(struct ext2_data *fs, struct ext2_block *b)  in ext2_assign_block_num()
 191 	struct ext2_data *fs = &__fs;  in ext2_init_storage()  local
 308 int ext2_init_fs(struct ext2_data *fs)  in ext2_init_fs()
 362 int ext2_close_fs(struct ext2_data *fs)  in ext2_close_fs()
 393 int ext2_close_struct(struct ext2_data *fs)  in ext2_close_struct()
 [all …]
 
 | 
| D | ext2_ops.c | 30 	struct ext2_data *fs = filp->mp->fs_data;  in ext2_open()  local245 	struct ext2_data *fs = mountp->fs_data;  in ext2_mkdir()  local
 294 	struct ext2_data *fs = dirp->mp->fs_data;  in ext2_opendir()  local
 372 	struct ext2_data *fs = NULL;  in ext2_mount()  local
 453 	struct ext2_data *fs;  in ext2_mkfs()  local
 486 	struct ext2_data *fs = mountp->fs_data;  in ext2_unmount()  local
 504 	struct ext2_data *fs = mountp->fs_data;  in ext2_unlink()  local
 536 	struct ext2_data *fs = mountp->fs_data;  in ext2_rename()  local
 585 	struct ext2_data *fs = mountp->fs_data;  in ext2_stat()  local
 614 	struct ext2_data *fs = mountp->fs_data;  in ext2_statvfs()  local
 
 | 
| /Zephyr-latest/subsys/fs/ | 
| D | littlefs_fs.c | 91 static inline void fs_lock(struct fs_littlefs *fs)  in fs_lock()96 static inline void fs_unlock(struct fs_littlefs *fs)  in fs_unlock()
 292 	struct fs_littlefs *fs = fp->mp->fs_data;  in littlefs_open()  local
 330 	struct fs_littlefs *fs = fp->mp->fs_data;  in littlefs_close()  local
 345 	struct fs_littlefs *fs = mountp->fs_data;  in littlefs_unlink()  local
 360 	struct fs_littlefs *fs = mountp->fs_data;  in littlefs_rename()  local
 375 	struct fs_littlefs *fs = fp->mp->fs_data;  in littlefs_read()  local
 387 	struct fs_littlefs *fs = fp->mp->fs_data;  in littlefs_write()  local
 403 	struct fs_littlefs *fs = fp->mp->fs_data;  in littlefs_seek()  local
 420 	struct fs_littlefs *fs = fp->mp->fs_data;  in littlefs_tell()  local
 [all …]
 
 | 
| D | fs.c | 669 	const struct fs_file_system_t *fs;  in fs_mount()  local759 	const struct fs_file_system_t *fs;  in fs_mkfs()  local
 860 int fs_register(int type, const struct fs_file_system_t *fs)  in fs_register()
 880 int fs_unregister(int type, const struct fs_file_system_t *fs)  in fs_unregister()
 
 | 
| /Zephyr-latest/tests/subsys/fs/fat_fs_api/src/ | 
| D | test_fat_rd_only_mount.c | 19 	struct fs_file_t fs;  in test_prepare()  local36 	struct fs_file_t fs;  in test_ops_on_rd()  local
 
 | 
| /Zephyr-latest/arch/arm/core/cortex_a_r/ | 
| D | fault.c | 255 	uint32_t fs = ifsr & IFSR_STATUS_Msk;  in z_arm_fault_prefetch()  local257 	uint32_t fs = ((ifsr & IFSR_FS1_Msk) >> 6) | (ifsr & IFSR_FS0_Msk);  in z_arm_fault_prefetch()  local
 333 	uint32_t fs = dfsr & DFSR_STATUS_Msk;  in z_arm_fault_data()  local
 335 	uint32_t fs = ((dfsr & DFSR_FS1_Msk) >> 6) | (dfsr & DFSR_FS0_Msk);  in z_arm_fault_data()  local
 
 | 
| /Zephyr-latest/tests/posix/fs/ | 
| D | CMakeLists.txt | 5 project(fs)  project
 | 
| /Zephyr-latest/samples/subsys/fs/zms/src/ | 
| D | main.c | 18 static struct zms_fs fs;  variable29 static int delete_and_verify_items(struct zms_fs *fs, uint32_t id)  in delete_and_verify_items()
 51 static int delete_basic_items(struct zms_fs *fs)  in delete_basic_items()
 
 | 
| /Zephyr-latest/subsys/net/l2/ieee802154/ | 
| D | ieee802154_frame.c | 26 #define dbg_print_fs(fs)                                                                           \  argument43 	struct ieee802154_fcf_seq *fs = (struct ieee802154_fcf_seq *)buf;  in ieee802154_validate_fc_seq()  local
 520 	struct ieee802154_fcf_seq *fs;  in generate_fcf_grounds()  local
 563 static inline bool data_addr_to_fs_settings(struct net_linkaddr *dst, struct ieee802154_fcf_seq *fs,  in data_addr_to_fs_settings()
 596 					   struct ieee802154_fcf_seq *fs,  in generate_addressing_fields()
 676 	struct ieee802154_fcf_seq *fs;  in ieee802154_create_data_frame()  local
 767 static inline bool cfi_to_fs_settings(enum ieee802154_cfi cfi, struct ieee802154_fcf_seq *fs,  in cfi_to_fs_settings()
 854 	struct ieee802154_fcf_seq *fs;  in ieee802154_create_mac_cmd_frame()  local
 912 	struct ieee802154_fcf_seq *fs;  in ieee802154_create_ack_frame()  local
 
 | 
| D | ieee802154.c | 109 		struct ieee802154_fcf_seq *fs = (struct ieee802154_fcf_seq *)frag->data;  in ieee802154_prepare_for_ack()  local135 		struct ieee802154_fcf_seq *fs;  in ieee802154_handle_ack()  local
 366 	struct ieee802154_fcf_seq *fs;  in ieee802154_recv()  local
 
 | 
| /Zephyr-latest/tests/subsys/fs/common/ | 
| D | test_fs_mount_flags.c | 19 	struct fs_file_t fs;  in test_fs_mount_flags()  local
 | 
| D | test_fs_mkfs.c | 50 	struct fs_file_t fs;  in test_fs_mkfs_ops()  local
 | 
| /Zephyr-latest/tests/subsys/fs/fs_api/src/ | 
| D | test_fs_mount_flags.c | 21 	struct fs_file_t fs;  in test_mount_flags()  local
 | 
| /Zephyr-latest/drivers/sensor/tdk/icm42x70/ | 
| D | icm42670.c | 15 static uint32_t convert_gyr_fs_to_bitfield(uint32_t val, uint16_t *fs)  in convert_gyr_fs_to_bitfield()95 void icm42670_convert_gyro(struct sensor_value *val, int16_t raw_val, uint16_t fs)  in icm42670_convert_gyro()
 
 | 
| /Zephyr-latest/drivers/sensor/st/lis2de12/ | 
| D | lis2de12.c | 42 	uint16_t fs;  member66 static int lis2de12_accel_set_fs_raw(const struct device *dev, uint8_t fs)  in lis2de12_accel_set_fs_raw()
 115 	int fs;  in lis2de12_accel_range_set()  local
 321 	uint8_t odr, fs;  in lis2de12_init_chip()  local
 
 | 
| /Zephyr-latest/drivers/sensor/st/lsm9ds0_gyro/ | 
| D | lsm9ds0_gyro.c | 42 static int lsm9ds0_gyro_set_fs_raw(const struct device *dev, uint8_t fs)  in lsm9ds0_gyro_set_fs_raw()61 	int fs;  member
 67 static int lsm9ds0_gyro_set_fs(const struct device *dev, int fs)  in lsm9ds0_gyro_set_fs()
 
 | 
| /Zephyr-latest/drivers/sensor/st/lsm6dso/ | 
| D | lsm6dso.c | 65 static int lsm6dso_accel_fs_val_to_gain(int fs, bool double_range)  in lsm6dso_accel_fs_val_to_gain()89 static int lsm6dso_accel_set_fs_raw(const struct device *dev, uint8_t fs)  in lsm6dso_accel_set_fs_raw()
 119 static int lsm6dso_gyro_set_fs_raw(const struct device *dev, uint8_t fs)  in lsm6dso_gyro_set_fs_raw()
 162 	int fs;  in lsm6dso_accel_range_set()  local
 218 	int fs;  in lsm6dso_gyro_range_set()  local
 695 	uint8_t odr, fs;  in lsm6dso_init_chip()  local
 
 | 
| /Zephyr-latest/tests/subsys/fs/zms/src/ | 
| D | main.c | 29 	struct zms_fs fs;  member103 static void execute_long_pattern_write(uint32_t id, struct zms_fs *fs)  in execute_long_pattern_write()
 280 static void write_content(uint32_t max_id, uint32_t begin, uint32_t end, struct zms_fs *fs)  in write_content()
 296 static void check_content(uint32_t max_id, struct zms_fs *fs)  in check_content()
 690 static size_t num_matching_cache_entries(uint64_t addr, bool compare_sector_only, struct zms_fs *fs)  in num_matching_cache_entries()
 704 static size_t num_occupied_cache_entries(struct zms_fs *fs)  in num_occupied_cache_entries()
 
 | 
| /Zephyr-latest/samples/subsys/nvs/src/ | 
| D | main.c | 49 static struct nvs_fs fs;  variable
 | 
| /Zephyr-latest/drivers/sensor/st/lsm9ds0_mfd/ | 
| D | lsm9ds0_mfd.c | 86 					       uint8_t fs)  in lsm9ds0_mfd_accel_set_fs_raw()105 	int fs;  member
 167 					      uint8_t fs)  in lsm9ds0_mfd_magn_set_fs_raw()
 186 	int fs;  member
 
 | 
| /Zephyr-latest/tests/subsys/fs/nvs/src/ | 
| D | main.c | 41 	struct nvs_fs fs;  member110 static void execute_long_pattern_write(uint16_t id, struct nvs_fs *fs)  in execute_long_pattern_write()
 308 			     struct nvs_fs *fs)  in write_content()
 324 static void check_content(uint16_t max_id, struct nvs_fs *fs)  in check_content()
 763 static size_t num_matching_cache_entries(uint32_t addr, bool compare_sector_only, struct nvs_fs *fs)  in num_matching_cache_entries()
 777 static size_t num_occupied_cache_entries(struct nvs_fs *fs)  in num_occupied_cache_entries()
 
 |