Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/bluetooth/host/
Dsettings.c315 int bt_settings_store(const char *key, uint8_t id, const bt_addr_le_t *addr, const void *value, in bt_settings_store() function
370 return bt_settings_store("sc", id, addr, value, val_len); in bt_settings_store_sc()
380 return bt_settings_store("cf", id, addr, value, val_len); in bt_settings_store_cf()
390 return bt_settings_store("ccc", id, addr, value, val_len); in bt_settings_store_ccc()
400 return bt_settings_store("hash", 0, NULL, value, val_len); in bt_settings_store_hash()
410 return bt_settings_store("name", 0, NULL, value, val_len); in bt_settings_store_name()
420 return bt_settings_store("appearance", 0, NULL, value, val_len); in bt_settings_store_appearance()
430 int err = bt_settings_store("id", 0, NULL, &bt_dev.id_addr, ID_DATA_LEN(bt_dev.id_addr)); in do_store_id()
454 int err = bt_settings_store("irk", 0, NULL, bt_dev.irk, ID_DATA_LEN(bt_dev.irk)); in do_store_irk()
479 return bt_settings_store("link_key", 0, addr, value, val_len); in bt_settings_store_link_key()
[all …]
Dsettings.h28 int bt_settings_store(const char *key, uint8_t id, const bt_addr_le_t *addr, const void *value,
/Zephyr-latest/subsys/bluetooth/audio/
Dhas.c950 err = bt_settings_store("has", 0, &context->addr, &store, sizeof(store)); in store_client_context()