HomeSort by relevance Sort by last modified time
    Searched defs:section (Results 76 - 100 of 572) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/boringssl/win-x86/crypto/fipsmodule/
x86-mont.asm 2 section code use32 class=code align=64 label
13 section .text code align=64 label
15 section .text code label
  /external/curl/lib/
imap.h 61 char *section; /* Message SECTION to fetch */ member in struct:IMAP
  /external/deqp/executor/
xeTestLogWriter.cpp 348 const ri::Section& section = static_cast<const ri::Section&>(item); local
349 dst << Writer::BeginElement("Section")
350 << Writer::Attribute("Name", section.name)
351 << Writer::Attribute("Description", section.description);
353 for (int ndx = 0; ndx < section.items.getNumItems(); ndx++)
354 writeResultItem(section.items.getItem(ndx), dst);
  /external/google-breakpad/src/common/dwarf/
dwarf2reader_cfi_unittest.cc 45 // an ELF file containing a .debug_frame or .eh_frame section; you can then
72 using google_breakpad::test_assembler::Section;
89 const CFISection &section);
90 #define PERHAPS_WRITE_DEBUG_FRAME_FILE(name, section) \
91 WriteELFFrameSection("cfitest-" name, ".debug_frame", section);
92 #define PERHAPS_WRITE_EH_FRAME_FILE(name, section) \
93 WriteELFFrameSection("cfitest-" name, ".eh_frame", section);
95 #define PERHAPS_WRITE_DEBUG_FRAME_FILE(name, section)
96 #define PERHAPS_WRITE_EH_FRAME_FILE(name, section)
123 MockCallFrameErrorReporter() : Reporter("mock filename", "mock section") { }
1974 CFISection section; member in struct:EHFrameFixture
    [all...]
  /external/google-breakpad/src/common/mac/
macho_reader.cc 197 " is too short to hold the section headers it claims to have\n",
206 void Reader::Reporter::MisplacedSectionData(const string &section,
208 fprintf(stderr, "%s: the section '%s' in segment '%s'"
210 filename_.c_str(), section.c_str(), segment.c_str());
370 // The section list occupies the remainder of this load command's space.
460 Section section; local
461 section.bits_64 = segment.bits_64;
465 .CString(&section.section_name, 16)
466 .CString(&section.segment_name, 16
    [all...]
  /external/google-breakpad/src/common/
test_assembler_unittest.cc 42 using google_breakpad::test_assembler::Section;
723 Section s;
727 Section s(kBigEndian);
730 // A fixture class for TestAssembler::Section tests.
733 Section section; member in class:SectionFixture
766 section.Append(data, sizeof(data));
767 ASSERT_TRUE(section.GetContents(&contents));
773 section.Append(data, sizeof(data));
774 section.Append(data, sizeof(data))
    [all...]
  /external/iproute2/include/
bpf_util.h 61 const char *section; member in struct:bpf_cfg_in
  /external/iw/
iw.c 185 const struct cmd *section, *cmd; local
200 for_each_cmd(section) {
201 if (section->parent)
204 if (sect_filt && strcmp(section->name, sect_filt))
207 if (section->handler && !section->hidden)
208 __usage_cmd(section, "\t", full);
211 if (section != cmd->parent)
305 const char *command, *section; local
352 section = *argv
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
module.hpp 34 struct section { struct in struct:clover::module
45 section(resource_id id, enum type type, size_t size, function in struct:clover::module::section
48 section() : id(0), type(text_intermediate), size(0), data() { } function in struct:clover::module::section
108 symbol(const std::string &name, resource_id section,
110 name(name), section(section), offset(offset), args(args) { }
111 symbol() : name(), section(0), offset(0), args() { }
114 resource_id section; member in struct:clover::module::symbol
124 std::vector<section> secs;
  /external/selinux/policycoreutils/sestatus/
sestatus.c 93 int buf_len, section = -1; local
125 section = 0;
127 section = 1;
129 switch (section) {
151 /* ignore lines before a section */
152 printf("Line not in a section: %s.\n",
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructor.java 104 String section = names[i]; local
105 if (section.indexOf('=') < 0) {
106 data.getArguments().add(section);
108 Matcher sm = PROPERTY_NAME_PATTERN.matcher(section);
  /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/camera/msm8998/QCamera2/HAL3/
QCamera3VendorTags.cpp 708 * RETURN : Success: the section name of the specific tag
729 * DESCRIPTION: Get section name for vendor tag
736 * RETURN : Success: the section name of the specific tag
749 uint32_t section = tag >> 16; local
751 if (section >= VENDOR_SECTION && section < QCAMERA3_SECTIONS_END)
752 ret = qcamera3_ext_section_names[section - VENDOR_SECTION];
753 else if (section >= TANGO_SECTIONS_START && section < TANGO_SECTIONS_END)
754 ret = tango_section_names[section - TANGO_SECTIONS_START]
782 uint32_t section = tag >> 16; local
826 uint32_t section = tag >> 16; local
    [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 263 public String section; field in class:NotificationBackend.Row
273 public boolean first; // first app in section
  /packages/apps/TV/src/com/android/tv/dvr/ui/list/
DvrHistoryRowAdapter.java 86 ArrayList<ScheduledRecording> section = new ArrayList<>(); local
88 section.add(recordingList.get(i++));
90 if (!section.isEmpty()) {
97 section.size(),
98 section.size()),
99 section.size(),
102 for (ScheduledRecording recording : 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/core/libunwindstack/
ElfInterface.cpp 60 // No PT_LOAD data, look for a fde for this pc in the section data.
136 // If there is an eh_frame section without an eh_frame_hdr section,
174 // We could still potentially unwind without the section header
177 log(0, "Malformed section header found, ignoring...");
265 // This is really the pointer to the .eh_frame_hdr section.
310 // Get the location of the section header names.
333 // Need to go get the information about the section that contains
403 // Find the soname location from the dynamic headers section.
504 DwarfSection* section = nullptr local
    [all...]
  /system/extras/simpleperf/
record_file_reader.cpp 370 SectionDesc section = it->second; local
371 data->resize(section.size);
372 if (section.size == 0) {
375 if (fseek(record_fp_, section.offset, SEEK_SET) != 0) {

Completed in 1772 milliseconds

1 2 34 5 6 7 8 91011>>