Lines Matching refs:section
30 bool btif_config_has_section(const char *section);
31 bool btif_config_exist(const char *section, const char *key);
32 bool btif_config_get_int(const char *section, const char *key, int *value);
33 bool btif_config_set_int(const char *section, const char *key, int value);
34 bool btif_config_get_str(const char *section, const char *key, char *value, int *size_bytes);
35 bool btif_config_set_str(const char *section, const char *key, const char *value);
36 bool btif_config_get_bin(const char *section, const char *key, uint8_t *value, size_t *length);
37 bool btif_config_set_bin(const char *section, const char *key, const uint8_t *value, size_t length);
38 bool btif_config_remove(const char *section, const char *key);
40 size_t btif_config_get_bin_length(const char *section, const char *key);
44 …st btif_config_section_iter_t *btif_config_section_next(const btif_config_section_iter_t *section);
45 const char *btif_config_section_name(const btif_config_section_iter_t *section);