OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:config_t
(Results
1 - 3
of
3
) sorted by null
/external/bluetooth/bluedroid/osi/include/
config.h
24
struct
config_t
;
25
typedef struct
config_t
config_t
;
typedef in typeref:struct:config_t
32
config_t
*config_new(const char *filename);
37
void config_free(
config_t
*config);
42
bool config_has_section(const
config_t
*config, const char *section);
46
bool config_has_key(const
config_t
*config, const char *section, const char *key);
52
int config_get_int(const
config_t
*config, const char *section, const char *key, int def_value);
57
bool config_get_bool(const
config_t
*config, const char *section, const char *key, bool def_value);
63
const char *config_get_string(const
config_t
*config, const char *section, const char *key, const char *def_value)
[
all
...]
/external/bluetooth/bluedroid/osi/src/
config.c
23
struct
config_t
{
struct
27
static void config_parse(FILE *fp,
config_t
*config);
31
static section_t *section_find(const
config_t
*config, const char *section);
35
static entry_t *entry_find(const
config_t
*config, const char *section, const char *key);
37
config_t
*config_new(const char *filename) {
46
config_t
*config = calloc(1, sizeof(
config_t
));
48
ALOGE("%s unable to allocate memory for
config_t
.", __func__);
61
void config_free(
config_t
*config) {
69
bool config_has_section(const
config_t
*config, const char *section)
[
all
...]
/external/mdnsresponder/mDNSPosix/
nss_mdns.c
1722
}
config_t
;
typedef in typeref:struct:__anon6393
[
all
...]
Completed in 438 milliseconds