HomeSort by relevance Sort by last modified time
    Searched refs:config_get_string (Results 1 - 6 of 6) sorted by null

  /system/bt/main/
bte_conf.c 56 strlcpy(record.client_executable_url, config_get_string(config, section_name, "clientExecutableURL", ""), sizeof(record.client_executable_url));
57 strlcpy(record.service_description, config_get_string(config, section_name, "serviceDescription", ""), sizeof(record.service_description));
58 strlcpy(record.documentation_url, config_get_string(config, section_name, "documentationURL", ""), sizeof(record.documentation_url));
stack_config.c 82 return config_get_string(config, CONFIG_DEFAULT_SECTION, BTSNOOP_LOG_PATH_KEY, "/data/misc/bluedroid/btsnoop_hci.log");
110 return config_get_string(config, CONFIG_DEFAULT_SECTION, PTS_SMP_PAIRING_OPTIONS_KEY, NULL);
  /system/bt/osi/include/
config.h 78 const char *config_get_string(const config_t *config, const char *section, const char *key, const char *def_value);
  /system/bt/osi/test/
config_test.cpp 89 EXPECT_STRNE(config_get_string(config, CONFIG_DEFAULT_SECTION, "first_key", "one"),
90 config_get_string(clone, CONFIG_DEFAULT_SECTION, "first_key", "one"));
105 EXPECT_STREQ(config_get_string(config, CONFIG_DEFAULT_SECTION, "first_key", "meow"), "value");
  /system/bt/btif/src/
btif_config.c 183 const char* time_str = config_get_string(config, INFO_SECTION, FILE_TIMESTAMP, NULL);
315 const char *stored_value = config_get_string(config, section, key, NULL);
348 const char *value_str = config_get_string(config, section, key, NULL);
374 const char *value_str = config_get_string(config, section, key, NULL);
557 dprintf(fd, " File source: %s\n", config_get_string(config, INFO_SECTION,
  /system/bt/osi/src/
config.c 182 const char *config_get_string(const config_t *config, const char *section, const char *key, const char *def_value) { function

Completed in 336 milliseconds