Home
last modified time | relevance | path

Searched refs:Section (Results 1 – 25 of 66) sorted by relevance

123

/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
DXmpDepthDecode.java127 private static class Section { class in XmpDepthDecode
134 List<Section> sections = parse(is, true, skipExtendedContent); in read()
196 private static List<Section> parse(InputStream is, boolean readMetaOnly, in parse()
198 List<Section> sections = new ArrayList<Section>(); in parse()
223 Section section = new Section(); in parse()
284 private static Section readSection(InputStream is, int length, in readSection()
287 Section section = new Section(); in readSection()
299 Section section = new Section(); in readSection()
307 Section section = new Section(); in readSection()
345 private static XMPMeta parseFirstValidXMPSection(List<Section> sections) { in parseFirstValidXMPSection()
[all …]
/frameworks/base/cmds/incidentd/src/
DSection.h41 class Section {
47 Section(int id, int64_t timeoutMs = REMOTE_CALL_TIMEOUT_MS);
48 virtual ~Section();
56 class FileSection : public Section {
72 class GZipSection : public Section {
87 class WorkerThreadSection : public Section {
100 class CommandSection : public Section {
133 class TextDumpsysSection : public Section {
DReporter.h45 class Section; variable
205 void warning(const Section* section, status_t err, const char* format, ...);
206 void error(const Section* section, status_t err, const char* format, ...);
254 void vflog(const Section* section, status_t err, int level, const char* levelText,
277 status_t execute_section(const Section* section, IncidentMetadata* metadata,
Dsection_list.h34 extern const Section* SECTION_LIST[];
DSection.cpp79 Section::Section(int i, int64_t timeoutMs) in Section() function in android::os::incidentd::Section
84 Section::~Section() {} in ~Section()
90 : Section(id, timeoutMs), mFilename(filename) { in FileSection()
145 GZipSection::GZipSection(int id, const char* filename, ...) : Section(id) { in GZipSection()
253 : Section(id, timeoutMs) {} in WorkerThreadSection()
332 : Section(id, timeoutMs) { in CommandSection()
344 CommandSection::CommandSection(int id, const char* command, ...) : Section(id) { in CommandSection()
442 :Section(id), mService(service) { in TextDumpsysSection()
DReporter.cpp443 void ReportWriter::warning(const Section* section, status_t err, const char* format, ...) { in warning()
450 void ReportWriter::error(const Section* section, status_t err, const char* format, ...) { in error()
457 void ReportWriter::vflog(const Section* section, status_t err, int level, const char* levelText, in vflog()
638 for (const Section** section = SECTION_LIST; *section; section++) { in runReport()
644 for (const Section* section : mRegisteredSections) { in runReport()
705 status_t Reporter::execute_section(const Section* section, IncidentMetadata* metadata, in execute_section()
/frameworks/base/cmds/incidentd/tests/
Dsection_list.cpp11 class TestSection: public Section {
19 :Section(id, 5000 /* ms timeout */) { in TestSection()
50 const Section* SECTION_LIST[] = {
/frameworks/base/services/core/java/com/android/server/power/stats/
DPowerStatsSpan.java262 public abstract static class Section { class in PowerStatsSpan
265 Section(String type) { in Section() method in PowerStatsSpan.Section
296 Section read(String sectionType, TypedXmlPullParser parser) in read()
301 private final List<Section> mSections = new ArrayList<>();
324 void addSection(Section section) { in addSection()
330 public List<Section> getSections() { in getSections()
346 for (Section section : mSections) { in writeXml()
389 Section section = sectionReader.read(sectionType, parser); in read()
395 section = new Section(sectionType) { in read()
426 for (Section section : mSections) { in dump()
DAggregatedPowerStatsSection.java25 class AggregatedPowerStatsSection extends PowerStatsSpan.Section {
DBatteryUsageStatsSection.java26 class BatteryUsageStatsSection extends PowerStatsSpan.Section {
DPowerStatsExporter.java100 List<PowerStatsSpan.Section> sections = span.getSections(); in exportAggregatedPowerStats()
103 PowerStatsSpan.Section section = sections.get(k); in exportAggregatedPowerStats()
/frameworks/native/opengl/specs/
DEGL_ANDROID_framebuffer_target.txt63 Section 3.4, Configuration Management, add a row to Table 3.1.
71 Section 3.4, Configuration Management, add a row to Table 3.4.
78 Section 3.4, Configuration Management, add a paragraph at the end of the
86 Section 3.4.1, Querying Configurations, change the last paragraph as follow
DEGL_ANDROID_recordable.txt62 Section 3.4, Configuration Management, add a row to Table 3.1.
69 Section 3.4, Configuration Management, add a row to Table 3.4.
76 Section 3.4, Configuration Management, add a paragraph at the end of the
84 Section 3.4.1, Querying Configurations, change the last paragraph as follow
DEGL_ANDROID_native_fence_sync.txt86 Add the following after the sixth paragraph of Section 3.8.1 (Sync
112 Modify Section 3.8.1 (Sync Objects), added by KHR_fence_sync, starting at
147 Modify the list of eglCreateSyncKHR errors in Section 3.8.1 (Sync Objects),
180 Modify table 3.cc in Section 3.8.1 (Sync Objects), added by KHR_fence_sync
191 Modify the second paragraph description of eglDestroySyncKHR in Section
200 Add the following after the last paragraph of Section 3.8.1 (Sync
/frameworks/native/services/surfaceflinger/Utils/
DDumper.h101 struct Section { struct
102 Section(Dumper& dumper, std::string_view heading) : dumper(dumper) { in Section() argument
107 ~Section() { in ~Section() argument
/frameworks/compile/mclinker/lib/Script/
DScriptParser.yy144 /* Input Section Description */
152 /* Output Section Data */
159 /* Output Section Discarding */
161 /* Output Section Keywords */
164 /* Output Section Attributes */
165 /* Output Section Type */
171 /* Output Section LMA */
175 /* Output Section Constraint */
384 /* Output Section Attributes */
481 an input section description (see Input Section)
[all …]
DScriptScanner.ll133 /* Input Section Description */
141 /* Output Section Data */
148 /* Output Section Discarding */
150 /* Output Section Keywords */
153 /* Output Section Attributes */
154 /* Output Section Type */
160 /* Output Section LMA */
164 /* Output Section Constraint */
/frameworks/base/core/java/com/android/internal/os/
DPowerStats.java598 private static class Section { class in PowerStats.PowerStatsFormatter
609 private final List<Section> mSections;
623 private List<Section> parseFormat(String format) { in parseFormat()
628 ArrayList<Section> sections = new ArrayList<>(); in parseFormat()
635 Section section = new Section(); in parseFormat()
668 private String format(List<Section> sections, long[] stats) { in format()
675 Section section = sections.get(i); in format()
/frameworks/base/cmds/incident_helper/java/com/android/commands/incident/
DIncidentHelper.java52 Section section = null; in run()
71 private static Section getSection(String name) throws IllegalArgumentException { in getSection()
DSection.java24 public interface Section { interface
/frameworks/compile/mclinker/lib/Fragment/
DRelocation.cpp87 if (m_pSymInfo->type() == ResolveInfo::Section && in symValue()
144 if (m_pSymInfo->type() == ResolveInfo::Section) { in updateAddend()
/frameworks/compile/mclinker/unittests/
DLinkerTest.cpp440 ResolveInfo::Section, in TEST_F()
449 ResolveInfo::Section, in TEST_F()
458 ResolveInfo::Section, in TEST_F()
467 ResolveInfo::Section, in TEST_F()
/frameworks/compile/mclinker/include/mcld/LD/
DResolveInfo.h53 Section = 3, enumerator
246 static const uint32_t section_flag = Section << TYPE_OFFSET;
/frameworks/compile/mclinker/lib/LD/
DSectionSymbolSet.cpp40 ResolveInfo::Section, in add()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/
DShadeListBuilderLogger.kt290 "(Build $long1) Section assigned: $str2"
292 "(Build $long1) Section changed: $str1 -> $str2"

123