HomeSort by relevance Sort by last modified time
    Searched refs:section_name (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /system/bt/main/
bte_conf.cc 43 char section_name[16] = {0}; local
44 snprintf(section_name, sizeof(section_name), "DID%d", i);
46 if (!config_has_section(config, section_name)) {
47 LOG_DEBUG(LOG_TAG, "%s no section named %s.", __func__, section_name);
53 config_get_int(config, section_name, "vendorId", LMP_COMPID_BROADCOM);
55 config, section_name, "vendorIdSource", DI_VENDOR_ID_SOURCE_BTSIG);
56 record.product = config_get_int(config, section_name, "productId", 0);
57 record.version = config_get_int(config, section_name, "version", 0);
59 config_get_bool(config, section_name, "primaryRecord", false)
    [all...]
  /external/google-breakpad/src/common/linux/
elfutils-inl.h 62 const char* section_name = section_names + sections[i].sh_name; local
64 names_end - section_name >= name_len + 1 &&
65 my_strcmp(name, section_name) == 0) {
elfutils.cc 44 const char *section_name,
68 FindElfSectionByName<ElfClass>(section_name, section_type,
122 const char *section_name,
146 FindElfClassSection<ElfClass32>(elf_base, section_name, section_type,
150 FindElfClassSection<ElfClass64>(elf_base, section_name, section_type,
elfutils.h 73 // Attempt to find a section named |section_name| of type |section_type|
79 const char *section_name,
  /external/elfutils/src/
elflint.c 314 section_name (Ebl *ebl, int idx) function
575 idx, section_name (ebl, idx));
579 idx, section_name (ebl, idx),
580 cnt, section_name (ebl, cnt));
594 idx, section_name (ebl, idx));
607 shdr->sh_link, section_name (ebl, shdr->sh_link),
608 idx, section_name (ebl, idx));
631 idx, section_name (ebl, idx));
643 idx, section_name (ebl, idx));
651 idx, section_name (ebl, idx), 0, elf_errmsg (-1))
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
icf.h 122 // Checks if the section_name should be searched for relocs
126 check_section_for_function_pointers(const std::string& section_name,
132 section_name.c_str()));
170 is_section_foldable_candidate(const std::string& section_name)
172 const char* section_name_cstr = section_name.c_str();
expression.cc 758 Section_expression(const char* section_name, size_t section_name_len)
759 : section_name_(section_name, section_name_len)
791 const char* section_name = this->section_name_.c_str(); local
792 Output_section* os = eei->layout->find_output_section(section_name);
803 if (ss->script_sections()->get_output_section_info(section_name,
813 this->function_name(), section_name);
937 Addr_expression(const char* section_name, size_t section_name_len)
938 : Section_expression(section_name, section_name_len)
962 script_exp_function_addr(const char* section_name, size_t section_name_len)
964 return new Addr_expression(section_name, section_name_len)
    [all...]
dwp.cc 170 section_name(unsigned int shndx) function in class:gold::Dwo_file
171 { return this->obj_->section_name(shndx); }
276 { return this->elf_file_.section_name(shndx); }
606 add_output_section(const char* section_name, int align);
610 write_new_section(const char* section_name, const unsigned char* contents,
858 std::string sect_name = this->section_name(i);
909 std::string sect_name = this->section_name(i);
1002 std::string sect_name = this->section_name(i);
1627 const char* section_name = get_dwarf_section_name(section_id); local
    [all...]
target.h 316 // Whether a section called SECTION_NAME may have function pointers to
319 section_may_have_icf_unsafe_pointers(const char* section_name) const
320 { return this->do_section_may_have_icf_unsafe_pointers(section_name); }
642 do_section_may_have_icf_unsafe_pointers(const char* section_name) const
646 return (!is_prefix_of(".rodata._ZTV", section_name)
647 && !is_prefix_of(".data.rel.ro._ZTV", section_name)
648 && !is_prefix_of(".rodata._ZTC", section_name)
649 && !is_prefix_of(".data.rel.ro._ZTC", section_name)
650 && !is_prefix_of(".eh_frame", section_name));
    [all...]
attributes.cc 294 const char* section_name = reinterpret_cast<const char*>(p); local
295 section_size_type section_name_size = strlen(section_name) + 1;
300 if (std_section != NULL && strcmp(section_name, std_section) == 0)
302 else if (strcmp(section_name, "gnu") == 0)
  /external/toolchain-utils/cros_utils/
perf_diff.py 173 def _GetHumanReadableName(self, section_name):
174 if not 'raw' in section_name:
175 return section_name
176 raw_number = section_name.strip().split(' ')[-1]
212 for section_name in section_names:
213 if section_name in report.sections:
214 d[section_name] = report.sections[section_name].count
219 for section_name in section_names:
220 function_names = self._GetTopFunctions(section_name, self._num_symbols
    [all...]
  /external/autotest/client/cros/faft/utils/
saft_flashrom_util.py 201 flashrom.write_partial(new_image, (<section_name>, ...))
254 def get_section(self, base_image, section_name):
256 Retrieves a section of data based on section_name in layout_map.
259 if section_name not in self.firmware_layout:
261 pos = self.firmware_layout[section_name]
264 section_name)
269 if section_name in ('FVMAIN', 'FVMAINB', 'ECMAINA', 'ECMAINB'):
276 def put_section(self, base_image, section_name, data):
278 Updates a section of data based on section_name in firmware_layout.
282 pos = self.firmware_layout[section_name]
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
addr2line.c 355 process_file (const char *file_name, const char *section_name,
386 if (section_name != NULL)
388 section = bfd_get_section_by_name (abfd, section_name);
390 fatal (_("%s: cannot find section %s"), file_name, section_name);
415 const char *section_name;
437 section_name = NULL;
490 section_name = optarg;
504 return process_file (file_name, section_name, target);
411 const char *section_name; local
bucomm.c 83 const char *section_name;
88 section_name = NULL;
97 section_name = bfd_get_section_name (abfd, section);
99 if (section_name)
100 fprintf (stderr, ":%s[%s]", filename, section_name);
81 const char *section_name; local
  /toolchain/binutils/binutils-2.25/gold/testsuite/
object_unittest.cc 56 CHECK(object->section_name(0).empty());
57 CHECK(object->section_name(1) == ".test");
  /toolchain/binutils/binutils-2.25/include/coff/
apollo.h 71 #define s_zeroes section_name.s_name
72 #define s_offset (section_name.s_name+4)
  /build/make/tools/fs_config/
fs_config_generator.py 608 def _handle_aid(self, file_name, section_name, config):
615 section_name (str): The section name currently being parsed.
622 return '{} for: "{}" file: "{}"'.format(msg, section_name,
625 FSConfigFileParser._handle_dup_and_add('AID', file_name, section_name,
628 match = FSConfigFileParser._AID_MATCH.match(section_name)
630 if invalid != len(section_name):
635 value = config.get(section_name, 'value')
641 aid = AID(section_name, value, file_name)
665 def _handle_path(self, file_name, section_name, config):
676 section_name (str): The name of the section to parse
    [all...]
  /external/google-breakpad/src/common/solaris/
file_id.cc 109 const char *section_name = elf_strptr(elf, elf_header.e_shstrndx, local
111 if (!section_name) {
116 if (strcmp(section_name, kTextSectionName) == 0) {
  /system/extras/simpleperf/
read_elf.cpp 240 ElfStatus ReadSectionFromELFFile(const llvm::object::ELFObjectFile<ELFT>* elf, const std::string& section_name,
244 if (it->getName(name) || name != section_name) {
277 llvm::StringRef section_name; local
278 if (section_it_or_err.get()->getName(section_name) || section_name.empty()) {
281 if (section_name == ".text") {
329 llvm::StringRef section_name; local
330 std::error_code err = section_ref.getName(section_name);
331 if (err || section_name != ".plt") {
475 ElfStatus ReadSectionFromElfFile(const std::string& filename, const std::string& section_name,
    [all...]
read_elf.h 73 ElfStatus ReadSectionFromElfFile(const std::string& filename, const std::string& section_name,
  /art/runtime/
elf_file.h 70 bool GetSectionOffsetAndSize(const char* section_name, uint64_t* offset, uint64_t* size) const;
  /external/elfutils/libebl/
eblsectionname.c 42 const char *res = ebl != NULL ? ebl->section_name (section, xsection,
  /system/bt/osi/test/
config_test.cc 171 const char* section_name = config_section_name(section); local
173 EXPECT_TRUE(!strcmp(section_name, CONFIG_DEFAULT_SECTION));
183 const char* section_name = config_section_name(section); local
185 EXPECT_TRUE(!strcmp(section_name, "DID"));
  /toolchain/binutils/binutils-2.25/bfd/
aout-adobe.c 79 char *section_name; local
106 section_name = ".text";
111 section_name = ".data";
116 section_name = ".bss";
133 sect = bfd_make_section_with_flags (abfd, section_name, flags);
141 sprintf (try_again, "%s%d", section_name, ++trynum);
  /external/autotest/client/common_lib/
software_manager.py 439 section_name = 'software_manager' + '_' + generate_random_string(4)
440 if not self.cfgparser.has_section(section_name):
442 self.cfgparser.add_section(section_name)
443 self.cfgparser.set(section_name, 'name',
445 self.cfgparser.set(section_name, 'url', url)
446 self.cfgparser.set(section_name, 'enabled', 1)
447 self.cfgparser.set(section_name, 'gpgcheck', 0)

Completed in 1801 milliseconds

1 2 3 4