Searched refs:sectionName (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/native/android/
H A Dtrace.cpp24 void ATrace_beginSection(const char* sectionName) { argument
25 atrace_begin(ATRACE_TAG_APP, sectionName);
/frameworks/native/include/android/
H A Dtrace.h48 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
51 void ATrace_beginSection(const char* sectionName);
/frameworks/support/core/ktx/src/main/java/androidx/core/os/
H A DTrace.kt22 * Wrap the specified [block] in calls to [Trace.beginSection] (with the supplied [sectionName])
25 inline fun <T> trace(sectionName: String, block: () -> T): T {
26 TraceCompat.beginSection(sectionName)
/frameworks/support/compat/src/main/java/androidx/core/os/
H A DTraceCompat.java36 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
39 * @param sectionName The name of the code section to appear in the trace. This may be at
43 public static void beginSection(String sectionName) { argument
45 Trace.beginSection(sectionName);
/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
H A DSysTrace.java59 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
62 * @param sectionName The name of the code section to appear in the trace. This may be at
65 public static void beginSection(String sectionName) { argument
67 Log.v(TAG, String.format("beginSection[%d] %s", sNestingLevel, sectionName));
/frameworks/base/core/java/android/os/
H A DTrace.java293 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
296 * @param sectionName The name of the code section to appear in the trace. This may be at
299 public static void beginSection(String sectionName) { argument
301 if (sectionName.length() > MAX_SECTION_NAME_LEN) {
302 throw new IllegalArgumentException("sectionName is too long");
304 nativeTraceBegin(TRACE_TAG_APP, sectionName);
/frameworks/ex/camera2/public/src/com/android/ex/camera2/pos/
H A DAutoFocusStateMachine.java347 private synchronized void beginTraceAsync(String sectionName) { argument
355 mCurrentAfTrace = sectionName;
357 SysTrace.beginSectionAsync(sectionName, mCurrentAfCookie);
/frameworks/native/cmds/dumpstate/tests/
H A Ddumpstate_smoke_test.cpp206 void SectionExists(const std::string& sectionName, int minsize) { argument
208 if (sectionName == section.name) {
213 FAIL() << sectionName << " not found.";
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DXmpDepthDecode.java368 * @param sectionName The name of the extended sections
372 String sectionName) {
373 String extendedHeader = XMP_EXTENSION_HEADER + sectionName + "\0";
387 * @param sectionName The name of the extended sections
391 String sectionName) {
392 String extendedHeader = XMP_EXTENSION_HEADER + sectionName + "\0";
371 checkExtendedSectionExists(List<Section> sections, String sectionName) argument
390 parseExtendedXMPSections(List<Section> sections, String sectionName) argument
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp192 String8 sectionName = parcel->readString8(); local
193 if (sectionName.isEmpty()) {
198 mSections.add(sectionName);
338 String8 sectionName = mSections[sectionId]; local
343 "", tag, name.string(), type, typeName, sectionName.string());
546 const char *sectionName = vOps->get_section_name(vOps, tag); local
547 if (sectionName == NULL) {
552 String8 sectionString(sectionName);
H A DCameraMetadata.cpp781 const String8 sectionName(section);
785 if ((res = vTags->lookupTag(tagName, sectionName, &candidateTag)) != OK) {
/frameworks/av/services/camera/libcameraservice/tests/
H A DCameraProviderManagerTest.cpp229 hardware::hidl_string sectionName = "VendorTestSection"; local
235 vendorSection[0].sectionName = sectionName;
264 vendorSection[0].sectionName = sectionNameSecond;
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraProviderManager.cpp1396 const char *sectionName = section.sectionName.c_str(); local
1397 if (sectionName == NULL) {
1401 String8 sectionString(sectionName);

Completed in 586 milliseconds