Searched defs:sectionName (Results 1 - 7 of 7) 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/v4/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/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/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);
/frameworks/base/core/java/android/os/
H A DTrace.java271 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
274 * @param sectionName The name of the code section to appear in the trace. This may be at
277 public static void beginSection(String sectionName) { argument
279 if (sectionName.length() > MAX_SECTION_NAME_LEN) {
280 throw new IllegalArgumentException("sectionName is too long");
282 nativeTraceBegin(TRACE_TAG_APP, sectionName);
/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 2922 milliseconds