/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 | 61 void ATrace_beginSection(const char* sectionName) __INTRODUCED_IN(23); 85 void ATrace_beginAsyncSection(const char* sectionName, int32_t cookie) __INTRODUCED_IN(29); 97 void ATrace_endAsyncSection(const char* sectionName, int32_t cookie) __INTRODUCED_IN(29);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/dump/ |
D | DumpsysTableLogger.kt | 81 private val sectionName: String, in <lambda>() constant in com.android.systemui.dump.DumpsysTableLogger 96 pw.append(HEADER_PREFIX).println(sectionName) in <lambda>() 101 pw.append(FOOTER_PREFIX).println(sectionName) in <lambda>()
|
/frameworks/av/services/camera/libcameraservice/common/ |
D | CameraProviderInfoTemplated.h | 51 const char *sectionName = section.sectionName.c_str(); in createDescriptorFromIdl() local 52 if (sectionName == NULL) { in createDescriptorFromIdl() 56 String8 sectionString(sectionName); in createDescriptorFromIdl()
|
/frameworks/libs/systemui/tracinglib/core/host/src-fake/ |
D | TraceProxy.fake.kt | 43 fun begin(sectionName: String) { in begin() 47 allThreadStates[threadId]!!.add(sectionName) in begin() 49 allThreadStates[threadId] = mutableListOf(sectionName) in begin()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | SettingsXml.java | 80 public WriteSection startSection(@NonNull String sectionName) throws IOException { in startSection() argument 81 return mWriteSection.startSection(sectionName); in startSection() 319 WriteSection startSection(@NonNull String sectionName) throws IOException; in startSection() argument 348 public WriteSection startSection(@NonNull String sectionName) throws IOException { in startSection() argument 350 mXmlSerializer.startTag(null, sectionName); in startSection() 351 mTagStack.push(sectionName); in startSection()
|
/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/base/core/java/android/view/ |
D | ViewTraversalTracingStrings.java | 55 private String getTraceName(String sectionName, String className, View v) { in getTraceName() argument 57 out.append(sectionName); in getTraceName()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/ |
D | DumpUtils.kt | 64 inline fun IndentingPrintWriter.printSection(sectionName: String, block: () -> Unit) { in println() 65 append(sectionName).println(":") in println()
|
/frameworks/base/core/java/android/os/ |
D | Trace.java | 468 public static void beginSection(@NonNull String sectionName) { in beginSection() argument 470 if (sectionName.length() > MAX_SECTION_NAME_LEN) { in beginSection() 473 nativeTraceBegin(TRACE_TAG_APP, sectionName); in beginSection()
|
/frameworks/hardware/interfaces/cameraservice/common/aidl/aidl_api/android.frameworks.cameraservice.common/1/android/frameworks/cameraservice/common/ |
D | VendorTagSection.aidl | 37 String sectionName;
|
/frameworks/hardware/interfaces/cameraservice/common/aidl/aidl_api/android.frameworks.cameraservice.common/current/android/frameworks/cameraservice/common/ |
D | VendorTagSection.aidl | 37 String sectionName;
|
/frameworks/hardware/interfaces/cameraservice/common/aidl/android/frameworks/cameraservice/common/ |
D | VendorTagSection.aidl | 29 String sectionName;
|
/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/av/camera/ |
D | VendorTagDescriptor.cpp | 192 String8 sectionName = parcel->readString8(); in readFromParcel() local 193 if (sectionName.empty()) { in readFromParcel() 198 mSections.add(sectionName); in readFromParcel() 342 String8 sectionName = mSections[sectionId]; in dump() local 347 "", tag, name.c_str(), type, typeName, sectionName.c_str()); 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 | 870 const String8 sectionName(section); in getTagFromName() local 874 if ((res = vTags->lookupTag(tagName, sectionName, &candidateTag)) != OK) { in getTagFromName()
|
/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/base/services/tests/PackageManagerServiceTests/host/src/com/android/server/pm/test/ |
D | HostUtils.kt | 128 sectionName: String = "Packages" in packageSection() 131 .dropWhile { !it.startsWith(sectionName) } // Wait until the header in packageSection()
|
D | SdCardEjectionTests.kt | 245 HostUtils.packageSection(device, pkgName, sectionName = "Compiler stats") in remount()
|
/frameworks/hardware/interfaces/cameraservice/common/2.0/ |
D | types.hal | 141 * The full name of the tag is <sectionName>.<tagName> 164 string sectionName;
|
/frameworks/base/cmds/incident_helper/java/com/android/commands/incident/sections/ |
D | PersistLogSection.java | 172 private void setCurrentSection(String sectionName) { in setCurrentSection() argument 173 Long sectionId = SECTION_NAME_TO_ID.get(sectionName); in setCurrentSection() 175 IncidentHelper.log(Log.WARN, TAG, "Section does not exist: " + sectionName); in setCurrentSection()
|
/frameworks/native/cmds/dumpstate/tests/ |
D | dumpstate_smoke_test.cpp | 351 void SectionExists(const std::string& sectionName, int minsize) { in SectionExists() argument 353 if (sectionName == section.name) { in SectionExists() 354 EXPECT_GE(section.size_bytes, minsize) << " for section:" << sectionName; in SectionExists() 358 FAIL() << sectionName << " not found."; in SectionExists()
|
/frameworks/av/camera/ndk/ndk_vendor/impl/ |
D | ACameraManager.cpp | 98 const char *sectionName = section.sectionName.c_str(); in createDescriptorFromAidl() local 99 if (sectionName == nullptr) { in createDescriptorFromAidl() 103 String8 sectionString(sectionName); in createDescriptorFromAidl() 121 tagToSectionMap.insert({tag, section.sectionName}); in createDescriptorFromAidl()
|
/frameworks/av/services/camera/libcameraservice/tests/ |
D | CameraProviderManagerTest.cpp | 580 hardware::hidl_string sectionName = "VendorTestSection"; in TEST() local 586 vendorSection[0].sectionName = sectionName; in TEST() 615 vendorSection[0].sectionName = sectionNameSecond; in TEST()
|
/frameworks/av/services/camera/libcameraservice/hidl/ |
D | HidlCameraService.cpp | 314 hVendorTagSections[s].sectionName = (*sectionNames)[s].c_str(); in getCameraVendorTagSections()
|