HomeSort by relevance Sort by last modified time
    Searched refs:sectionName (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /frameworks/base/native/android/
trace.cpp 24 void ATrace_beginSection(const char* sectionName) {
25 atrace_begin(ATRACE_TAG_APP, sectionName);
  /development/ndk/platforms/android-23/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r10/platforms/android-23/arch-arm/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r10/platforms/android-23/arch-arm64/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r10/platforms/android-23/arch-mips/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r10/platforms/android-23/arch-mips64/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r10/platforms/android-23/arch-x86/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r10/platforms/android-23/arch-x86_64/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-23/arch-arm/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-23/arch-arm64/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-23/arch-mips/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-23/arch-mips64/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-23/arch-x86/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-23/arch-x86_64/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-24/arch-arm/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-24/arch-arm64/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-24/arch-mips/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-24/arch-mips64/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-24/arch-x86/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /prebuilts/ndk/r11/platforms/android-24/arch-x86_64/usr/include/android/
trace.h 38 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
41 void ATrace_beginSection(const char* sectionName);
  /frameworks/native/include/android/
trace.h 48 * by the tracing mechanism. If sectionName contains these characters they will be replaced with a
51 void ATrace_beginSection(const char* sectionName);
  /external/swiftshader/src/Common/
Configurator.hpp 32 std::string getValue(std::string sectionName, std::string valueName, std::string defaultValue = "") const;
33 int getInteger(std::string sectionName, std::string valueName, int defaultValue = 0) const;
34 bool getBoolean(std::string sectionName, std::string valueName, bool defaultValue = false) const;
35 double getFloat(std::string sectionName, std::string valueName, double defaultValue = 0.0) const;
36 unsigned int getFormatted(std::string sectionName, std::string valueName, char *format,
42 void addValue(std::string sectionName, std::string valueName, std::string value);
49 unsigned int addKeyName(std::string sectionName);
50 int findKey(std::string sectionName) const;
  /frameworks/support/compat/java/android/support/v4/os/
TraceCompat.java 36 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
39 * @param sectionName The name of the code section to appear in the trace. This may be at
43 public static void beginSection(String sectionName) {
45 Trace.beginSection(sectionName);
  /packages/apps/Messaging/src/com/android/messaging/util/
Trace.java 37 abstract void beginSection(String sectionName);
60 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
63 * @param sectionName The name of the code section to appear in the trace. This may be at
66 public static void beginSection(String sectionName) {
68 LogUtil.v(TAG, "beginSection() " + sectionName);
70 sTrace.beginSection(sectionName);
93 void beginSection(String sectionName) {
94 android.os.Trace.beginSection(sectionName);
108 void beginSection(String sectionName) {
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
SysTrace.java 59 * 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) {
67 Log.v(TAG, String.format("beginSection[%d] %s", sNestingLevel, sectionName));

Completed in 1118 milliseconds

1 2 3 4 5