Searched defs:sectionName (Results 1 - 4 of 4) sorted by relevance

/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/av/camera/
H A DVendorTagDescriptor.cpp96 const char *sectionName = vOps->get_section_name(vOps, tag); local
97 if (sectionName == NULL) {
102 String8 sectionString(sectionName);
223 String8 sectionName = parcel->readString8();
224 if (sectionName.isEmpty()) {
229 desc->mSections.add(sectionName);
370 String8 sectionName = mSections[sectionId];
375 "", tag, name.string(), type, typeName, sectionName.string());
/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/base/core/java/android/os/
H A DTrace.java265 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
268 * @param sectionName The name of the code section to appear in the trace. This may be at
271 public static void beginSection(String sectionName) { argument
273 if (sectionName.length() > MAX_SECTION_NAME_LEN) {
274 throw new IllegalArgumentException("sectionName is too long");
276 nativeTraceBegin(TRACE_TAG_APP, sectionName);

Completed in 132 milliseconds