OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:btif_config_set
(Results
1 - 4
of
4
) sorted by null
/external/bluetooth/bluedroid/btif/include/
btif_config.h
59
int
btif_config_set
(const char* section, const char* key, const char* name, const char* value, int bytes, int type);
/external/bluetooth/bluedroid/btif/src/
btif_config.c
161
return
btif_config_set
(section, key, name, (char*)&value, sizeof(value), BTIF_CFG_TYPE_INT);
173
return
btif_config_set
(section, key, name, value, strlen(value) + 1, BTIF_CFG_TYPE_STR);
221
int
btif_config_set
(const char* section, const char* key, const char* name, const char* value, int bytes, int type)
function
867
btif_config_set
(section, key, "LinkKey", link_key, sizeof(link_key), BTIF_CFG_TYPE_BIN);
868
else
btif_config_set
(section, key, "LE_KEY_LCSRK", link_key, sizeof(link_key), BTIF_CFG_TYPE_BIN);
913
btif_config_set
("Remote", "00:22:5F:97:56:04", "Class Delete", class, strlen(class) + 1, BTIF_CFG_TYPE_STR);
btif_storage.c
785
ret &=
btif_config_set
("Remote", bdstr, "LinkKey", (const char*)link_key, sizeof(LINK_KEY), BTIF_CFG_TYPE_BIN);
[
all
...]
btif_config_util.cpp
234
btif_config_set
(section_name, key_name, value_name, bin, len/2, BTIF_CFG_TYPE_BIN);
655
btif_config_set
("Remote", addr, "LinkKey", linkkey,
Completed in 29 milliseconds