Home
last modified time | relevance | path

Searched refs:ADebug (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/tests/
DUtils_test.cpp111 #define LVL(x) (ADebug::Level)(x) in TEST_F()
112 ASSERT_EQ(ADebug::GetDebugLevelFromString("video", "", LVL(5)), LVL(5)); in TEST_F()
113 ASSERT_EQ(ADebug::GetDebugLevelFromString("video", " \t \n ", LVL(2)), LVL(2)); in TEST_F()
114 ASSERT_EQ(ADebug::GetDebugLevelFromString("video", "3", LVL(5)), LVL(3)); in TEST_F()
115 ASSERT_EQ(ADebug::GetDebugLevelFromString("video", "3:*deo", LVL(5)), LVL(3)); in TEST_F()
116 ASSERT_EQ(ADebug::GetDebugLevelFromString( in TEST_F()
118 ASSERT_EQ(ADebug::GetDebugLevelFromString("video", "3:*deo,2:vid*", LVL(5)), LVL(2)); in TEST_F()
119 ASSERT_EQ(ADebug::GetDebugLevelFromString( in TEST_F()
121 ASSERT_EQ(ADebug::GetDebugLevelFromString( in TEST_F()
123 ASSERT_EQ(ADebug::GetDebugLevelFromString( in TEST_F()
[all …]
/frameworks/av/media/libstagefright/foundation/
DADebug.cpp34 ADebug::Level ADebug::GetDebugLevelFromString( in GetDebugLevelFromString()
35 const char *name, const char *value, ADebug::Level def) { in GetDebugLevelFromString()
86 ADebug::Level ADebug::GetDebugLevelFromProperty( in GetDebugLevelFromProperty()
87 const char *name, const char *propertyName, ADebug::Level def) { in GetDebugLevelFromProperty()
96 char *ADebug::GetDebugName(const char *name) { in GetDebugName()
DAndroid.mk8 ADebug.cpp \
/frameworks/av/media/libstagefright/omx/
DOMXNodeInstance.cpp56 #define CLOG_LIFE(fn, fmt, ...) CLOGI_(ADebug::kDebugLifeCycle, fn, fmt, ##__VA_ARGS__)
57 #define CLOG_STATE(fn, fmt, ...) CLOGI_(ADebug::kDebugState, fn, fmt, ##__VA_ARGS__)
58 #define CLOG_CONFIG(fn, fmt, ...) CLOGI_(ADebug::kDebugConfig, fn, fmt, ##__VA_ARGS__)
59 #define CLOG_INTERNAL(fn, fmt, ...) CLOGD_(ADebug::kDebugInternalState, fn, fmt, ##__VA_ARGS__)
65 CLOG_DEBUG_IF(DEBUG >= ADebug::kDebugAll, fn, fmt, ##__VA_ARGS__)
67 CLOG_DEBUG_IF(DEBUG_BUMP >= ADebug::kDebugAll, fn, fmt, ##__VA_ARGS__)
177 mName = ADebug::GetDebugName(name); in OMXNodeInstance()
178 DEBUG = ADebug::GetDebugLevelFromProperty(name, "debug.stagefright.omx-debug"); in OMXNodeInstance()
996 if (DEBUG == ADebug::kDebugInternalState) { in bumpDebugLevel_l()
997 DEBUG_BUMP = ADebug::kDebugAll; in bumpDebugLevel_l()
[all …]
/frameworks/av/include/media/stagefright/foundation/
DADebug.h83 struct ADebug { struct