ESP-IDF
esp_vfs_register_fs_common()
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (3/5)...
Files
loading (4/5)...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
esp_vfs_register_fs_common()
esp_vfs_register_fs_common() function
Syntax
Show:
Summary
Declaration
from
vfs.c:398
static
esp_err_t
esp_vfs_register_fs_common
(
const
char
*
base_path
,
size_t
len
,
const
esp_vfs_fs_ops_t
*
vfs
,
int
flags
,
void
*
ctx
,
int
*
vfs_index
)
;
Arguments
Argument
base_path
len
vfs
flags
ctx
vfs_index
Examples
References
from
examples
Code
Location
Referrer
static
esp_err_t
esp_vfs_register_fs_common
(
const
char
*
base_path
,
size_t
len
,
const
esp_vfs_fs_ops_t
*
vfs
,
int
flags
,
void
*
ctx
,
int
*
vfs_index
)
vfs.c:398
return
esp_vfs_register_fs_common
(
base_path
,
strlen
(
base_path
)
,
vfs
,
flags
,
ctx
,
NULL
)
;
vfs.c:461
esp_vfs_register_fs()
esp_err_t
ret
=
esp_vfs_register_fs_common
(
base_path
,
strlen
(
base_path
)
,
_vfs
,
flags
,
ctx
,
NULL
)
;
vfs.c:469
esp_vfs_register_fs()
ret
=
esp_vfs_register_fs_common
(
base_path
,
len
,
_vfs
,
vfs
->
flags
,
ctx
,
vfs_index
)
;
vfs.c:496
esp_vfs_register_common()
return
esp_vfs_register_fs_common
(
""
,
LEN_PATH_PREFIX_IGNORED
,
vfs
,
flags
,
ctx
,
vfs_id
)
;
vfs.c:554
esp_vfs_register_fs_with_id()
Call Tree
from
examples
esp_vfs_register_fs_common()
is called by 3 functions and calls 4 functions:
esp_vfs_register_fs()
esp_vfs_register_common()
esp_vfs_register_fs_with_id()
All items filtered out
esp_vfs_register_fs_common()
esp_log_timestamp()
esp_log_write()
heap_caps_malloc()
esp_get_free_index()
All items filtered out
Data Use
from
examples
esp_vfs_register_fs_common()
reads 10 variables and writes 6 variables:
esp_log_level_t::ESP_LOG_NONE
esp_log_level_t::ESP_LOG_ERROR
esp_log_level_t::ESP_LOG_WARN
esp_log_level_t::ESP_LOG_INFO
esp_log_level_t::ESP_LOG_DEBUG
esp_log_level_t::ESP_LOG_VERBOSE
vfs_entry_::path_prefix
TAG
s_vfs
s_vfs_count
All items filtered out
esp_vfs_register_fs_common()
vfs_entry_::flags
vfs_entry_::vfs
vfs_entry_::path_prefix_len
vfs_entry_::ctx
vfs_entry_::offset
s_vfs_count
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out