Home
last modified time | relevance | path

Searched refs:bt_settings_store (Results 1 – 3 of 3) sorted by relevance

/Zephyr-Core-3.7.0/subsys/bluetooth/host/
Dsettings.c301 int bt_settings_store(const char *key, uint8_t id, const bt_addr_le_t *addr, const void *value, in bt_settings_store() function
348 return bt_settings_store("sc", id, addr, value, val_len); in bt_settings_store_sc()
358 return bt_settings_store("cf", id, addr, value, val_len); in bt_settings_store_cf()
368 return bt_settings_store("ccc", id, addr, value, val_len); in bt_settings_store_ccc()
378 return bt_settings_store("hash", 0, NULL, value, val_len); in bt_settings_store_hash()
388 return bt_settings_store("name", 0, NULL, value, val_len); in bt_settings_store_name()
398 return bt_settings_store("appearance", 0, NULL, value, val_len); in bt_settings_store_appearance()
408 int err = bt_settings_store("id", 0, NULL, &bt_dev.id_addr, ID_DATA_LEN(bt_dev.id_addr)); in do_store_id()
432 int err = bt_settings_store("irk", 0, NULL, bt_dev.irk, ID_DATA_LEN(bt_dev.irk)); in do_store_irk()
457 return bt_settings_store("link_key", 0, addr, value, val_len); in bt_settings_store_link_key()
[all …]
Dsettings.h20 int bt_settings_store(const char *key, uint8_t id, const bt_addr_le_t *addr, const void *value,
/Zephyr-Core-3.7.0/subsys/bluetooth/audio/
Dhas.c952 err = bt_settings_store("has", 0, &context->addr, &store, sizeof(store)); in store_client_context()