ESP-IDF
bt_mesh_mutex_t::mutex
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
bt_mesh_mutex_t::mutex
bt_mesh_mutex_t::mutex field
Syntax
Show:
Summary
Declaration
from
mutex.h:19
SemaphoreHandle_t
mutex
;
Examples
References
from
examples
Code
Location
Referrer
SemaphoreHandle_t
mutex
;
mutex.h:19
mutex
->
mutex
=
xSemaphoreCreateMutex
(
)
;
mutex.c:31
bt_mesh_mutex_create()
__ASSERT
(
mutex
->
mutex
,
"Failed to create mutex"
)
;
mutex.c:32
bt_mesh_mutex_create()
if
(
mutex
->
mutex
)
{
mutex.c:43
bt_mesh_mutex_free()
vSemaphoreDelete
(
mutex
->
mutex
)
;
mutex.c:44
bt_mesh_mutex_free()
mutex
->
mutex
=
NULL
;
mutex.c:45
bt_mesh_mutex_free()
if
(
mutex
->
mutex
)
{
mutex.c:60
bt_mesh_mutex_lock()
xSemaphoreTake
(
mutex
->
mutex
,
portMAX_DELAY
)
;
mutex.c:61
bt_mesh_mutex_lock()
if
(
mutex
->
mutex
)
{
mutex.c:72
bt_mesh_mutex_unlock()
xSemaphoreGive
(
mutex
->
mutex
)
;
mutex.c:73
bt_mesh_mutex_unlock()
mutex
->
mutex
=
xSemaphoreCreateRecursiveMutex
(
)
;
mutex.c:94
bt_mesh_r_mutex_create()
__ASSERT
(
mutex
->
mutex
,
"Failed to create recursive mutex"
)
;
mutex.c:95
bt_mesh_r_mutex_create()
if
(
mutex
->
mutex
)
{
mutex.c:111
bt_mesh_r_mutex_lock()
xSemaphoreTakeRecursive
(
mutex
->
mutex
,
portMAX_DELAY
)
;
mutex.c:112
bt_mesh_r_mutex_lock()
if
(
mutex
->
mutex
)
{
mutex.c:123
bt_mesh_r_mutex_unlock()
xSemaphoreGiveRecursive
(
mutex
->
mutex
)
;
mutex.c:124
bt_mesh_r_mutex_unlock()
if
(
!
provisioner_lock
.
mutex
)
{
pvnr_mgmt.c:39
bt_mesh_provisioner_mutex_new()
if
(
settings_lock
.
mutex
==
NULL
)
{
settings.c:183
bt_mesh_settings_mutex_new()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
bt_mesh_mutex_t::mutex
is written by 3 functions and is read by 9 functions:
bt_mesh_mutex_create()
bt_mesh_mutex_free()
bt_mesh_r_mutex_create()
All items filtered out
bt_mesh_mutex_t::mutex
bt_mesh_mutex_create()
bt_mesh_mutex_free()
bt_mesh_mutex_lock()
bt_mesh_mutex_unlock()
bt_mesh_r_mutex_create()
bt_mesh_r_mutex_lock()
bt_mesh_r_mutex_unlock()
bt_mesh_settings_mutex_new()
bt_mesh_provisioner_mutex_new()
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