/frameworks/compile/mclinker/lib/LD/ |
EhFrameReader.cpp | 120 LDSection& section = pEhFrame.getSection(); local 121 if (section.size() == 0x0) { 128 uint64_t file_off = pInput.fileOffset() + section.offset(); 130 pInput.memArea()->request(file_off, section.size());
|
GarbageCollection.cpp | 43 // SectionMap will cause the output order change in .text section and leads to 50 /// shouldKeep - check the section name for the keep sections 61 /// shouldProcessGC - check if the section kind is handled in GC 109 // section 131 // bypass the discarded relocation section 132 // 1. its section kind is changed to Ignore. (The target section is a 133 // discarded group section.) 168 // of this section, create an entry in ReachedSections map 190 LDSection* section = *sect local 332 LDSection* section = *sect; local [all...] |
/hardware/qcom/audio/hal/ |
platform_info.c | 59 static section_t section; variable 318 section = ACDB; 320 section = PCM_ID; 322 section = BACKEND_NAME; 324 section = CONFIG_PARAMS; 326 section = OPERATOR_SPECIFIC; 328 section = GAIN_LEVEL_MAPPING; 330 if ((section != ACDB) && (section != BACKEND_NAME) && (section != OPERATOR_SPECIFIC)) [all...] |
/packages/apps/Camera2/src/com/android/camera/util/ |
XmpUtil.java | 62 // to hold the section data from image file. 63 private static class Section { 106 List<Section> sections = parse(is, true); 111 for (Section section : sections) { 112 if (hasXMPHeader(section.data)) { 113 int end = getXMPContentEnd(section.data); 116 section.data, XMP_HEADER_SIZE, buffer, 0, buffer.length); 153 List<Section> sections = null; 189 List<Section> sections = parse(inputStream, false) 360 Section section = new Section(); local 376 Section section = new Section(); local [all...] |
/packages/apps/Contacts/src/com/android/contacts/list/ |
EmailAddressListAdapter.java | 156 final int section = getSectionForPosition(position); local 157 if (getPositionForSection(section) == position) { 158 String title = (String)getSections()[section];
|
IndexerListAdapter.java | 25 * A list adapter that supports section indexer and a pinned header. 37 * at the beginning, middle or end of a section. It also needs to know the 38 * section header when it is at the beginning of a section. This object 63 * Creates a section header view that will be pinned at the top of the list 107 * @return relative position of the section in the indexed partition 164 int section = -1; local 169 section = getSectionForPosition(offset); 173 if (section == -1) { 181 setPinnedSectionTitle(mHeader, (String)mIndexer.getSections()[section]); 229 int section = getSectionForPosition(position); local [all...] |
PostalAddressListAdapter.java | 147 final int section = getSectionForPosition(position); local 148 if (getPositionForSection(section) == position) { 149 String title = (String)getSections()[section];
|
/packages/apps/Dialer/java/com/android/contacts/common/list/ |
IndexerListAdapter.java | 24 /** A list adapter that supports section indexer and a pinned header. */ 41 * Creates a section header view that will be pinned at the top of the list as the user scrolls. 81 /** @return relative position of the section in the indexed partition */ 135 int section = -1; local 140 section = getSectionForPosition(offset); 144 if (section == -1) { 152 setPinnedSectionTitle(mHeader, (String) mIndexer.getSections()[section]); 160 // Compute the item position where the next section begins 161 int nextSectionPosition = partitionStart + getPositionForSection(section + 1); 169 * Computes the item's placement within its section and populates the {@code placement} objec 180 int section = getSectionForPosition(position); local [all...] |
/packages/apps/Settings/src/com/android/settings/notification/ |
NotificationBackend.java | 188 public String section; field in class:NotificationBackend.Row 198 public boolean first; // first app in section
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
ContactEntryAdapter.java | 86 * Resets the section data. 88 * @param sections the section data 97 * Resets the section data and returns the position of the given entry. 99 * @param sections the section data 110 ArrayList<E> section = mSections.get(i); local 111 int sectionSize = section.size(); 113 E e = section.get(j); 150 ArrayList<E> section = mSections.get(i); local 151 int sectionSize = section.size(); 153 // The section only contains a separator and nothing else, skip i 183 ArrayList<T> section = sections.get(i); local 208 ArrayList<T> section = sections.get(i); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
UiElementPart.java | 32 import org.eclipse.ui.forms.widgets.Section; 35 * Generic page's section part that displays all attributes of a given {@link UiElementNode}. 104 * Setup the section that contains this part. 106 * This is called by the constructor to set the section's title and description 112 * @param sectionTitle The section part's title 113 * @param sectionDescription The section part's description 116 Section section = getSection(); local 117 section.setText(sectionTitle); 118 section.setDescription(sectionDescription) [all...] |
/system/bt/osi/src/ |
config.cc | 59 static section_t* section_find(const config_t* config, const char* section); 63 static entry_t* entry_find(const config_t* config, const char* section, 135 bool config_has_section(const config_t* config, const char* section) { 137 CHECK(section != NULL); 139 return (section_find(config, section) != NULL); 142 bool config_has_key(const config_t* config, const char* section, 145 CHECK(section != NULL); 148 return (entry_find(config, section, key) != NULL); 151 int config_get_int(const config_t* config, const char* section, const char* key, 154 CHECK(section != NULL) 275 const section_t* section = (const section_t*)list_node(lnode); local 327 const section_t* section = (const section_t*)list_node(node); local 427 char section[1024]; local 462 section_t* section = static_cast<section_t*>(osi_calloc(sizeof(section_t))); local [all...] |
/system/extras/simpleperf/ |
record_file_reader.cpp | 316 SectionDesc section = it->second; local 317 data->resize(section.size); 318 if (section.size == 0) { 321 if (fseek(record_fp_, section.offset, SEEK_SET) != 0) {
|
/system/media/camera/tests/ |
camera_metadata_tests_fake_vendor.h | 163 int section; local 168 for (section = 0; section < FAKEVENDOR_SECTION_COUNT; section++) { 169 start = fakevendor_section_bounds[section][0]; 170 end = fakevendor_section_bounds[section][1]; 177 int section; local 181 for (section = 0; section < FAKEVENDOR_SECTION_COUNT; section++) [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
libieee.h | 52 asection *section; member in struct:ieee_per_section 78 /* Map of section indexes to section ptrs */
|
liboasys.h | 39 asection *section; member in struct:_oasys_per_section
|
nlm32-alpha.c | 154 reloc always seems to be against the .lita section. */ 171 use this to eliminate a portion of the .lita section. The symbol 471 or .data section. R_NW_RELOC relocs don't really have a section, 495 /* The PC relative relocs do not seem to use the section VMA as 545 to the absolute section so that the reloc is ignored. For 547 the section vma. We record the gp value for this object file 556 the addend to the size of the .lita section (this is 623 sym -> symbol.section = bfd_und_section_ptr; 636 asection *section; 634 asection *section; local [all...] |
nlm32-ppc.c | 634 sym -> symbol.section = bfd_und_section_ptr; 646 asection *section; 648 if (! nlm_powerpc_read_reloc (abfd, sym, §ion, &nlm_relocs -> reloc)) 650 nlm_relocs -> section = section; 686 segment, rightshifted by two. This offset is the section vma, 687 adjusted by the vma of the lowest section in that segment, plus 697 /* The high bit is 0 if the reloc is in the data section, or 1 if 698 the reloc is in the code section. */ 891 /* Set the section for a public symbol. * 645 asection *section; local [all...] |
pei-x86_64.c | 37 /* Long section names not allowed in executable images, only object files. */ 288 /* Check wether section SEC_NAME contains the xdata at address ADDR. */ 293 asection *section = bfd_get_section_by_name (abfd, sec_name); local 297 if (section == NULL 298 || coff_section_data (abfd, section) == NULL 299 || pei_section_data (abfd, section) == NULL) 301 vsize = section->vma - pe_data (abfd)->pe_opthdr.ImageBase; 302 datasize = section->size; 305 return section; 309 designate the bfd section containing the xdata, XDATA is its content [all...] |
/toolchain/binutils/binutils-2.25/binutils/ |
addr2line.c | 62 {"section", required_argument, NULL, 'j'}, 90 -j --section=<name> Read section-relative offsets instead of addresses\n\ 158 /* Look for an address in a section. This is called via 162 find_address_in_section (bfd *abfd, asection *section, 171 if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0) 174 vma = bfd_get_section_vma (abfd, section); 178 size = bfd_get_section_size (section); 182 found = bfd_find_nearest_line_discriminator (abfd, section, syms, pc - vma, 187 /* Look for an offset in a section. This is directly called. * 356 asection *section; local [all...] |
/toolchain/binutils/binutils-2.25/include/ |
dis-asm.h | 86 /* Some targets need information about the current section to accurately 89 asection *section; member in struct:disassemble_info 181 /* The number of zeroes we want to see at the end of a section before we 185 /* The number of zeroes to skip at the end of a section. If the number 189 attempt to avoid disassembling zeroes inserted by section
|
/tools/apksig/src/main/java/com/android/apksig/internal/jar/ |
ManifestParser.java | 29 * <p>These files consist of a main section followed by individual sections. Individual sections 61 public List<Section> readAllSections() { 62 List<Section> sections = new ArrayList<>(); 63 Section section; local 64 while ((section = readSection()) != null) { 65 sections.add(section); 71 * Returns the next section from this file or {@code null} if end of file has been reached. 73 public Section readSection() { 87 // Read attributes until end of section reache [all...] |
/tools/tradefederation/core/prod-tests/src/com/android/performance/tests/ |
GeekbenchTest.java | 171 JSONObject section = arr.getJSONObject(i); local 172 String sectionName = section.getString("name"); 173 String sectionScore = section.getString("score"); 174 String sectionScoreMulticore = section.getString("multicore_score");
|
/art/dexlayout/ |
dexdiag.cc | 50 static constexpr char kSectionHeader[] = "Section name"; 144 // Computes the width of the section header column in the table (for fixed formatting). 177 for (const auto& section : sections) { 178 size_t first_page_of_section = section.offset / kPageSize; 180 if (section.size == 0) { 183 // Attribute the page to the highest-offset section that starts before the page. 185 return section.type; 188 // If there's no non-zero sized section with an offset below offset we're looking for, it 239 const dex_ir::DexFileSection& section = sections[i - 1]; local 240 const uint16_t type = section.type [all...] |
/development/samples/Vault/src/com/example/android/vault/ |
EncryptedDocument.java | 53 * encrypted metadata section, followed by an encrypted content section. The 54 * content section always starts at a specific offset {@link #CONTENT_OFFSET} to 57 * Each section is encrypted using AES-128 with a random IV, and authenticated 71 * Offset in file at which content section starts. Magic and metadata 72 * section must fully fit before this offset. 129 * Decrypt and return parsed metadata section from this document. 140 // Only interested in metadata section 166 * Decrypt and read content section of this document, writing it into the 188 // Skip over metadata section 274 final Section section = new Section(); local 312 final Section section = new Section(); local [all...] |