Home
last modified time | relevance | path

Searched refs:LOGV (Results 1 – 6 of 6) sorted by relevance

/development/ndk/platforms/android-21/samples/native-codec/jni/
Dnative-codec-jni.cpp45 #define LOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, TAG, __VA_ARGS__) macro
92 LOGV("input buffer %zd", bufidx); in doCodecWork()
100 LOGV("EOS"); in doCodecWork()
115 LOGV("output EOS"); in doCodecWork()
132 LOGV("output buffers changed"); in doCodecWork()
136 LOGV("format changed to: %s", AMediaFormat_toString(format)); in doCodecWork()
139 LOGV("no output buffer right now"); in doCodecWork()
141 LOGV("unexpected info code: %zd", status); in doCodecWork()
179 LOGV("seeked"); in handle()
215 LOGV("@@@ create"); in Java_com_example_nativecodec_NativeCodec_createStreamingMediaPlayer()
[all …]
Dlooper.cpp35 #define LOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, TAG, __VA_ARGS__) macro
68 LOGV("Looper deleted while still running. Some messages will not be processed"); in ~looper()
102 LOGV("post msg %d", msg->what); in addmsg()
116 LOGV("no msg"); in loop()
124 LOGV("quitting"); in loop()
128 LOGV("processing msg %d", msg->what); in loop()
135 LOGV("quit"); in quit()
150 LOGV("dropping msg %d %p", what, obj); in handle()
/development/ndk/sources/android/native_app_glue/
Dandroid_native_app_glue.c34 # define LOGV(...) ((void)__android_log_print(ANDROID_LOG_VERBOSE, "threaded_app", __VA_ARGS__)) macro
36 # define LOGV(...) ((void)0) macro
69 LOGV("Config: mcc=%d mnc=%d lang=%c%c cnt=%c%c orien=%d touch=%d dens=%d " in print_cur_config()
92 LOGV("APP_CMD_INPUT_CHANGED\n"); in android_app_pre_exec_cmd()
99 LOGV("Attaching input queue to looper"); in android_app_pre_exec_cmd()
109 LOGV("APP_CMD_INIT_WINDOW\n"); in android_app_pre_exec_cmd()
117 LOGV("APP_CMD_TERM_WINDOW\n"); in android_app_pre_exec_cmd()
125 LOGV("activityState=%d\n", cmd); in android_app_pre_exec_cmd()
133 LOGV("APP_CMD_CONFIG_CHANGED\n"); in android_app_pre_exec_cmd()
140 LOGV("APP_CMD_DESTROY\n"); in android_app_pre_exec_cmd()
[all …]
/development/ndk/platforms/android-14/samples/native-media/jni/
Dnative-media-jni.c35 #define LOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, TAG, __VA_ARGS__) macro
145 LOGV("EOS was processed\n"); in AndroidBufferQueueCallback()
169 LOGV("Dropping last packet because it is not whole"); in AndroidBufferQueueCallback()
208 LOGV("StreamChangeCallback called for stream %u", streamIndex); in StreamChangeCallback()
228 LOGV("Found video size %u x %u, codec ID=%u, frameRate=%u, bitRate=%u, duration=%u ms", in StreamChangeCallback()
288 LOGV("Dropping last packet because it is not whole"); in enqueueInitialBuffers()
291 LOGV("Initially queueing %zu packets", packetsRead); in enqueueInitialBuffers()
/development/perftests/panorama/feature_mos/src/mosaic/
DLog.h20 #define LOGV(...) __android_log_print(ANDROID_LOG_SILENT, LOG_TAG, __VA_ARGS__) macro
/development/samples/training/threadsample/src/com/example/android/threadsample/
DConstants.java28 public static final boolean LOGV = false; field in Constants