Searched defs:sectionName (Results 1 - 9 of 9) 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/support/compat/java/android/support/v4/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/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/av/services/camera/libcameraservice/tests/
H A DCameraProviderManagerTest.cpp228 hardware::hidl_string sectionName = "VendorTestSection"; local
234 vendorSection[0].sectionName = sectionName;
263 vendorSection[0].sectionName = sectionNameSecond;
/frameworks/base/core/java/android/os/
H A DTrace.java283 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
286 * @param sectionName The name of the code section to appear in the trace. This may be at
289 public static void beginSection(String sectionName) { argument
291 if (sectionName.length() > MAX_SECTION_NAME_LEN) {
292 throw new IllegalArgumentException("sectionName is too long");
294 nativeTraceBegin(TRACE_TAG_APP, sectionName);
/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);
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraProviderManager.cpp1288 const char *sectionName = section.sectionName.c_str(); local
1289 if (sectionName == NULL) {
1293 String8 sectionString(sectionName);

Completed in 312 milliseconds