Searched defs:section_name (Results 1 - 3 of 3) sorted by relevance

/system/bt/main/
H A Dbte_conf.c42 char section_name[16] = { 0 }; local
43 snprintf(section_name, sizeof(section_name), "DID%d", i);
45 if (!config_has_section(config, section_name)) {
46 LOG_DEBUG(LOG_TAG, "%s no section named %s.", __func__, section_name);
51 record.vendor = config_get_int(config, section_name, "vendorId", LMP_COMPID_BROADCOM);
52 record.vendor_id_source = config_get_int(config, section_name, "vendorIdSource", DI_VENDOR_ID_SOURCE_BTSIG);
53 record.product = config_get_int(config, section_name, "productId", 0);
54 record.version = config_get_int(config, section_name, "version", 0);
55 record.primary_record = config_get_bool(config, section_name, "primaryRecor
[all...]
/system/bt/osi/test/
H A Dconfig_test.cpp172 const char *section_name = config_section_name(section); local
174 EXPECT_TRUE(!strcmp(section_name, CONFIG_DEFAULT_SECTION));
184 const char *section_name = config_section_name(section); local
186 EXPECT_TRUE(!strcmp(section_name, "DID"));
/system/extras/simpleperf/
H A Dread_elf.cpp227 llvm::StringRef section_name; local
228 if (section_it.get()->getName(section_name) || section_name.empty()) {
231 if (section_name.str() == ".text") {
358 bool ReadSectionFromELFFile(const llvm::object::ELFFile<ELFT>* elf, const std::string& section_name, argument
362 if (name_or_err && *name_or_err == section_name) {
365 LOG(ERROR) << "failed to read section " << section_name;
372 LOG(ERROR) << "can't find section " << section_name;
376 bool ReadSectionFromElfFile(const std::string& filename, const std::string& section_name, argument
387 result = ReadSectionFromELFFile(elf->getELFFile(), section_name, conten
[all...]

Completed in 103 milliseconds