Searched refs: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/native/include/android/
H A Dtrace.h38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
/frameworks/support/compat/java/android/support/v4/os/
H A DTraceCompat.java35 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
38 * @param sectionName The name of the code section to appear in the trace. This may be at
42 public static void beginSection(String sectionName) { argument
44 TraceJellybeanMR2.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.java273 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
276 * @param sectionName The name of the code section to appear in the trace. This may be at
279 public static void beginSection(String sectionName) { argument
281 if (sectionName.length() > MAX_SECTION_NAME_LEN) {
282 throw new IllegalArgumentException("sectionName is too long");
284 nativeTraceBegin(TRACE_TAG_APP, sectionName);
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp180 String8 sectionName = parcel->readString8(); local
181 if (sectionName.isEmpty()) {
186 mSections.add(sectionName);
326 String8 sectionName = mSections[sectionId]; local
331 "", tag, name.string(), type, typeName, sectionName.string());
379 const char *sectionName = vOps->get_section_name(vOps, tag); local
380 if (sectionName == NULL) {
385 String8 sectionString(sectionName);
H A DCameraMetadata.cpp778 const String8 sectionName(section);
782 if ((res = vTags->lookupTag(tagName, sectionName, &candidateTag)) != OK) {
/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/rs/java/tests/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

Completed in 210 milliseconds