ESP-IDF
nvs::NVSHandleSimple::mNsIndex
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
nvs::NVSHandleSimple::mNsIndex
nvs::NVSHandleSimple::mNsIndex field
Numeric representation of the namespace as it is saved in flash (see README.rst for further details).
Syntax
Show:
Summary
Declaration
from
nvs_handle_simple.hpp:91
uint8_t
mNsIndex
;
Examples
References
from
examples
Code
Location
Scope
Referrer
uint8_t
mNsIndex
;
nvs_handle_simple.hpp:91
return
mStoragePtr
->
writeItem
(
mNsIndex
,
datatype
,
key
,
data
,
dataSize
)
;
nvs_handle_simple.cpp:21
nvs::NVSHandleSimple
nvs::NVSHandleSimple::set_typed_item()
return
mStoragePtr
->
readItem
(
mNsIndex
,
datatype
,
key
,
data
,
dataSize
)
;
nvs_handle_simple.cpp:28
nvs::NVSHandleSimple
nvs::NVSHandleSimple::get_typed_item()
return
mStoragePtr
->
writeItem
(
mNsIndex
,
nvs
::
ItemType
::
SZ
,
key
,
str
,
strlen
(
str
)
+
1
)
;
nvs_handle_simple.cpp:36
nvs::NVSHandleSimple
nvs::NVSHandleSimple::set_string()
return
mStoragePtr
->
writeItem
(
mNsIndex
,
nvs
::
ItemType
::
BLOB
,
key
,
blob
,
len
)
;
nvs_handle_simple.cpp:44
nvs::NVSHandleSimple
nvs::NVSHandleSimple::set_blob()
return
mStoragePtr
->
readItem
(
mNsIndex
,
nvs
::
ItemType
::
SZ
,
key
,
out_str
,
len
)
;
nvs_handle_simple.cpp:51
nvs::NVSHandleSimple
nvs::NVSHandleSimple::get_string()
return
mStoragePtr
->
readItem
(
mNsIndex
,
nvs
::
ItemType
::
BLOB
,
key
,
out_blob
,
len
)
;
nvs_handle_simple.cpp:58
nvs::NVSHandleSimple
nvs::NVSHandleSimple::get_blob()
return
mStoragePtr
->
getItemDataSize
(
mNsIndex
,
datatype
,
key
,
size
)
;
nvs_handle_simple.cpp:65
nvs::NVSHandleSimple
nvs::NVSHandleSimple::get_item_size()
esp_err_t
err
=
mStoragePtr
->
findKey
(
mNsIndex
,
key
,
&
datatype
)
;
nvs_handle_simple.cpp:73
nvs::NVSHandleSimple
nvs::NVSHandleSimple::find_key()
return
mStoragePtr
->
eraseItem
(
mNsIndex
,
key
)
;
nvs_handle_simple.cpp:90
nvs::NVSHandleSimple
nvs::NVSHandleSimple::erase_item()
return
mStoragePtr
->
eraseNamespace
(
mNsIndex
)
;
nvs_handle_simple.cpp:98
nvs::NVSHandleSimple
nvs::NVSHandleSimple::erase_all()
esp_err_t
err
=
mStoragePtr
->
calcEntriesInNamespace
(
mNsIndex
,
used_entry_count
)
;
nvs_handle_simple.cpp:115
nvs::NVSHandleSimple
nvs::NVSHandleSimple::get_used_entry_count()
return
mStoragePtr
->
calcEntriesInNamespace
(
mNsIndex
,
usedEntries
)
;
nvs_handle_simple.cpp:131
nvs::NVSHandleSimple
nvs::NVSHandleSimple::calcEntriesInNamespace()
return
mStoragePtr
->
findEntryNs
(
it
,
mNsIndex
)
;
nvs_handle_simple.cpp:139
nvs::NVSHandleSimple
nvs::NVSHandleSimple::findEntryNs()
mNsIndex
(
nsIndex
)
,
nvs_handle_simple.hpp:33
nvs::NVSHandleSimple
nvs::NVSHandleSimple::NVSHandleSimple()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
nvs::NVSHandleSimple::mNsIndex
is read by 13 functions:
All items filtered out
nvs::NVSHandleSimple::mNsIndex
nvs::NVSHandleSimple::set_typed_item()
nvs::NVSHandleSimple::get_typed_item()
nvs::NVSHandleSimple::set_string()
nvs::NVSHandleSimple::set_blob()
nvs::NVSHandleSimple::get_string()
nvs::NVSHandleSimple::get_blob()
nvs::NVSHandleSimple::get_item_size()
nvs::NVSHandleSimple::find_key()
nvs::NVSHandleSimple::erase_item()
nvs::NVSHandleSimple::erase_all()
nvs::NVSHandleSimple::get_used_entry_count()
nvs::NVSHandleSimple::calcEntriesInNamespace()
nvs::NVSHandleSimple::findEntryNs()
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