HomeSort by relevance Sort by last modified time
    Searched full:section_list (Results 1 - 25 of 54) sorted by null

1 2 3

  /frameworks/base/cmds/incidentd/tests/
section_list.cpp 1 // This file is a dummy section_list.cpp used for test only.
2 #include "section_list.h"
8 const Section* SECTION_LIST[] = {NULL};
  /external/adhd/cras/src/server/
cras_alsa_ucm_section.c 42 struct ucm_section *section_list = NULL; local
73 DL_APPEND(section_list, section);
74 return section_list;
  /toolchain/binutils/binutils-2.27/gold/testsuite/
plugin_section_order.c 118 struct ld_plugin_section section_list[3]; variable in typeref:struct:ld_plugin_section
166 section_list[position].handle = file->handle;
167 section_list[position].shndx = shndx;
182 update_section_order(section_list, num_entries);
184 section_list, num_entries);
plugin_section_alignment.cc 245 struct ld_plugin_section section_list[12]; local
247 section_list[ii] = raw_sections[ii].plugin_section;
262 update_section_order(section_list, 12);
  /frameworks/base/cmds/incidentd/src/
section_list.h 34 extern const Section* SECTION_LIST[];
incidentd_util.cpp 24 #include "section_list.h"
Reporter.cpp 23 #include "section_list.h"
180 for (const Section** section = SECTION_LIST; *section; section++) {
  /frameworks/base/tools/incident_section_gen/
main.cpp 37 * When argument "incidentd" is specified, it generates section_list.cpp file.
39 * In section_list.cpp file, it generates a SECTION_LIST array and a PRIVACY_POLICY_LIST array.
40 * For SECTION_LIST, it generates Section.h classes only for proto fields with section option enabled.
60 * #include "section_list.h"
138 // ========================= section_list ===================================
393 generateHead("section_list");
400 // generates SECTION_LIST
401 printf("// Generate SECTION_LIST.\n\n");
403 printf("const Section* SECTION_LIST[] = {\n")
    [all...]
  /external/elfutils/src/
objdump.c 108 static struct section_list struct
116 struct section_list *next;
117 } *section_list; variable in typeref:struct:section_list
198 struct section_list *newp = xmalloc (sizeof (*newp));
208 newp->next = section_list;
209 section_list = newp;
457 if (section_list == NULL)
460 struct section_list *runp = section_list;
  /external/elfutils/libasm/
asm_newscn.c 203 result->allnext = ctx->section_list;
204 ctx->section_list = result;
asm_end.c 87 for (asmscn = ctx->section_list; asmscn != NULL; asmscn = asmscn->allnext)
420 for (asmscn = ctx->section_list; asmscn != NULL; asmscn = asmscn->allnext)
561 AsmScn_t *scn = ctx->section_list;
asm_begin.c 112 result->section_list = NULL;
libasmP.h 157 AsmScn_t *section_list; member in struct:AsmCtx
  /frameworks/base/cmds/incidentd/
Android.mk 61 # generate section_list.cpp
62 GEN_LIST := $(gen_src_dir)/src/section_list.cpp
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
plugin-api.h 303 The sections should be specifed using the array SECTION_LIST in the
310 (*ld_plugin_update_section_order) (const struct ld_plugin_section *section_list,
345 const struct ld_plugin_section * section_list,
  /toolchain/binutils/binutils-2.27/include/
plugin-api.h 303 The sections should be specifed using the array SECTION_LIST in the
310 (*ld_plugin_update_section_order) (const struct ld_plugin_section *section_list,
345 const struct ld_plugin_section * section_list,
  /external/google-breakpad/src/tools/mac/dump_syms/
macho_dump.cc 108 " section_list size: %ld B\n",
112 segment.section_list.Size());
  /toolchain/binutils/binutils-2.27/gold/
layout.h 932 typedef std::vector<Output_section*> Section_list;
941 get_allocated_sections(Section_list*) const;
945 get_executable_sections(Section_list*) const;
979 const Section_list&
980 section_list() const function in class:gold::Layout
    [all...]
layout.cc 290 const Layout::Section_list& sections,
294 for(Layout::Section_list::const_iterator p = sections.begin();
311 const Layout::Section_list& sections)
313 for(Layout::Section_list::const_iterator p = sections.begin();
331 const Layout::Section_list& sections)
334 for(Layout::Section_list::const_iterator p = sections.begin();
757 for (Section_list::const_iterator p = this->section_list_.begin();
    [all...]
gold.cc 580 for (Layout::Section_list::const_iterator p = layout->section_list().begin();
581 p != layout->section_list().end();
630 for (Layout::Section_list::const_iterator p
631 = layout->section_list().begin();
632 p != layout->section_list().end();
plugin.cc 155 update_section_order(const struct ld_plugin_section *section_list,
168 const struct ld_plugin_section *section_list,
    [all...]
script-sections.cc 149 typedef std::vector<Output_section_definition*> Section_list;
153 Section_list::const_iterator
159 Section_list::const_iterator
165 Section_list::const_iterator
171 Section_list::const_iterator
195 Section_list vma_sections_;
197 Section_list lma_sections_;
    [all...]
  /frameworks/base/cmds/incident/
main.cpp 98 static void section_list(FILE* out) { function
201 section_list(stdout);
  /external/google-breakpad/src/common/mac/
macho_reader.cc 371 segment.section_list.start = cursor.here();
372 segment.section_list.end = command.end;
457 ByteCursor cursor(&segment.section_list, big_endian_);
  /external/iproute2/bash-completion/
tc 220 local fword objfile section_list
227 section_list=$( objdump -h $objfile 2>/dev/null | \
229 COMPREPLY+=( $( compgen -W "$section_list" -- "$cur" ) )

Completed in 1119 milliseconds

1 2 3