/frameworks/base/native/android/ |
D | trace.cpp | 24 void ATrace_beginSection(const char* sectionName) { in ATrace_beginSection() argument 25 atrace_begin(ATRACE_TAG_APP, sectionName); in ATrace_beginSection() 32 void ATrace_beginAsyncSection(const char* sectionName, int32_t cookie) { in ATrace_beginAsyncSection() argument 33 atrace_async_begin(ATRACE_TAG_APP, sectionName, cookie); in ATrace_beginAsyncSection() 36 void ATrace_endAsyncSection(const char* sectionName, int32_t cookie) { in ATrace_endAsyncSection() argument 37 atrace_async_end(ATRACE_TAG_APP, sectionName, cookie); in ATrace_endAsyncSection()
|
/frameworks/native/include/android/ |
D | trace.h | 63 void ATrace_beginSection(const char* sectionName) __INTRODUCED_IN(23); 91 void ATrace_beginAsyncSection(const char* sectionName, int32_t cookie) __INTRODUCED_IN(29); 103 void ATrace_endAsyncSection(const char* sectionName, int32_t cookie) __INTRODUCED_IN(29);
|
/frameworks/base/core/java/android/os/ |
D | Trace.java | 280 public static void beginSection(@NonNull String sectionName) { in beginSection() argument 282 if (sectionName.length() > MAX_SECTION_NAME_LEN) { in beginSection() 285 nativeTraceBegin(TRACE_TAG_APP, sectionName); in beginSection()
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/ |
D | SysTrace.java | 65 public static void beginSection(String sectionName) { in beginSection() argument 67 Log.v(TAG, String.format("beginSection[%d] %s", sNestingLevel, sectionName)); in beginSection()
|
/frameworks/av/camera/ |
D | VendorTagDescriptor.cpp | 192 String8 sectionName = parcel->readString8(); in readFromParcel() local 193 if (sectionName.isEmpty()) { in readFromParcel() 198 mSections.add(sectionName); in readFromParcel() 342 String8 sectionName = mSections[sectionId]; in dump() local 347 "", tag, name.string(), type, typeName, sectionName.string()); in dump() 555 const char *sectionName = vOps->get_section_name(vOps, tag); in createDescriptorFromOps() local 556 if (sectionName == NULL) { in createDescriptorFromOps() 561 String8 sectionString(sectionName); in createDescriptorFromOps()
|
D | CameraMetadata.cpp | 853 const String8 sectionName(section); in getTagFromName() local 857 if ((res = vTags->lookupTag(tagName, sectionName, &candidateTag)) != OK) { in getTagFromName()
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/pos/ |
D | AutoFocusStateMachine.java | 347 private synchronized void beginTraceAsync(String sectionName) { in beginTraceAsync() argument 355 mCurrentAfTrace = sectionName; in beginTraceAsync() 357 SysTrace.beginSectionAsync(sectionName, mCurrentAfCookie); in beginTraceAsync()
|
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
D | XmpDepthDecode.java | 372 String sectionName) { in checkExtendedSectionExists() argument 373 String extendedHeader = XMP_EXTENSION_HEADER + sectionName + "\0"; in checkExtendedSectionExists() 391 String sectionName) { in parseExtendedXMPSections() argument 392 String extendedHeader = XMP_EXTENSION_HEADER + sectionName + "\0"; in parseExtendedXMPSections()
|
/frameworks/native/cmds/dumpstate/tests/ |
D | dumpstate_smoke_test.cpp | 331 void SectionExists(const std::string& sectionName, int minsize) { in SectionExists() argument 333 if (sectionName == section.name) { in SectionExists() 334 EXPECT_GE(section.size_bytes, minsize) << " for section:" << sectionName; in SectionExists() 338 FAIL() << sectionName << " not found."; in SectionExists()
|
/frameworks/hardware/interfaces/cameraservice/common/2.0/ |
D | types.hal | 141 * The full name of the tag is <sectionName>.<tagName> 164 string sectionName;
|
/frameworks/av/services/camera/libcameraservice/tests/ |
D | CameraProviderManagerTest.cpp | 269 hardware::hidl_string sectionName = "VendorTestSection"; in TEST() local 275 vendorSection[0].sectionName = sectionName; in TEST() 304 vendorSection[0].sectionName = sectionNameSecond; in TEST()
|
/frameworks/av/camera/ndk/ndk_vendor/impl/ |
D | ACameraManager.cpp | 93 const char *sectionName = section.sectionName.c_str(); in createDescriptorFromHidl() local 94 if (sectionName == NULL) { in createDescriptorFromHidl() 98 String8 sectionString(sectionName); in createDescriptorFromHidl()
|
/frameworks/av/services/camera/libcameraservice/hidl/ |
D | HidlCameraService.cpp | 263 hVendorTagSections[s].sectionName = (*sectionNames)[s].string(); in getCameraVendorTagSections()
|
/frameworks/av/services/camera/libcameraservice/common/ |
D | CameraProviderManager.cpp | 2467 const char *sectionName = section.sectionName.c_str(); in createDescriptorFromHidl() local 2468 if (sectionName == NULL) { in createDescriptorFromHidl() 2472 String8 sectionString(sectionName); in createDescriptorFromHidl()
|