Home
last modified time | relevance | path

Searched refs:bt_mesh_atomic_val_t (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_atomic.h18 typedef bt_mesh_atomic_t bt_mesh_atomic_val_t; typedef
37 static inline bt_mesh_atomic_val_t bt_mesh_atomic_inc(bt_mesh_atomic_t *target) in bt_mesh_atomic_inc()
42 extern bt_mesh_atomic_val_t bt_mesh_atomic_inc(bt_mesh_atomic_t *target);
56 static inline bt_mesh_atomic_val_t bt_mesh_atomic_dec(bt_mesh_atomic_t *target) in bt_mesh_atomic_dec()
61 extern bt_mesh_atomic_val_t bt_mesh_atomic_dec(bt_mesh_atomic_t *target);
75 static inline bt_mesh_atomic_val_t bt_mesh_atomic_get(const bt_mesh_atomic_t *target) in bt_mesh_atomic_get()
80 extern bt_mesh_atomic_val_t bt_mesh_atomic_get(const bt_mesh_atomic_t *target);
96 static inline bt_mesh_atomic_val_t bt_mesh_atomic_set(bt_mesh_atomic_t *target, bt_mesh_atomic_val_… in bt_mesh_atomic_set()
105 extern bt_mesh_atomic_val_t bt_mesh_atomic_set(bt_mesh_atomic_t *target, bt_mesh_atomic_val_t value…
121 static inline bt_mesh_atomic_val_t bt_mesh_atomic_or(bt_mesh_atomic_t *target, bt_mesh_atomic_val_t in bt_mesh_atomic_or()
[all …]
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/
Dmesh_atomic.c38 bt_mesh_atomic_val_t bt_mesh_atomic_get(const bt_mesh_atomic_t *target) in bt_mesh_atomic_get()
55 bt_mesh_atomic_val_t bt_mesh_atomic_set(bt_mesh_atomic_t *target, bt_mesh_atomic_val_t value) in bt_mesh_atomic_set()
57 bt_mesh_atomic_val_t ret = 0; in bt_mesh_atomic_set()
82 bt_mesh_atomic_val_t bt_mesh_atomic_or(bt_mesh_atomic_t *target, bt_mesh_atomic_val_t value) in bt_mesh_atomic_or()
84 bt_mesh_atomic_val_t ret = 0; in bt_mesh_atomic_or()
109 bt_mesh_atomic_val_t bt_mesh_atomic_and(bt_mesh_atomic_t *target, bt_mesh_atomic_val_t value) in bt_mesh_atomic_and()
111 bt_mesh_atomic_val_t ret = 0; in bt_mesh_atomic_and()
134 bt_mesh_atomic_val_t bt_mesh_atomic_dec(bt_mesh_atomic_t *target) in bt_mesh_atomic_dec()
136 bt_mesh_atomic_val_t ret = 0; in bt_mesh_atomic_dec()
159 bt_mesh_atomic_val_t bt_mesh_atomic_inc(bt_mesh_atomic_t *target) in bt_mesh_atomic_inc()
[all …]