ESP-IDF
nvs::NVSHandleSimple::mStoragePtr
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
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::mStoragePtr
nvs::NVSHandleSimple::mStoragePtr field
The underlying storage's object.
Syntax
Show:
Summary
Declaration
from
nvs_handle_simple.hpp:86
Storage
*
mStoragePtr
;
Examples
References
from
examples
Code
Location
Scope
Referrer
Storage
*
mStoragePtr
;
nvs_handle_simple.hpp:86
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
->
debugDump
(
)
;
nvs_handle_simple.cpp:123
nvs::NVSHandleSimple
nvs::NVSHandleSimple::debugDump()
return
mStoragePtr
->
fillStats
(
nvsStats
)
;
nvs_handle_simple.cpp:127
nvs::NVSHandleSimple
nvs::NVSHandleSimple::fillStats()
return
mStoragePtr
->
calcEntriesInNamespace
(
mNsIndex
,
usedEntries
)
;
nvs_handle_simple.cpp:131
nvs::NVSHandleSimple
nvs::NVSHandleSimple::calcEntriesInNamespace()
return
mStoragePtr
->
findEntry
(
it
,
name
)
;
nvs_handle_simple.cpp:135
nvs::NVSHandleSimple
nvs::NVSHandleSimple::findEntry()
return
mStoragePtr
->
findEntryNs
(
it
,
mNsIndex
)
;
nvs_handle_simple.cpp:139
nvs::NVSHandleSimple
nvs::NVSHandleSimple::findEntryNs()
return
mStoragePtr
->
nextEntry
(
it
)
;
nvs_handle_simple.cpp:143
nvs::NVSHandleSimple
nvs::NVSHandleSimple::nextEntry()
return
mStoragePtr
->
getPartName
(
)
;
nvs_handle_simple.cpp:147
nvs::NVSHandleSimple
nvs::NVSHandleSimple::get_partition_name() const
return
mStoragePtr
;
nvs_handle_simple.cpp:151
nvs::NVSHandleSimple
nvs::NVSHandleSimple::get_storage() const
mStoragePtr
(
StoragePtr
)
,
nvs_handle_simple.hpp:32
nvs::NVSHandleSimple
nvs::NVSHandleSimple::NVSHandleSimple()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
nvs::NVSHandleSimple::mStoragePtr
is read by 19 functions:
All items filtered out
nvs::NVSHandleSimple::mStoragePtr
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::debugDump()
nvs::NVSHandleSimple::fillStats()
nvs::NVSHandleSimple::calcEntriesInNamespace()
nvs::NVSHandleSimple::findEntry()
nvs::NVSHandleSimple::findEntryNs()
nvs::NVSHandleSimple::nextEntry()
nvs::NVSHandleSimple::get_partition_name() const
nvs::NVSHandleSimple::get_storage() const
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