Giter Site home page Giter Site logo

Comments (21)

saki4510t avatar saki4510t commented on August 11, 2024 2

Hi,
err=-2 or -50 seems you may initialize camera with wrong parameter or app fail to load descriptor or your camera does not meet UVC specification/requirements.

As you can see, USBMonitor call onAttach callback method at two condition.

  1. when Android system send broadcast and BroadcastReceiver of USBMonitor receives UsbManager.ACTION_USB_DEVICE_ATTACHED action.
    In this case, you can receive correct USBDevice instance at onAttach callback. Unfortunately some devices never broadcast this action and USBMonitor run polling task at the same time.
  2. when polling task detects the number of connected device(s) are changed.
    In this case you can receive null on onAction method.

As I can see your comment, you will want to start app and preview when user connects camera and I assume you will need to handle several conditions. In all case, you need to know and keep which UVC device you already handled and your are handling now if you want to use multiple camera at the same time.

  1. App starts by Android system when user connect UVC device.
    As I wrote before, Android system starts app with Intent which action is UsbManager.ACTION_USB_DEVICE_ATTACHED with UsbDevice as extra of UsbManager.EXTRA_DEVICE key when app has Intent filter on it's AndroidManifest.xml.
    In this case Android guarantees that app has permission for the UVC device because app has permanent permission or user permit just before app starting when connecting UVC device.
    Unfortunately UsbMonitor can not receive this intent. So you need to use ether way;
    1. hold UsbDevice came from this intent and use it when onResume is called or after creating Surface/SurfaceTexture for preview,
    2. ignore this intent and handle everything when onAttach callback is called (with null) from polling task.
  2. App start by user regardless connection of UVC device
    You need to handle onAttach callback.
  3. User connects UVC device while app running.
    In this case, Android system will show permission dialog and app will lost focus when you add intent filter of UsbManager.ACTION_USB_DEVICE_ATTACHED on AndroidManifest.xml and your app does not have permission for the device. onAttach will be called with actual UsbDevice after getting permission.
    If your app does not have intent filter of UsbManager.ACTION_USB_DEVICE_ATTACHED on AndroidManifest.xml, polling task will detect and call onAttach callback with null.

saki

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi,
thanks for your fast answer. I went for the second method you pointed out, ignored the intent and requested the permission when onAttach is called. The app works fine and it starts when I connect an UVC device, showing the previews fine. But sometimes I don't get any preview or only one (I usually connect two cameras) and get err -2 or -50. Since it works sometimes I do not think it is due to wrong parameters, but I would like to check. What parameters do you mean exactly and where can I change them?
Thanks
Ben

On 18 Feb 2016, at 03:11, saki [email protected] wrote:

Hi,
err=-2 or -50 seems you may initialize camera with wrong parameter or app fail to load descriptor or your camera does not meet UVC specification/requirements.

As you can see, USBMonitor call onAttach callback method at two condition.

when Android system send broadcast and BroadcastReceiver of USBMonitor receives UsbManager.ACTION_USB_DEVICE_ATTACHED action.
In this case, you can receive correct USBDevice instance at onAttach callback. Unfortunately some devices never broadcast this action and USBMonitor run polling task at the same time.
when polling task detects the number of connected device(s) are changed.
In this case you can receive null on onAction method.
As I can see your comment, you will want to start app and preview when user connects camera and I assume you will need to handle several conditions. In all case, you need to know and keep which UVC device you already handled and your are handling now if you want to use multiple camera at the same time.

App starts by Android system when user connect UVC device.

As I wrote before, Android system starts app with Intent which action is UsbManager.ACTION_USB_DEVICE_ATTACHED with UsbDevice as extra of UsbManager.EXTRA_DEVICE key when app has Intent filter on it's AndroidManifest.xml.
In this case Android guarantees that app has permission for the UVC device because app has permanent permission or user permit just before app starting when connecting UVC device.

Unfortunately UsbMonitor can not receive this intent. So you need to use ether way;

hold UsbDevice came from this intent and use it when onResume is called or after creating Surface/SurfaceTexture for preview,
ignore this intent and handle everything when onAttach callback is called (with null) from polling task.
App start by user regardless connection of UVC device
You need to handle onAttach callback.
User connects UVC device while app running.
In this case, Android system will show permission dialog and app will lost focus when you add intent filter of UsbManager.ACTION_USB_DEVICE_ATTACHED on AndroidManifest.xml and your app does not have permission for the device. onAttach will be called with actual UsbDevice after getting permission.
If your app does not have intent filter of UsbManager.ACTION_USB_DEVICE_ATTACHED on AndroidManifest.xml, polling task will detect and call onAttach callback with null.
saki


Reply to this email directly or view it on GitHub #42 (comment).

from uvccamera.

saki4510t avatar saki4510t commented on August 11, 2024

Hi,
It depends on where/when the error occurs.

As I can see your comment, I assume your issue seems to relate to timing of initialization and hardware of your device/camera. Did you try to initialize camera manually one by one? If manual initialization works well on both camera, it may be better to start camera sequentially, one by one using semaphore, synchronize etc. Because initialization and starting preview run on CameraHander, simultaneously on worker thread.

I'm not sure your actual implementation, did you start camera after creation of SurfaceTexture?
usbcameratest7 is just sample and primarily intended to start camera by manual. And most of error checks are omitted from it's code.
saki

from uvccamera.

btut avatar btut commented on August 11, 2024

Manual initialisation doesn't help. I tried with the other samples as well, and the errors still occur. CameraTest0 even crashes most of the time with the following error log (unfiltered version below):

02-27 13:58:08.097 11702-11702/? E/Zygote: MountEmulatedStorage() 02-27 13:58:08.097 11702-11702/? E/Zygote: v2 02-27 13:58:08.097 11702-11702/? I/libpersona: KNOX_SDCARD checking this for 10125 02-27 13:58:08.097 11702-11702/? I/libpersona: KNOX_SDCARD not a persona 02-27 13:58:08.117 11702-11702/? I/SELinux: Function: selinux_compare_spd_ram, SPD-policy is existed. and_ver=SEPF_SM-G900F_5.0 ver=27 02-27 13:58:08.117 11702-11702/? I/SELinux: Function: selinux_compare_spd_ram , priority [2] , priority version is VE=SEPF_SM-G900F_5.0-1_0032 02-27 13:58:08.117 11702-11702/? E/SELinux: [DEBUG] get_category: variable seinfo: default sensitivity: NULL, cateogry: NULL 02-27 13:58:08.117 11702-11702/? I/art: Late-enabling -Xcheck:jni 02-27 13:58:08.147 11702-11702/? D/TimaKeyStoreProvider: TimaSignature is unavailable 02-27 13:58:08.147 11702-11702/? D/ActivityThread: Added TimaKeyStore provider 02-27 13:58:08.187 11702-11702/com.serenegiant.usbcameratest0 D/ResourcesManager: creating new AssetManager and set to /data/app/com.serenegiant.usbcameratest0-1/base.apk 02-27 13:58:08.217 11702-11722/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-xxhdpi-v4/sym_def_app_icon.png 02-27 13:58:08.217 11702-11724/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-hdpi-v4/ic_launcher.png 02-27 13:58:08.217 11702-11723/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-xxhdpi-v4/ic_menu_camera.png 02-27 13:58:08.227 11702-11702/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-xxhdpi-v4/ic_ab_back_holo_dark_am.png 02-27 13:58:08.237 11702-11702/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-xxhdpi-v4/sym_def_app_icon.png 02-27 13:58:08.237 11702-11702/com.serenegiant.usbcameratest0 D/Activity: performCreate Call secproduct feature valuefalse 02-27 13:58:08.237 11702-11702/com.serenegiant.usbcameratest0 D/Activity: performCreate Call debug elastic valuetrue 02-27 13:58:08.247 11702-11702/com.serenegiant.usbcameratest0 V/MainActivity: onResume: 02-27 13:58:08.247 11702-11725/com.serenegiant.usbcameratest0 D/OpenGLRenderer: Render dirty regions requested: true 02-27 13:58:08.277 11702-11725/com.serenegiant.usbcameratest0 I/Adreno-EGL: <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build: () OpenGL ES Shader Compiler Version: E031.25.01.03 Build Date: 03/03/15 Tue Local Branch: LA.BF.1.1_RB1_20150108_025_1077123_1158499 Remote Branch: Local Patches: Reconstruct Branch: 02-27 13:58:08.277 11702-11725/com.serenegiant.usbcameratest0 I/OpenGLRenderer: Initialized EGL, version 1.4 02-27 13:58:08.297 11702-11725/com.serenegiant.usbcameratest0 I/OpenGLRenderer: HWUI protection enabled for context , &this =0xb3b090d8 ,&mEglDisplay = 1 , &mEglConfig = 8 02-27 13:58:08.297 11702-11725/com.serenegiant.usbcameratest0 D/OpenGLRenderer: Enabling debug mode 0 02-27 13:58:08.307 11702-11702/com.serenegiant.usbcameratest0 V/MainActivity: surfaceCreated: 02-27 13:58:08.307 11702-11702/com.serenegiant.usbcameratest0 V/MainActivity: surfaceChanged: 02-27 13:58:08.367 11702-11702/com.serenegiant.usbcameratest0 I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@19e8b7dd time:365664 02-27 13:58:14.537 11702-11702/com.serenegiant.usbcameratest0 D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN 02-27 13:58:15.247 11702-11702/com.serenegiant.usbcameratest0 D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN 02-27 13:58:15.297 11702-11702/com.serenegiant.usbcameratest0 E/shsh: 810 12 48 1032 02-27 13:58:15.297 11702-11702/com.serenegiant.usbcameratest0 D/AbsListView: Get MotionRecognitionManager 02-27 13:58:15.947 11702-11702/com.serenegiant.usbcameratest0 D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN 02-27 13:58:16.107 11702-11702/com.serenegiant.usbcameratest0 E/ViewRootImpl: sendUserActionEvent() mView == null 02-27 13:58:16.617 11702-11702/com.serenegiant.usbcameratest0 D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN 02-27 13:58:16.747 11702-11702/com.serenegiant.usbcameratest0 V/MainActivity: onConnect: 02-27 13:58:16.747 11702-11702/com.serenegiant.usbcameratest0 E/ViewRootImpl: sendUserActionEvent() mView == null 02-27 13:58:16.767 11702-11860/com.serenegiant.usbcameratest0 I/MainActivity: supportedSize:{"formats":[{"index":1,"type":4,"default":1,"size":["640x480","1920x1080","1280x720","2592x1944"]},{"index":2,"type":6,"default":1,"size":["640x480","1920x1080","1280x720","2592x1944"]}]} 02-27 13:58:16.767 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:1110] Thread[13,tid=11860,Native,Thread*=0xb4f11c00,peer=0x12d3db20,"pool-1-thread-1"] attempting to detach while still running code 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] Runtime aborting... 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] Aborting thread: 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "pool-1-thread-1" prio=5 tid=13 Native 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12d3db20 self=0xb4f11c00 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11860 nice=0 cgrp=apps sched=0/0 handle=0xb4ff6980 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=R schedstat=( 14292654 13529168 23 ) utm=0 stm=1 core=3 HZ=100 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0x9f7b0000-0x9f7b2000 stackSize=1036KB 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= "abort lock" "mutator lock"(shared held) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00004640 /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00002e8d /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00247ff1 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+68) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0022c97b /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+146) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 0021ccd7 /system/lib/libart.so (art::AbortState::DumpThread(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, art::Thread*)+22) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 0021cf3d /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+364) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0021d109 /system/lib/libart.so (art::Runtime::Abort()+72) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 000a831b /system/lib/libart.so (art::LogMessage::~LogMessage()+1322) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0021babb /system/lib/libart.so (art::Runtime::DetachCurrentThread()+134) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 00194b45 /system/lib/libart.so (art::JII::DetachCurrentThread(_JavaVM*)+44) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 000bf6cf /system/lib/libart.so (art::CheckJII::DetachCurrentThread(_JavaVM*)+78) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #11 pc 0000f6a8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCButtonCallback::uvc_button_callback(int, int, void*)+96) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #12 pc 0000aa00 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (_uvc_status_callback+56) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #13 pc 00009ad8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (usbi_handle_transfer_completion+184) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #14 pc 00011378 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #15 pc 000096e8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #16 pc 0000a380 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_timeout_completed+304) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #17 pc 0000a80c /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_completed+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #18 pc 0000b1e4 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_control_transfer+360) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #19 pc 00014558 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_query_stream_ctrl+188) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #20 pc 00014ed8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_get_stream_ctrl_format_size_fps+240) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #21 pc 0000d774 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCPreview::setPreviewSize(int, int, int, int, int, float)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #22 pc 00006b6f /data/dalvik-cache/arm/data@[email protected]@[email protected] (Java_com_serenegiant_usb_UVCCamera_nativeSetPreviewSize__JIIIIIF+142) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.nativeSetPreviewSize(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.setPreviewSize(UVCCamera.java:304) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.setPreviewSize(UVCCamera.java:277) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usbcameratest0.MainActivity$2$1.run(MainActivity.java:155) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x29e3e450> (a java.lang.Object) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] Dumping all threads without appropriate locks held: thread list lock mutator lock 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] All threads: 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] DALVIK THREADS (13): 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "main" prio=5 tid=1 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x86348ef0 self=0xb4f07800 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11702 nice=0 cgrp=apps sched=0/0 handle=0xb6feaec8 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 196716345 82222655 580 ) utm=13 stm=6 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xbe451000-0xbe453000 stackSize=8MB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 0003827c /system/lib/libc.so (__epoll_pwait+20) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00011b37 /system/lib/libc.so (epoll_pwait+26) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00011b45 /system/lib/libc.so (epoll_wait+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 00010e37 /system/lib/libutils.so (android::Looper::pollInner(int)+98) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 00011061 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000830e9 /system/lib/libandroid_runtime.so (android::NativeMessageQueue::pollOnce(_JNIEnv*, int)+22) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 000b22d7 /system/framework/arm/boot.oat (Java_android_os_MessageQueue_nativePollOnce__JI+102) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at android.os.MessageQueue.nativePollOnce(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at android.os.MessageQueue.next(MessageQueue.java:143) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at android.os.Looper.loop(Looper.java:130) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at android.app.ActivityThread.main(ActivityThread.java:5832) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.reflect.Method.invoke!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.reflect.Method.invoke(Method.java:372) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1399) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1194) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "Signal Catcher" prio=5 tid=2 WaitingInMainSignalCatcherLoop 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c4f080 self=0xafb0e400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11708 nice=0 cgrp=apps sched=0/0 handle=0xaef63800 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 1377447 2068022 10 ) utm=0 stm=0 core=1 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb46eb000-0xb46ed000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00036e14 /system/lib/libc.so (__rt_sigtimedwait+12) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00014f0d /system/lib/libc.so (sigwait+24) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00220293 /system/lib/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+66) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 00221d81 /system/lib/libart.so (art::SignalCatcher::Run(void*)+196) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "JDWP" prio=5 tid=3 WaitingInMainDebuggerLoop 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c53080 self=0xaf60e400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11709 nice=0 cgrp=apps sched=0/0 handle=0xaef63a80 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 17563070 8966199 40 ) utm=1 stm=0 core=1 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb45e7000-0xb45e9000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00037e1c /system/lib/libc.so (__pselect6+20) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00012f97 /system/lib/libc.so (select+60) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00289bef /system/lib/libart.so (art::JDWP::JdwpAdbState::ProcessIncoming()+186) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0018f501 /system/lib/libart.so (art::JDWP::JdwpState::Run()+348) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 00190a2b /system/lib/libart.so (art::JDWP::StartJdwpThread(void*)+10) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "ReferenceQueueDaemon" prio=5 tid=5 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c56080 self=0xaf348400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11711 nice=0 cgrp=apps sched=0/0 handle=0xaf358080 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 927603 536771 9 ) utm=0 stm=0 core=0 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb43d3000-0xb43d5000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc109 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000003db /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x2b78c649> (a java.lang.Class<java.lang.ref.ReferenceQueue>) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:133) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x2b78c649> (a java.lang.Class<java.lang.ref.ReferenceQueue>) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "FinalizerWatchdogDaemon" prio=5 tid=6 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c56140 self=0xaf348c00 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11713 nice=0 cgrp=apps sched=0/0 handle=0xaf358580 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 921720 5664269 12 ) utm=0 stm=0 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb41c5000-0xb41c7000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc109 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000003db /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x344cdb4e> (a java.lang.Daemons$FinalizerWatchdogDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForObject(Daemons.java:239) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x344cdb4e> (a java.lang.Daemons$FinalizerWatchdogDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:211) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "HeapTrimmerDaemon" prio=5 tid=7 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c561a0 self=0xaf349000 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11715 nice=0 cgrp=apps sched=0/0 handle=0xaf358800 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 907813 1177448 3 ) utm=0 stm=0 core=1 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb3ebb000-0xb3ebd000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc109 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000003db /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x1bdf546f> (a java.lang.Daemons$HeapTrimmerDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$HeapTrimmerDaemon.run(Daemons.java:310) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x1bdf546f> (a java.lang.Daemons$HeapTrimmerDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "Binder_1" prio=5 tid=8 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c7b080 self=0xaea06400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11714 nice=0 cgrp=apps sched=0/0 handle=0xaef63f80 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 4806299 6499167 44 ) utm=0 stm=0 core=0 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb3fc5000-0xb3fc7000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00037df0 /system/lib/libc.so (__ioctl+8) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 0004ee8d /system/lib/libc.so (ioctl+14) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 0001cb43 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0001d033 /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 0001d095 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00021203 /system/lib/libbinder.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0000ef55 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 0006039d /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0000eac5 /system/lib/libutils.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "GCDaemon" prio=5 tid=4 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c56200 self=0xaf349400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11716 nice=0 cgrp=apps sched=0/0 handle=0xaf358a80 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 688750 2519219 8 ) utm=0 stm=0 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb3dad000-0xb3daf000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc109 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000003db /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x26aaf57c> (a java.lang.Daemons$GCDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$GCDaemon.run(Daemons.java:341) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x26aaf57c> (a java.lang.Daemons$GCDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "FinalizerDaemon" prio=5 tid=9 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c560e0 self=0xaf348800 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11712 nice=0 cgrp=apps sched=0/0 handle=0xaf358300 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 887552 2155365 10 ) utm=0 stm=0 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb42c9000-0xb42cb000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc0e1 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+36) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00000607 /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+102) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x277e7e05> (a java.lang.ref.ReferenceQueue) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait(Object.java:422) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:101) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x277e7e05> (a java.lang.ref.ReferenceQueue) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:173) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "Binder_2" prio=5 tid=10 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c56260 self=0xad24a000 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11717 nice=0 cgrp=apps sched=0/0 handle=0xaea26080 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 5317396 5003958 38 ) utm=0 stm=0 core=3 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb44d9000-0xb44db000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00037df0 /system/lib/libc.so (__ioctl+8) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 0004ee8d /system/lib/libc.so (ioctl+14) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 0001cb43 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0001d033 /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 0001d095 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00021203 /system/lib/libbinder.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0000ef55 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 0006039d /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0000eac5 /system/lib/libutils.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "RenderThread" prio=5 tid=11 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12d23440 self=0xb3b18400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11725 nice=-4 cgrp=apps sched=0/0 handle=0xaef64700 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 89619323 24397137 253 ) utm=4 stm=4 core=3 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb3a04000-0xb3a06000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 0003827c /system/lib/libc.so (__epoll_pwait+20) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00011b37 /system/lib/libc.so (epoll_pwait+26) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00011b45 /system/lib/libc.so (epoll_wait+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 00010e37 /system/lib/libutils.so (android::Looper::pollInner(int)+98) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 00011061 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00044e19 /system/lib/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+44) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0000ef55 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 0006039d /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0000eac5 /system/lib/libutils.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "Binder_3" prio=5 tid=12 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12d2c320 self=0xafa19400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11738 nice=0 cgrp=apps sched=0/0 handle=0xaea26300 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 1627447 1015784 17 ) utm=0 stm=0 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xa0124000-0xa0126000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00037df0 /system/lib/libc.so (__ioctl+8) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 0004ee8d /system/lib/libc.so (ioctl+14) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 0001cb43 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0001d033 /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 0001d095 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00021203 /system/lib/libbinder.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0000ef55 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 0006039d /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0000eac5 /system/lib/libutils.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "pool-1-thread-1" prio=5 tid=13 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12d3db20 self=0xb4f11c00 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11860 nice=0 cgrp=apps sched=0/0 handle=0xb4ff6980 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=R schedstat=( 202502757 44927085 185 ) utm=11 stm=9 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0x9f7b0000-0x9f7b2000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= "abort lock" 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00004640 /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00002e8d /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00247ff1 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+68) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0022c97b /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+146) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 002355d1 /system/lib/libart.so (art::ThreadList::DumpLocked(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+104) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 0021cebd /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+236) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0021d109 /system/lib/libart.so (art::Runtime::Abort()+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 000a831b /system/lib/libart.so (art::LogMessage::~LogMessage()+1322) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0021babb /system/lib/libart.so (art::Runtime::DetachCurrentThread()+134) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 00194b45 /system/lib/libart.so (art::JII::DetachCurrentThread(_JavaVM*)+44) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 000bf6cf /system/lib/libart.so (art::CheckJII::DetachCurrentThread(_JavaVM*)+78) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #11 pc 0000f6a8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCButtonCallback::uvc_button_callback(int, int, void*)+96) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #12 pc 0000aa00 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (_uvc_status_callback+56) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #13 pc 00009ad8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (usbi_handle_transfer_completion+184) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #14 pc 00011378 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #15 pc 000096e8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #16 pc 0000a380 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_timeout_completed+304) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #17 pc 0000a80c /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_completed+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #18 pc 0000b1e4 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_control_transfer+360) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #19 pc 00014558 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_query_stream_ctrl+188) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #20 pc 00014ed8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_get_stream_ctrl_format_size_fps+240) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #21 pc 0000d774 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCPreview::setPreviewSize(int, int, int, int, int, float)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #22 pc 00006b6f /data/dalvik-cache/arm/data@[email protected]@[email protected] (Java_com_serenegiant_usb_UVCCamera_nativeSetPreviewSize__JIIIIIF+142) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.nativeSetPreviewSize(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.setPreviewSize(UVCCamera.java:304) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.setPreviewSize(UVCCamera.java:277) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usbcameratest0.MainActivity$2$1.run(MainActivity.java:155) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x29e3e450> (a java.lang.Object) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 11860 (pool-1-thread-1)

Unfiltered

02-27 13:58:08.097 11702-11702/? E/Zygote: MountEmulatedStorage() 02-27 13:58:08.097 11702-11702/? E/Zygote: v2 02-27 13:58:08.097 11702-11702/? I/libpersona: KNOX_SDCARD checking this for 10125 02-27 13:58:08.097 11702-11702/? I/libpersona: KNOX_SDCARD not a persona 02-27 13:58:08.107 898-1301/? I/ActivityManager: Start proc com.serenegiant.usbcameratest0 for activity com.serenegiant.usbcameratest0/.MainActivity: pid=11702 uid=10125 gids={50125, 9997} abi=armeabi-v7a 02-27 13:58:08.117 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.117 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.117 11702-11702/? I/SELinux: Function: selinux_compare_spd_ram, SPD-policy is existed. and_ver=SEPF_SM-G900F_5.0 ver=27 02-27 13:58:08.117 11702-11702/? I/SELinux: Function: selinux_compare_spd_ram , priority [2] , priority version is VE=SEPF_SM-G900F_5.0-1_0032 02-27 13:58:08.117 11702-11702/? E/SELinux: [DEBUG] get_category: variable seinfo: default sensitivity: NULL, cateogry: NULL 02-27 13:58:08.117 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.117 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.117 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.117 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.117 11702-11702/? I/art: Late-enabling -Xcheck:jni 02-27 13:58:08.117 898-1043/? D/StatusBarManagerService: manageDisableList userId=0 what=0x0 pkg=WindowManager.LayoutParams 02-27 13:58:08.117 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.117 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.117 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.117 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.127 257-257/? I/SurfaceFlinger: id=195 createSurf (1080x1920),1 flag=404, Starting com.serenegiant.usbcameratest0 02-27 13:58:08.127 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.127 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.127 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.127 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.137 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.137 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.147 11702-11702/? D/TimaKeyStoreProvider: TimaSignature is unavailable 02-27 13:58:08.147 11702-11702/? D/ActivityThread: Added TimaKeyStore provider 02-27 13:58:08.157 898-1594/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, mbResultFaceDectection: false 02-27 13:58:08.157 898-1594/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, Rotation: -1 02-27 13:58:08.157 898-1594/? V/WindowManager: rotationForOrientationLw(orient=-1, last=0); user=0 sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false 02-27 13:58:08.157 898-1594/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, mbResultFaceDectection: false 02-27 13:58:08.157 898-1594/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, Rotation: -1 02-27 13:58:08.157 1475-1475/? D/Launcher.HomeView: onStop 02-27 13:58:08.157 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.157 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.157 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.157 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.167 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.167 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.167 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.167 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.167 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.167 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.167 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.167 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.167 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.167 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.167 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.167 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.167 898-1043/? D/StatusBarManagerService: manageDisableList userId=0 what=0x0 pkg=WindowManager.LayoutParams 02-27 13:58:08.177 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.177 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.177 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.177 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.177 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.177 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.177 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.177 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.177 898-4112/? D/ConnectivityService: returning getNetworkInfo(networkType - 1) :[type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "MISS_U_LANTHI", roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwork: false] 02-27 13:58:08.177 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.177 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.177 1475-1475/? D/Launcher: onTrimMemory. Level: 20 02-27 13:58:08.187 2030-2030/? E/auditd: In denial and Property audit_ondenial is set to 1 02-27 13:58:08.187 2030-2030/? E/audit: type=1400 msg=audit(1456574288.187:298): avc: denied { read } for pid=11719 comm="qrngd" name="hw_random" dev="tmpfs" ino=10492 scontext=u:r:qrngd:s0 tcontext=u:object_r:hw_random_device:s0 tclass=chr_file 02-27 13:58:08.187 898-1041/? D/SecurityLogAgent:SEDenialService: Got Modify Event and sending Denial Intent foraudit.log 02-27 13:58:08.187 2030-2030/? E/audit: SEPF_SM-G900F_5.0-1_0032 02-27 13:58:08.187 898-1041/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1629 com.android.server.SEDenialService$AuditFileObserver.onEvent:76 android.os.FileObserver$ObserverThread.onEvent:122 android.os.FileObserver$ObserverThread.observe:-2 android.os.FileObserver$ObserverThread.run:85 02-27 13:58:08.187 11702-11702/com.serenegiant.usbcameratest0 D/ResourcesManager: creating new AssetManager and set to /data/app/com.serenegiant.usbcameratest0-1/base.apk 02-27 13:58:08.187 898-1041/? D/SecurityLogAgent:SEDenialService: audit.ondenial set to 0 after sending samsung.intent.action.knox.DENIAL_NOTIFICATION intent 02-27 13:58:08.187 2030-2030/? E/audit: type=1300 msg=audit(1456574288.187:298): arch=40000028 syscall=322 per=800000 success=no exit=-13 a0=ffffff9c a1=be8d76a0 a2=20000 a3=0 items=1 ppid=1 pid=11719 auid=4294967295 uid=1000 gid=1000 euid=1000 suid=1000 fsuid=1000 egid=1000 sgid=1000 fsgid=1000 tty=(none) ses=4294967295 comm="qrngd" exe="/system/bin/qrngd" subj=u:r:qrngd:s0 key=(null) 02-27 13:58:08.187 2030-2030/? E/audit: type=1307 msg=audit(1456574288.187:298): cwd="/" 02-27 13:58:08.187 2030-2030/? E/audit: type=1302 msg=audit(1456574288.187:298): item=0 name="/dev/hw_random" inode=10492 dev=00:0b mode=020640 ouid=0 ogid=1000 rdev=0a:b7 obj=u:object_r:hw_random_device:s0 02-27 13:58:08.187 2030-2030/? E/audit: type=1320 msg=audit(1456574288.187:298): 02-27 13:58:08.187 5920-5920/? D/SecurityLogAgent: SeDenialReceiver : Intent Received : samsung.intent.action.knox.DENIAL_NOTIFICATION 02-27 13:58:08.187 5920-5920/? D/SecurityLogAgent: SeDenialReceiver : File path = null 02-27 13:58:08.187 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.187 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.197 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.197 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.197 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.197 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.197 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.197 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.197 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.197 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.207 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.207 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.217 11702-11722/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-xxhdpi-v4/sym_def_app_icon.png 02-27 13:58:08.217 11702-11724/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-hdpi-v4/ic_launcher.png 02-27 13:58:08.217 11702-11723/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-xxhdpi-v4/ic_menu_camera.png 02-27 13:58:08.227 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.227 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.227 11702-11702/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-xxhdpi-v4/ic_ab_back_holo_dark_am.png 02-27 13:58:08.237 11702-11702/com.serenegiant.usbcameratest0 V/BitmapFactory: DecodeImagePath(decodeResourceStream3) : res/drawable-xxhdpi-v4/sym_def_app_icon.png 02-27 13:58:08.237 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.237 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.237 11702-11702/com.serenegiant.usbcameratest0 D/Activity: performCreate Call secproduct feature valuefalse 02-27 13:58:08.237 11702-11702/com.serenegiant.usbcameratest0 D/Activity: performCreate Call debug elastic valuetrue 02-27 13:58:08.247 11702-11702/com.serenegiant.usbcameratest0 V/MainActivity: onResume: 02-27 13:58:08.247 11702-11725/com.serenegiant.usbcameratest0 D/OpenGLRenderer: Render dirty regions requested: true 02-27 13:58:08.257 898-1473/? D/ActivityManager: post active user change for 0 02-27 13:58:08.257 898-1473/? D/KnoxTimeoutHandler: postActiveUserChange for user 0 02-27 13:58:08.257 898-898/? D/KnoxTimeoutHandler: handleActiveUserChange for user 0 02-27 13:58:08.257 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.257 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.257 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.257 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.257 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.257 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.267 257-257/? I/SurfaceFlinger: id=196 createSurf (1x1),1 flag=4, com.serenegiant.usbcameratest0/com.serenegiant.usbcameratest0.MainActivity 02-27 13:58:08.267 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.267 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.267 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.267 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.277 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.277 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.277 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.277 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.277 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.277 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.277 11702-11725/com.serenegiant.usbcameratest0 I/Adreno-EGL: <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build: () OpenGL ES Shader Compiler Version: E031.25.01.03 Build Date: 03/03/15 Tue Local Branch: LA.BF.1.1_RB1_20150108_025_1077123_1158499 Remote Branch: Local Patches: Reconstruct Branch: 02-27 13:58:08.277 11702-11725/com.serenegiant.usbcameratest0 I/OpenGLRenderer: Initialized EGL, version 1.4 02-27 13:58:08.287 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.287 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.297 295-625/? V/AudioPolicyManager: stopOutput() output 4, stream 1, session 146 02-27 13:58:08.297 295-625/? V/AudioPolicyManager: changeRefCount() stream 1, count 0 02-27 13:58:08.297 295-625/? V/AudioPolicyManager: getNewOutputDevice() selected device 0 02-27 13:58:08.297 295-625/? V/AudioPolicyManager: setOutputDevice() output 4 device 0000 delayMs 100 02-27 13:58:08.297 295-625/? V/AudioPolicyManager: setOutputDevice() prevDevice 0002 02-27 13:58:08.297 295-625/? V/AudioPolicyManager: setOutputDevice() setting same device 0000 or null device for output 4 02-27 13:58:08.297 11702-11725/com.serenegiant.usbcameratest0 I/OpenGLRenderer: HWUI protection enabled for context , &this =0xb3b090d8 ,&mEglDisplay = 1 , &mEglConfig = 8 02-27 13:58:08.297 11702-11725/com.serenegiant.usbcameratest0 D/OpenGLRenderer: Enabling debug mode 0 02-27 13:58:08.307 257-257/? I/SurfaceFlinger: id=197 createSurf (1080x1701),4 flag=404, SurfaceView 02-27 13:58:08.307 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.307 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.307 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.307 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.307 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.307 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.307 11702-11702/com.serenegiant.usbcameratest0 V/MainActivity: surfaceCreated: 02-27 13:58:08.307 11702-11702/com.serenegiant.usbcameratest0 V/MainActivity: surfaceChanged: 02-27 13:58:08.317 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.317 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.317 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.317 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.317 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.317 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.317 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.317 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.317 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.317 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.317 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.317 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.327 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.327 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.337 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.337 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.347 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.347 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.347 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.347 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.347 898-1473/? D/InputMethodManagerService: windowGainedFocus mCurrentFocusedUserId - 0 and mSecureKeypadEnabled-false 02-27 13:58:08.357 898-11730/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1629 com.android.server.InputMethodManagerService$6.run:2728 java.lang.Thread.run:818 <bottom of call stack> <bottom of call stack> 02-27 13:58:08.357 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.357 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.367 898-1045/? I/ActivityManager: Displayed com.serenegiant.usbcameratest0/.MainActivity: +274ms 02-27 13:58:08.367 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.367 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.367 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.367 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.367 11702-11702/com.serenegiant.usbcameratest0 I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@19e8b7dd time:365664 02-27 13:58:08.367 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.367 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.367 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.367 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.377 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.377 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.387 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.387 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.407 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.407 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.427 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.427 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.437 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.437 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.457 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.457 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.457 898-1045/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 898 tag : ACTIVITY_RESUME_BOOSTER@6 02-27 13:58:08.457 898-1045/? D/CustomFrequencyManagerService: FrequencyrequestList.getNextMaxCPUCoreRequest, index: 0 02-27 13:58:08.467 898-1045/? W/ActivityManager: mDVFSHelper.release() 02-27 13:58:08.467 898-1016/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 898 pkgName : ACTIVITY_RESUME_BOOSTER@10 02-27 13:58:08.467 898-1045/? I/Timeline: Timeline: Activity_windows_visible id: ActivityRecord{1b9695e1 u0 com.serenegiant.usbcameratest0/.MainActivity t69} time:365760 02-27 13:58:08.467 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.467 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.467 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.467 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.467 257-404/? I/SurfaceFlinger: id=193 Removed com.sec.android.app.launcher/com.android.launcher2.Launcher (3/10) 02-27 13:58:08.467 257-1112/? I/SurfaceFlinger: id=193 Removed com.sec.android.app.launcher/com.android.launcher2.Launcher (-2/10) 02-27 13:58:08.477 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.477 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.477 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.477 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.477 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.477 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.487 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.487 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.507 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.507 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.527 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.527 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.537 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.537 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.557 1176-1176/? D/StatusBar.NetworkController: onSignalStrengthsChanged signalStrength=SignalStrength: 20 99 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 -1 2147483647 0x4 gsm|lte level=4 02-27 13:58:08.557 1176-1176/? D/StatusBar.NetworkController: updateTelephonySignalStrength: hasService=true ss=SignalStrength: 20 99 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 -1 2147483647 0x4 gsm|lte 02-27 13:58:08.557 1176-1176/? D/StatusBar.NetworkController: updateTelephonySignalStrength: iconLevel=4 02-27 13:58:08.557 1176-1176/? D/StatusBar.NetworkController: updateTelephonySignalStrength, No signal level. mPhoneSignalIconId = com.android.systemui:drawable/stat_sys_signal_4_auto_rotate mDataSignalIconId = com.android.systemui:drawable/stat_sys_signal_4_auto_rotate mQSPhoneSignalIconId = com.android.systemui:drawable/ic_qs_signal_4 mContentDescriptionPhoneSignal = Full phone signal 02-27 13:58:08.557 1176-1176/? D/StatusBar.NetworkController: refreshViews connected={ wifi } level=4 combinedSignalIconId=0x7f020494/com.android.systemui:drawable/stat_sys_wifi_signal_3 mobileLabel=Emergency calls only wifiLabel="MISS_U_LANTHI"xxxxXXXXxxxxXXXX emergencyOnly=true combinedLabel="MISS_U_LANTHI"xxxxXXXXxxxxXXXX mAirplaneMode=false mDataActivity=0 mPhoneSignalIconId=0x7f020442/com.android.systemui:drawable/stat_sys_signal_4_auto_rotate mQSPhoneSignalIconId=0x7f020115/com.android.systemui:drawable/ic_qs_signal_4 mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x7f020442/com.android.systemui:drawable/stat_sys_signal_4_auto_rotate mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mWifiIconId=0x7f020494/com.android.systemui:drawable/stat_sys_wifi_signal_3 mQSWifiIconId=0x7f02012a/com.android.systemui:drawable/ic_qs_wifi_3 mWifiActivityIconId=0x7f020468/com.android.systemui:drawable/stat_sys_signal_inout mBluetoothTetherIconId=0x1080907/android:drawable/stat_sys_tether_bluetooth 02-27 13:58:08.557 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.557 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.557 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.557 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.557 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.557 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.557 257-3056/? I/SurfaceFlinger: id=195 Removed Starting com.serenegiant.usbcameratest0 (6/9) 02-27 13:58:08.557 257-404/? I/SurfaceFlinger: id=195 Removed Starting com.serenegiant.usbcameratest0 (-2/9) 02-27 13:58:08.567 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.567 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.567 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.567 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.577 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:08.577 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:08.627 334-334/? I/ServiceManager: Waiting for service AtCmdFwd... 02-27 13:58:08.767 898-898/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 898 tag : ACTIVITY_RESUME_BOOSTER@10 02-27 13:58:09.057 898-1505/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 2457600 uid : 1000 pid : 898 tag : LAUNCHER_APP_BOOSTER_CPU@72 02-27 13:58:09.067 898-4080/? D/CustomFrequencyManagerService: FrequencyrequestList.getNextMaxCPUCoreRequest, index: 1 02-27 13:58:09.077 898-1301/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 2457600 uid : 1000 pid : 898 tag : LAUNCHER_APP_BOOSTER_CPU@12 02-27 13:58:09.187 898-1138/? I/WifiStateMachine: CMD_RSSI_POLL : calculateWifiScore in! 02-27 13:58:09.187 898-1138/? I/WifiStateMachine: CMD_RSSI_POLL : calculateWifiScore out! 02-27 13:58:09.187 898-1138/? I/WifiStateMachine: CMD_RSSI_POLL : out! 02-27 13:58:09.637 334-334/? I/ServiceManager: Waiting for service AtCmdFwd... 02-27 13:58:10.637 334-334/? I/ServiceManager: Waiting for service AtCmdFwd... 02-27 13:58:11.257 295-641/? V/audio_hw_primary: out_standby: enter: usecase(1: low-latency-playback) 02-27 13:58:11.317 295-641/? V/audio_hw_primary: stop_output_stream: enter: usecase(1: low-latency-playback) 02-27 13:58:11.317 295-641/? V/audio_hw_primary: disable_audio_route: enter: usecase(1) 02-27 13:58:11.317 295-641/? V/audio_hw_primary: disable_audio_route: reset mixer path: low-latency-playback 02-27 13:58:11.317 295-641/? D/audio_route: ++++ audio_route_update_mixer ============== 02-27 13:58:11.317 295-641/? D/audio_route: Setting mixer control: SLIMBUS_0_RX Audio Mixer MultiMedia5 02-27 13:58:11.317 295-641/? D/audio_route: Setting mixer control: value: 0 02-27 13:58:11.327 295-641/? D/audio_route: ------ audio_route_update_mixer ============== 02-27 13:58:11.327 295-641/? V/audio_hw_primary: disable_audio_route: exit 02-27 13:58:11.327 295-641/? V/audio_hw_primary: disable_snd_device: snd_device(2: speaker) 02-27 13:58:11.327 295-641/? D/audio_route: ++++ audio_route_update_mixer ============== 02-27 13:58:11.327 295-641/? D/audio_route: Setting mixer control: SPK DRV Volume 02-27 13:58:11.327 295-641/? D/audio_route: Setting mixer control: value: 0 02-27 13:58:11.327 295-641/? D/audio_route: Setting mixer control: RX7 Digital Volume 02-27 13:58:11.327 295-641/? D/audio_route: Setting mixer control: value: 0 02-27 13:58:11.327 295-641/? D/audio_route: Setting mixer control: COMP0 Switch 02-27 13:58:11.327 295-641/? D/audio_route: Setting mixer control: value: 0 02-27 13:58:11.327 295-641/? D/audio_route: Setting mixer control: RX7 MIX1 INP1, value: 0 02-27 13:58:11.327 295-641/? D/audio_route: Setting mixer control: DAC1 Switch 02-27 13:58:11.327 295-641/? D/audio_route: Setting mixer control: value: 0 02-27 13:58:11.327 295-641/? D/audio_route: ------ audio_route_update_mixer ============== 02-27 13:58:11.327 295-641/? V/audio_hw_primary: stop_output_stream: exit: status(0) 02-27 13:58:11.327 295-641/? V/audio_hw_primary: out_standby: exit 02-27 13:58:11.617 898-1166/? D/TaskPersister: removeObsoleteFile: deleting file=67_task.xml 02-27 13:58:11.617 898-1166/? D/TaskPersister: removeObsoleteFile: deleting file=67_task_thumbnail.png 02-27 13:58:11.637 334-334/? I/ServiceManager: Waiting for service AtCmdFwd... 02-27 13:58:12.197 898-1138/? I/WifiStateMachine: CMD_RSSI_POLL : calculateWifiScore in! 02-27 13:58:12.207 898-1138/? I/WifiStateMachine: CMD_RSSI_POLL : calculateWifiScore out! 02-27 13:58:12.207 898-1138/? I/WifiStateMachine: CMD_RSSI_POLL : out! 02-27 13:58:12.637 334-334/? W/Atfwd_Sendcmd: AtCmdFwd service not published, waiting... retryCnt : 3 02-27 13:58:13.397 2030-2030/? E/auditd: In denial and Property audit_ondenial is set to 1 02-27 13:58:13.397 2030-2030/? E/audit: type=1400 msg=audit(1456574293.397:299): avc: denied { read } for pid=11808 comm="qrngd" name="hw_random" dev="tmpfs" ino=10492 scontext=u:r:qrngd:s0 tcontext=u:object_r:hw_random_device:s0 tclass=chr_file 02-27 13:58:13.397 2030-2030/? E/audit: SEPF_SM-G900F_5.0-1_0032 02-27 13:58:13.397 898-1041/? D/SecurityLogAgent:SEDenialService: Got Modify Event and sending Denial Intent foraudit.log 02-27 13:58:13.397 898-1041/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1629 com.android.server.SEDenialService$AuditFileObserver.onEvent:76 android.os.FileObserver$ObserverThread.onEvent:122 android.os.FileObserver$ObserverThread.observe:-2 android.os.FileObserver$ObserverThread.run:85 02-27 13:58:13.397 2030-2030/? E/audit: type=1300 msg=audit(1456574293.397:299): arch=40000028 syscall=322 per=800000 success=no exit=-13 a0=ffffff9c a1=bef146a0 a2=20000 a3=0 items=1 ppid=1 pid=11808 auid=4294967295 uid=1000 gid=1000 euid=1000 suid=1000 fsuid=1000 egid=1000 sgid=1000 fsgid=1000 tty=(none) ses=4294967295 comm="qrngd" exe="/system/bin/qrngd" subj=u:r:qrngd:s0 key=(null) 02-27 13:58:13.397 2030-2030/? E/audit: type=1307 msg=audit(1456574293.397:299): cwd="/" 02-27 13:58:13.397 2030-2030/? E/audit: type=1302 msg=audit(1456574293.397:299): item=0 name="/dev/hw_random" inode=10492 dev=00:0b mode=020640 ouid=0 ogid=1000 rdev=0a:b7 obj=u:object_r:hw_random_device:s0 02-27 13:58:13.397 2030-2030/? E/audit: type=1320 msg=audit(1456574293.397:299): 02-27 13:58:13.397 898-1041/? D/SecurityLogAgent:SEDenialService: audit.ondenial set to 0 after sending samsung.intent.action.knox.DENIAL_NOTIFICATION intent 02-27 13:58:13.407 5920-5920/? D/SecurityLogAgent: SeDenialReceiver : Intent Received : samsung.intent.action.knox.DENIAL_NOTIFICATION 02-27 13:58:13.407 5920-5920/? D/SecurityLogAgent: SeDenialReceiver : File path = null 02-27 13:58:13.697 1176-1176/? D/StatusBar.NetworkController: onSignalStrengthsChanged signalStrength=SignalStrength: 20 99 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 -1 2147483647 0x4 gsm|lte level=4 02-27 13:58:13.697 1176-1176/? D/StatusBar.NetworkController: updateTelephonySignalStrength: hasService=true ss=SignalStrength: 20 99 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 -1 2147483647 0x4 gsm|lte 02-27 13:58:13.697 1176-1176/? D/StatusBar.NetworkController: updateTelephonySignalStrength: iconLevel=4 02-27 13:58:13.697 1176-1176/? D/StatusBar.NetworkController: updateTelephonySignalStrength, No signal level. mPhoneSignalIconId = com.android.systemui:drawable/stat_sys_signal_4_auto_rotate mDataSignalIconId = com.android.systemui:drawable/stat_sys_signal_4_auto_rotate mQSPhoneSignalIconId = com.android.systemui:drawable/ic_qs_signal_4 mContentDescriptionPhoneSignal = Full phone signal 02-27 13:58:13.697 1176-1176/? D/StatusBar.NetworkController: refreshViews connected={ wifi } level=4 combinedSignalIconId=0x7f020494/com.android.systemui:drawable/stat_sys_wifi_signal_3 mobileLabel=Emergency calls only wifiLabel="MISS_U_LANTHI"xxxxXXXXxxxxXXXX emergencyOnly=true combinedLabel="MISS_U_LANTHI"xxxxXXXXxxxxXXXX mAirplaneMode=false mDataActivity=0 mPhoneSignalIconId=0x7f020442/com.android.systemui:drawable/stat_sys_signal_4_auto_rotate mQSPhoneSignalIconId=0x7f020115/com.android.systemui:drawable/ic_qs_signal_4 mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x7f020442/com.android.systemui:drawable/stat_sys_signal_4_auto_rotate mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mWifiIconId=0x7f020494/com.android.systemui:drawable/stat_sys_wifi_signal_3 mQSWifiIconId=0x7f02012a/com.android.systemui:drawable/ic_qs_wifi_3 mWifiActivityIconId=0x7f020468/com.android.systemui:drawable/stat_sys_signal_inout mBluetoothTetherIconId=0x1080907/android:drawable/stat_sys_tether_bluetooth 02-27 13:58:14.227 898-4112/? D/SSRM:m: SIOP:: AP = 350, PST = 352, CUR = 450 02-27 13:58:14.537 898-1109/? D/InputReader: Input event: value=1 02-27 13:58:14.537 898-1109/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.142 ] when=371832132000 02-27 13:58:14.537 898-1108/? I/InputDispatcher: Delivering touch to (1176): action: 0x4, toolType: 1 02-27 13:58:14.537 898-1108/? I/InputDispatcher: Delivering touch to (11702): action: 0x0, toolType: 1 02-27 13:58:14.537 11702-11702/com.serenegiant.usbcameratest0 D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN 02-27 13:58:14.587 898-1109/? D/InputReader: Input event: value=0 02-27 13:58:14.587 898-1109/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=371885754000 02-27 13:58:14.587 898-1108/? I/InputDispatcher: Delivering touch to (11702): action: 0x1, toolType: 1 02-27 13:58:14.587 295-7538/? I/AudioPolicyManager: getAudioPolicyConfig: situation=1;device=0 02-27 13:58:14.587 295-7538/? I/AudioPolicyManager: getSituationVolume: isBTConnected:0 isHeadConnected:0 02-27 13:58:14.587 295-7538/? V/AudioPolicyManager: deviceInt = 0, situationInt = 1, situationVolume = 1.000000 02-27 13:58:14.587 295-652/? V/AudioPolicyManager: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 0, flags 3 02-27 13:58:14.587 295-652/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:14.587 295-652/? V/AudioPolicyManager: getOutput() returns output 2 02-27 13:58:14.587 295-658/? V/AudioPolicyManager: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 0, flags 3 02-27 13:58:14.587 295-658/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:14.587 295-658/? V/AudioPolicyManager: getOutput() returns output 2 02-27 13:58:14.587 295-679/? V/AudioPolicyManager: getOutputForAttr() usage=13, content=4, tag= flags=00000000 02-27 13:58:14.587 295-679/? V/AudioPolicyManager: getOutputForAttr() device 2, samplingRate 48000, format 1, channelMask 1, flags 4 02-27 13:58:14.587 295-679/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:14.587 295-679/? V/AudioPolicyManager: selectOutput() commonFlags for output 4, 0001 02-27 13:58:14.587 295-679/? V/AudioPolicyManager: getOutput() returns output 4 02-27 13:58:14.597 295-7537/? V/AudioPolicyManager: startOutput() output 4, stream 1, session 147 02-27 13:58:14.597 295-7537/? V/AudioPolicyManager: changeRefCount() stream 1, count 1 02-27 13:58:14.597 295-7537/? V/AudioPolicyManager: getNewOutputDevice() selected device 2 02-27 13:58:14.597 295-7537/? V/AudioPolicyManager: setOutputDevice() output 4 device 0002 delayMs 0 02-27 13:58:14.597 295-7537/? V/AudioPolicyManager: setOutputDevice() prevDevice 0002 02-27 13:58:14.597 295-7537/? V/AudioPolicyManager: setOutputDevice() setting same device 0002 or null device for output 4 02-27 13:58:14.597 295-625/? V/AudioPolicyManager: releaseOutput() 4 02-27 13:58:14.607 295-640/? V/audio_hw_primary: start_output_stream: enter: usecase(1: low-latency-playback) devices(0x2) 02-27 13:58:14.607 295-640/? V/audio_hw_primary: select_devices: ENTER 02-27 13:58:14.607 295-640/? V/audio_hw_primary: select_devices: usecase(normal) 02-27 13:58:14.607 295-640/? V/audio_hw_primary: select_devices: usecase(PCM_PLAYBACK) 02-27 13:58:14.607 295-640/? V/msm8974_platform: platform_get_output_snd_device: enter: output devices(0x2) 02-27 13:58:14.607 295-640/? V/msm8974_platform: get_OUTPUT_snd_device: for Normal Playback 02-27 13:58:14.607 295-640/? V/msm8974_platform: platform_get_output_snd_device: exit: snd_device(speaker) 02-27 13:58:14.607 295-640/? D/audio_hw_primary: select_devices: out_snd_device(2: speaker) 02-27 13:58:14.607 295-640/? D/audio_hw_primary: select_devices: in_snd_device(0: dummy) 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> send_audio_cal, acdb_id = 15, path = 0 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> send_adm_topology 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TOPOLOGY_ID 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> send_asm_topology 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TOPOLOGY_ID 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> send_audtable 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AUDPROC_CAL 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> send_audvoltable 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_GAIN_DEP_STEP_TABLE 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AUDPROC_VOL_CAL 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> send_afe_cal 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE 02-27 13:58:14.607 295-640/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AFE_CAL 02-27 13:58:14.607 295-640/? V/audio_hw_primary: enable_snd_device: snd_device(2: speaker, speaker) 02-27 13:58:14.607 295-640/? D/audio_route: ++++ audio_route_update_mixer ============== 02-27 13:58:14.607 295-640/? D/audio_route: Setting mixer control: SPK DRV Volume 02-27 13:58:14.607 295-640/? D/audio_route: Setting mixer control: value: 8 02-27 13:58:14.607 295-640/? D/audio_route: Setting mixer control: RX7 Digital Volume 02-27 13:58:14.607 295-640/? D/audio_route: Setting mixer control: value: 79 02-27 13:58:14.607 295-640/? D/audio_route: Setting mixer control: COMP0 Switch 02-27 13:58:14.607 295-640/? D/audio_route: Setting mixer control: value: 1 02-27 13:58:14.607 295-640/? D/audio_route: Setting mixer control: RX7 MIX1 INP1, value: 5 02-27 13:58:14.617 295-640/? D/audio_route: Setting mixer control: DAC1 Switch 02-27 13:58:14.617 295-640/? D/audio_route: Setting mixer control: value: 1 02-27 13:58:14.617 295-640/? D/audio_route: ------ audio_route_update_mixer ============== 02-27 13:58:14.617 295-640/? V/audio_hw_primary: enable_audio_route: enter: usecase(1) 02-27 13:58:14.617 295-640/? V/audio_hw_primary: enable_audio_route: apply mixer path: low-latency-playback 02-27 13:58:14.617 295-640/? D/audio_route: ++++ audio_route_update_mixer ============== 02-27 13:58:14.617 295-640/? D/audio_route: Setting mixer control: SLIMBUS_0_RX Audio Mixer MultiMedia5 02-27 13:58:14.617 295-640/? D/audio_route: Setting mixer control: value: 1 02-27 13:58:14.617 295-640/? D/audio_route: ------ audio_route_update_mixer ============== 02-27 13:58:14.617 295-640/? V/audio_hw_primary: enable_audio_route: exit 02-27 13:58:14.617 295-640/? V/audio_hw_primary: start_output_stream: Opening PCM device card_id(0) device_id(15) 02-27 13:58:14.617 295-640/? V/audio_hw_primary: start_output_stream: exit 02-27 13:58:14.637 257-257/? I/SurfaceFlinger: id=198 createSurf (1x1),1 flag=4, com.serenegiant.usbcameratest0/com.serenegiant.usbcameratest0.MainActivity 02-27 13:58:14.637 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.637 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.637 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.637 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.637 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.637 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.647 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.647 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.647 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.647 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.647 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.647 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.657 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.657 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.677 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.677 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.677 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.677 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.677 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.677 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.677 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.677 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.687 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.687 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.687 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.687 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.687 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.687 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.697 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.697 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.717 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.717 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.727 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.727 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.747 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.747 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.767 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.767 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.777 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.777 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.797 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.797 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.817 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.817 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.827 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.827 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.847 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.847 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.867 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.867 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.877 295-625/? V/AudioPolicyManager: stopOutput() output 4, stream 1, session 147 02-27 13:58:14.877 295-625/? V/AudioPolicyManager: changeRefCount() stream 1, count 0 02-27 13:58:14.877 295-625/? V/AudioPolicyManager: getNewOutputDevice() selected device 0 02-27 13:58:14.877 295-625/? V/AudioPolicyManager: setOutputDevice() output 4 device 0000 delayMs 100 02-27 13:58:14.877 295-625/? V/AudioPolicyManager: setOutputDevice() prevDevice 0002 02-27 13:58:14.877 295-625/? V/AudioPolicyManager: setOutputDevice() setting same device 0000 or null device for output 4 02-27 13:58:14.877 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.877 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.897 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.897 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.917 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.917 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.927 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.927 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.947 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.947 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.947 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.957 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.957 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.957 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.957 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.957 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:14.967 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:14.967 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.217 898-1138/? I/WifiStateMachine: CMD_RSSI_POLL : calculateWifiScore in! 02-27 13:58:15.227 898-1138/? I/WifiStateMachine: CMD_RSSI_POLL : calculateWifiScore out! 02-27 13:58:15.227 898-1138/? I/WifiStateMachine: CMD_RSSI_POLL : out! 02-27 13:58:15.247 898-1109/? D/InputReader: Input event: value=1 02-27 13:58:15.247 898-1109/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.143 ] when=372545506000 02-27 13:58:15.247 898-1108/? I/InputDispatcher: Delivering touch to (1176): action: 0x4, toolType: 1 02-27 13:58:15.247 898-1108/? I/InputDispatcher: Delivering touch to (11702): action: 0x0, toolType: 1 02-27 13:58:15.247 11702-11702/com.serenegiant.usbcameratest0 D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN 02-27 13:58:15.287 898-1109/? D/InputReader: Input event: value=0 02-27 13:58:15.287 898-1109/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=372588763000 02-27 13:58:15.287 898-1108/? I/InputDispatcher: Delivering touch to (11702): action: 0x1, toolType: 1 02-27 13:58:15.297 295-652/? I/AudioPolicyManager: getAudioPolicyConfig: situation=1;device=0 02-27 13:58:15.297 295-652/? I/AudioPolicyManager: getSituationVolume: isBTConnected:0 isHeadConnected:0 02-27 13:58:15.297 295-652/? V/AudioPolicyManager: deviceInt = 0, situationInt = 1, situationVolume = 1.000000 02-27 13:58:15.297 295-295/? V/AudioPolicyManager: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 0, flags 3 02-27 13:58:15.297 295-295/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:15.297 295-295/? V/AudioPolicyManager: getOutput() returns output 2 02-27 13:58:15.297 295-7538/? V/AudioPolicyManager: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 0, flags 3 02-27 13:58:15.297 295-7538/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:15.297 295-7538/? V/AudioPolicyManager: getOutput() returns output 2 02-27 13:58:15.297 295-658/? V/AudioPolicyManager: getOutputForAttr() usage=13, content=4, tag= flags=00000000 02-27 13:58:15.297 295-658/? V/AudioPolicyManager: getOutputForAttr() device 2, samplingRate 48000, format 1, channelMask 1, flags 4 02-27 13:58:15.297 295-658/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:15.297 295-658/? V/AudioPolicyManager: selectOutput() commonFlags for output 4, 0001 02-27 13:58:15.297 11702-11702/com.serenegiant.usbcameratest0 E/shsh: 810 12 48 1032 02-27 13:58:15.297 295-658/? V/AudioPolicyManager: getOutput() returns output 4 02-27 13:58:15.297 295-295/? V/AudioPolicyManager: startOutput() output 4, stream 1, session 148 02-27 13:58:15.297 295-295/? V/AudioPolicyManager: changeRefCount() stream 1, count 1 02-27 13:58:15.297 295-295/? V/AudioPolicyManager: getNewOutputDevice() selected device 2 02-27 13:58:15.297 295-295/? V/AudioPolicyManager: setOutputDevice() output 4 device 0002 delayMs 0 02-27 13:58:15.297 295-295/? V/AudioPolicyManager: setOutputDevice() prevDevice 0002 02-27 13:58:15.297 295-295/? V/AudioPolicyManager: setOutputDevice() setting same device 0002 or null device for output 4 02-27 13:58:15.297 295-625/? V/AudioPolicyManager: releaseOutput() 4 02-27 13:58:15.297 11702-11702/com.serenegiant.usbcameratest0 D/AbsListView: Get MotionRecognitionManager 02-27 13:58:15.307 898-1502/? D/MotionRecognitionService: ssp status : true 02-27 13:58:15.317 257-257/? I/SurfaceFlinger: id=199 createSurf (1x1),1 flag=4, PopupWindow:3ca5cde4 02-27 13:58:15.317 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.317 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.317 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.317 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.317 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.317 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.317 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.317 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.337 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.337 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.337 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.337 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.337 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.337 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.337 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.337 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.347 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.347 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.357 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.357 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.357 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.357 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.357 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.357 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.357 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.357 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.367 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.367 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.377 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.377 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.377 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.377 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.377 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.377 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.377 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.377 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.377 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.377 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.397 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.397 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.417 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.417 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.437 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.437 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.447 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.447 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.467 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.467 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.487 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.487 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.497 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.497 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.517 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.517 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.517 295-625/? V/AudioPolicyManager: stopOutput() output 4, stream 1, session 148 02-27 13:58:15.517 295-625/? V/AudioPolicyManager: changeRefCount() stream 1, count 0 02-27 13:58:15.517 295-625/? V/AudioPolicyManager: getNewOutputDevice() selected device 0 02-27 13:58:15.517 295-625/? V/AudioPolicyManager: setOutputDevice() output 4 device 0000 delayMs 100 02-27 13:58:15.517 295-625/? V/AudioPolicyManager: setOutputDevice() prevDevice 0002 02-27 13:58:15.517 295-625/? V/AudioPolicyManager: setOutputDevice() setting same device 0000 or null device for output 4 02-27 13:58:15.537 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.537 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.547 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.547 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.567 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.567 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.587 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.587 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.597 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.597 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.617 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.617 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.637 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.637 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.637 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.637 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.637 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.637 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.637 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.637 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.637 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.637 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.647 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:15.647 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:15.937 898-1109/? D/InputReader: Input event: value=1 02-27 13:58:15.937 898-1109/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.144 ] when=373237069000 02-27 13:58:15.937 898-1108/? I/InputDispatcher: Delivering touch to (1176): action: 0x4, toolType: 1 02-27 13:58:15.937 898-1108/? I/InputDispatcher: Delivering touch to (11702): action: 0x0, toolType: 1 02-27 13:58:15.947 11702-11702/com.serenegiant.usbcameratest0 D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN 02-27 13:58:16.017 898-1109/? D/InputReader: Input event: value=0 02-27 13:58:16.017 898-1109/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=373313024000 02-27 13:58:16.017 898-1108/? I/InputDispatcher: Delivering touch to (11702): action: 0x1, toolType: 1 02-27 13:58:16.087 295-295/? I/AudioPolicyManager: getAudioPolicyConfig: situation=1;device=0 02-27 13:58:16.087 295-295/? I/AudioPolicyManager: getSituationVolume: isBTConnected:0 isHeadConnected:0 02-27 13:58:16.087 295-295/? V/AudioPolicyManager: deviceInt = 0, situationInt = 1, situationVolume = 1.000000 02-27 13:58:16.087 295-652/? V/AudioPolicyManager: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 0, flags 3 02-27 13:58:16.087 295-652/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:16.087 295-652/? V/AudioPolicyManager: getOutput() returns output 2 02-27 13:58:16.087 295-679/? V/AudioPolicyManager: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 0, flags 3 02-27 13:58:16.087 295-679/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:16.087 295-679/? V/AudioPolicyManager: getOutput() returns output 2 02-27 13:58:16.087 295-295/? V/AudioPolicyManager: getOutputForAttr() usage=13, content=4, tag= flags=00000000 02-27 13:58:16.087 295-295/? V/AudioPolicyManager: getOutputForAttr() device 2, samplingRate 48000, format 1, channelMask 1, flags 4 02-27 13:58:16.087 295-295/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:16.087 295-295/? V/AudioPolicyManager: selectOutput() commonFlags for output 4, 0001 02-27 13:58:16.087 295-295/? V/AudioPolicyManager: getOutput() returns output 4 02-27 13:58:16.087 295-652/? V/AudioPolicyManager: startOutput() output 4, stream 1, session 149 02-27 13:58:16.087 295-652/? V/AudioPolicyManager: changeRefCount() stream 1, count 1 02-27 13:58:16.087 295-652/? V/AudioPolicyManager: getNewOutputDevice() selected device 2 02-27 13:58:16.087 295-652/? V/AudioPolicyManager: setOutputDevice() output 4 device 0002 delayMs 0 02-27 13:58:16.087 295-652/? V/AudioPolicyManager: setOutputDevice() prevDevice 0002 02-27 13:58:16.087 295-652/? V/AudioPolicyManager: setOutputDevice() setting same device 0002 or null device for output 4 02-27 13:58:16.087 295-625/? V/AudioPolicyManager: releaseOutput() 4 02-27 13:58:16.097 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.097 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.097 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.097 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.097 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.097 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.097 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.097 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.107 11702-11702/com.serenegiant.usbcameratest0 E/ViewRootImpl: sendUserActionEvent() mView == null 02-27 13:58:16.117 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.117 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.137 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.137 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.147 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.147 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.167 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.167 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.187 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.187 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.197 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.197 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.217 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.217 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.237 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.237 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.247 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.247 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.267 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.267 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.287 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.287 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.297 295-625/? V/AudioPolicyManager: stopOutput() output 4, stream 1, session 149 02-27 13:58:16.297 295-625/? V/AudioPolicyManager: changeRefCount() stream 1, count 0 02-27 13:58:16.297 295-625/? V/AudioPolicyManager: getNewOutputDevice() selected device 0 02-27 13:58:16.297 295-625/? V/AudioPolicyManager: setOutputDevice() output 4 device 0000 delayMs 100 02-27 13:58:16.297 295-625/? V/AudioPolicyManager: setOutputDevice() prevDevice 0002 02-27 13:58:16.297 295-625/? V/AudioPolicyManager: setOutputDevice() setting same device 0000 or null device for output 4 02-27 13:58:16.297 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.297 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.317 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.317 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.337 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.337 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.347 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.347 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.357 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.357 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.357 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.357 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.357 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.357 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.357 257-3056/? I/SurfaceFlinger: id=199 Removed PopupWindow:3ca5cde4 (8/10) 02-27 13:58:16.357 257-1112/? I/SurfaceFlinger: id=199 Removed PopupWindow:3ca5cde4 (-2/10) 02-27 13:58:16.367 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.367 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.367 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.367 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.367 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.367 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.367 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.367 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.607 898-1109/? D/InputReader: Input event: value=1 02-27 13:58:16.607 898-1109/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.145 ] when=373906130000 02-27 13:58:16.607 898-1108/? I/InputDispatcher: Delivering touch to (1176): action: 0x4, toolType: 1 02-27 13:58:16.607 898-1108/? I/InputDispatcher: Delivering touch to (11702): action: 0x0, toolType: 1 02-27 13:58:16.617 11702-11702/com.serenegiant.usbcameratest0 D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN 02-27 13:58:16.677 898-1109/? D/InputReader: Input event: value=0 02-27 13:58:16.677 898-1109/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=373971205000 02-27 13:58:16.677 898-1108/? I/InputDispatcher: Delivering touch to (11702): action: 0x1, toolType: 1 02-27 13:58:16.677 295-652/? I/AudioPolicyManager: getAudioPolicyConfig: situation=1;device=0 02-27 13:58:16.677 295-652/? I/AudioPolicyManager: getSituationVolume: isBTConnected:0 isHeadConnected:0 02-27 13:58:16.677 295-652/? V/AudioPolicyManager: deviceInt = 0, situationInt = 1, situationVolume = 1.000000 02-27 13:58:16.677 295-7538/? V/AudioPolicyManager: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 0, flags 3 02-27 13:58:16.677 295-7538/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:16.677 295-7538/? V/AudioPolicyManager: getOutput() returns output 2 02-27 13:58:16.677 295-7537/? V/AudioPolicyManager: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 0, flags 3 02-27 13:58:16.677 295-7537/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:16.677 898-1473/? D/UsbSettingsManager: hasPermission++ 02-27 13:58:16.677 295-7537/? V/AudioPolicyManager: getOutput() returns output 2 02-27 13:58:16.677 295-295/? V/AudioPolicyManager: getOutputForAttr() usage=13, content=4, tag= flags=00000000 02-27 13:58:16.677 898-1473/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/007,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mManufacturerName=e-consystems,mProductName=See3CAMCU50,mSerialNumber=27338300,mConfigurations=[ UsbConfiguration[mId=1,mName=null,mAttributes=128,mMaxPower=250,mInterfaces=[ UsbInterface[mId=0,mAlternateSetting=0,mName=See3CAMCU50,mClass=14,mSubclass=1,mProtocol=0,mEndpoints=[ UsbEndpoint[mAddress=130,mAttributes=3,mMaxPacketSize=64,mInterval=1]] UsbInterface[mId=1,mAlternateSetting=0,mName=null,mClass=14,mSubclass=2,mProtocol=0,mEndpoints=[ UsbEndpoint[mAddress=131,mAttributes=2,mMaxPacketSize=512,mInterval=1]] UsbInterface[mId=2,mAlternateSetting=0,mName=null,mClass=3,mSubclass=0,mProtocol=0,mEndpoints=[ UsbEndpoint[mAddress=133,mAttributes=3,mMaxPacketSize=64,mInterval=1] UsbEndpoint[mAddress=6,mAttributes=3,mMaxPacketSize=64,mInterval=1]]]]for {10071=true, 10107=true, 10125=true, 10236=true} 02-27 13:58:16.677 295-295/? V/AudioPolicyManager: getOutputForAttr() device 2, samplingRate 48000, format 1, channelMask 1, flags 4 02-27 13:58:16.677 295-295/? V/AudioPolicyManager: getOutputsForDevice device 0002 -> 0002 02-27 13:58:16.677 295-295/? V/AudioPolicyManager: selectOutput() commonFlags for output 4, 0001 02-27 13:58:16.677 295-295/? V/AudioPolicyManager: getOutput() returns output 4 02-27 13:58:16.677 295-679/? V/AudioPolicyManager: startOutput() output 4, stream 1, session 150 02-27 13:58:16.677 295-679/? V/AudioPolicyManager: changeRefCount() stream 1, count 1 02-27 13:58:16.677 295-679/? V/AudioPolicyManager: getNewOutputDevice() selected device 2 02-27 13:58:16.677 295-679/? V/AudioPolicyManager: setOutputDevice() output 4 device 0002 delayMs 0 02-27 13:58:16.677 295-679/? V/AudioPolicyManager: setOutputDevice() prevDevice 0002 02-27 13:58:16.677 295-679/? V/AudioPolicyManager: setOutputDevice() setting same device 0002 or null device for output 4 02-27 13:58:16.677 295-625/? V/AudioPolicyManager: releaseOutput() 4 02-27 13:58:16.687 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.687 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.687 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.687 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.687 898-912/? D/UsbSettingsManager: checkPermission: /dev/bus/usb/001/007 02-27 13:58:16.687 898-912/? D/UsbSettingsManager: hasPermission++ 02-27 13:58:16.687 898-912/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/007,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mManufacturerName=e-consystems,mProductName=See3CAMCU50,mSerialNumber=27338300,mConfigurations=[ UsbConfiguration[mId=1,mName=null,mAttributes=128,mMaxPower=250,mInterfaces=[ UsbInterface[mId=0,mAlternateSetting=0,mName=See3CAMCU50,mClass=14,mSubclass=1,mProtocol=0,mEndpoints=[ UsbEndpoint[mAddress=130,mAttributes=3,mMaxPacketSize=64,mInterval=1]] UsbInterface[mId=1,mAlternateSetting=0,mName=null,mClass=14,mSubclass=2,mProtocol=0,mEndpoints=[ UsbEndpoint[mAddress=131,mAttributes=2,mMaxPacketSize=512,mInterval=1]] UsbInterface[mId=2,mAlternateSetting=0,mName=null,mClass=3,mSubclass=0,mProtocol=0,mEndpoints=[ UsbEndpoint[mAddress=133,mAttributes=3,mMaxPacketSize=64,mInterval=1] UsbEndpoint[mAddress=6,mAttributes=3,mMaxPacketSize=64,mInterval=1]]]]for {10071=true, 10107=true, 10125=true, 10236=true} 02-27 13:58:16.697 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.697 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.717 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.717 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.737 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.737 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.747 11702-11702/com.serenegiant.usbcameratest0 V/MainActivity: onConnect: 02-27 13:58:16.747 11702-11702/com.serenegiant.usbcameratest0 E/ViewRootImpl: sendUserActionEvent() mView == null 02-27 13:58:16.747 898-1502/? D/InputMethodManagerService: windowGainedFocus mCurrentFocusedUserId - 0 and mSecureKeypadEnabled-false 02-27 13:58:16.747 898-1502/? W/InputMethodManagerService: Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@17cae454 attribute=null, token = android.os.BinderProxy@75fb951 02-27 13:58:16.747 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.747 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.757 2030-2030/? E/audit: type=1400 msg=audit(1456574296.757:300): avc: denied { create } for pid=11860 comm="pool-1-thread-1" scontext=u:r:untrusted_app:s0 tcontext=u:r:untrusted_app:s0 tclass=netlink_kobject_uevent_socket 02-27 13:58:16.757 2030-2030/? E/auditd: In denial and Property audit_ondenial is set to 1 02-27 13:58:16.757 898-1041/? D/SecurityLogAgent:SEDenialService: Got Modify Event and sending Denial Intent foraudit.log 02-27 13:58:16.757 898-1041/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1629 com.android.server.SEDenialService$AuditFileObserver.onEvent:76 android.os.FileObserver$ObserverThread.onEvent:122 android.os.FileObserver$ObserverThread.observe:-2 android.os.FileObserver$ObserverThread.run:85 02-27 13:58:16.757 2030-2030/? E/audit: SEPF_SM-G900F_5.0-1_0032 02-27 13:58:16.757 2030-2030/? E/audit: type=1300 msg=audit(1456574296.757:300): arch=40000028 syscall=281 per=800000 success=no exit=-13 a0=10 a1=3 a2=f a3=b5146070 items=0 ppid=319 pid=11860 auid=4294967295 uid=10125 gid=10125 euid=10125 suid=10125 fsuid=10125 egid=10125 sgid=10125 fsgid=10125 tty=(none) ses=4294967295 comm="pool-1-thread-1" exe="/system/bin/app_process32" subj=u:r:untrusted_app:s0 key=(null) 02-27 13:58:16.757 2030-2030/? E/audit: type=1320 msg=audit(1456574296.757:300): 02-27 13:58:16.757 898-1041/? D/SecurityLogAgent:SEDenialService: audit.ondenial set to 0 after sending samsung.intent.action.knox.DENIAL_NOTIFICATION intent 02-27 13:58:16.757 5920-5920/? D/SecurityLogAgent: SeDenialReceiver : Intent Received : samsung.intent.action.knox.DENIAL_NOTIFICATION 02-27 13:58:16.767 5920-5920/? D/SecurityLogAgent: SeDenialReceiver : File path = null 02-27 13:58:16.767 11702-11860/com.serenegiant.usbcameratest0 I/MainActivity: supportedSize:{"formats":[{"index":1,"type":4,"default":1,"size":["640x480","1920x1080","1280x720","2592x1944"]},{"index":2,"type":6,"default":1,"size":["640x480","1920x1080","1280x720","2592x1944"]}]} 02-27 13:58:16.767 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:1110] Thread[13,tid=11860,Native,Thread*=0xb4f11c00,peer=0x12d3db20,"pool-1-thread-1"] attempting to detach while still running code 02-27 13:58:16.767 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.767 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.787 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.787 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.807 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.807 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.817 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.817 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.837 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.837 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.857 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.857 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.867 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.867 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.887 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.887 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.897 295-625/? V/AudioPolicyManager: stopOutput() output 4, stream 1, session 150 02-27 13:58:16.897 295-625/? V/AudioPolicyManager: changeRefCount() stream 1, count 0 02-27 13:58:16.897 295-625/? V/AudioPolicyManager: getNewOutputDevice() selected device 0 02-27 13:58:16.897 295-625/? V/AudioPolicyManager: setOutputDevice() output 4 device 0000 delayMs 100 02-27 13:58:16.897 295-625/? V/AudioPolicyManager: setOutputDevice() prevDevice 0002 02-27 13:58:16.897 295-625/? V/AudioPolicyManager: setOutputDevice() setting same device 0000 or null device for output 4 02-27 13:58:16.907 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.907 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.917 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.917 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.937 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.937 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.957 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.957 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.957 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.957 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.957 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.957 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.957 257-1112/? I/SurfaceFlinger: id=198 Removed com.serenegiant.usbcameratest0/com.serenegiant.usbcameratest0.MainActivity (7/9) 02-27 13:58:16.967 257-3056/? I/SurfaceFlinger: id=198 Removed com.serenegiant.usbcameratest0/com.serenegiant.usbcameratest0.MainActivity (-2/9) 02-27 13:58:16.967 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.967 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.967 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.967 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:16.967 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:16.967 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] Runtime aborting... 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] Aborting thread: 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "pool-1-thread-1" prio=5 tid=13 Native 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12d3db20 self=0xb4f11c00 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11860 nice=0 cgrp=apps sched=0/0 handle=0xb4ff6980 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=R schedstat=( 14292654 13529168 23 ) utm=0 stm=1 core=3 HZ=100 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0x9f7b0000-0x9f7b2000 stackSize=1036KB 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= "abort lock" "mutator lock"(shared held) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00004640 /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00002e8d /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00247ff1 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+68) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0022c97b /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+146) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 0021ccd7 /system/lib/libart.so (art::AbortState::DumpThread(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, art::Thread*)+22) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 0021cf3d /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+364) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0021d109 /system/lib/libart.so (art::Runtime::Abort()+72) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 000a831b /system/lib/libart.so (art::LogMessage::~LogMessage()+1322) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0021babb /system/lib/libart.so (art::Runtime::DetachCurrentThread()+134) 02-27 13:58:17.017 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 00194b45 /system/lib/libart.so (art::JII::DetachCurrentThread(_JavaVM*)+44) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 000bf6cf /system/lib/libart.so (art::CheckJII::DetachCurrentThread(_JavaVM*)+78) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #11 pc 0000f6a8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCButtonCallback::uvc_button_callback(int, int, void*)+96) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #12 pc 0000aa00 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (_uvc_status_callback+56) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #13 pc 00009ad8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (usbi_handle_transfer_completion+184) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #14 pc 00011378 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #15 pc 000096e8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #16 pc 0000a380 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_timeout_completed+304) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #17 pc 0000a80c /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_completed+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #18 pc 0000b1e4 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_control_transfer+360) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #19 pc 00014558 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_query_stream_ctrl+188) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #20 pc 00014ed8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_get_stream_ctrl_format_size_fps+240) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #21 pc 0000d774 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCPreview::setPreviewSize(int, int, int, int, int, float)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #22 pc 00006b6f /data/dalvik-cache/arm/data@[email protected]@[email protected] (Java_com_serenegiant_usb_UVCCamera_nativeSetPreviewSize__JIIIIIF+142) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.nativeSetPreviewSize(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.setPreviewSize(UVCCamera.java:304) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.setPreviewSize(UVCCamera.java:277) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usbcameratest0.MainActivity$2$1.run(MainActivity.java:155) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x29e3e450> (a java.lang.Object) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] Dumping all threads without appropriate locks held: thread list lock mutator lock 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] All threads: 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] DALVIK THREADS (13): 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "main" prio=5 tid=1 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x86348ef0 self=0xb4f07800 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11702 nice=0 cgrp=apps sched=0/0 handle=0xb6feaec8 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 196716345 82222655 580 ) utm=13 stm=6 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xbe451000-0xbe453000 stackSize=8MB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 0003827c /system/lib/libc.so (__epoll_pwait+20) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00011b37 /system/lib/libc.so (epoll_pwait+26) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00011b45 /system/lib/libc.so (epoll_wait+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 00010e37 /system/lib/libutils.so (android::Looper::pollInner(int)+98) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 00011061 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000830e9 /system/lib/libandroid_runtime.so (android::NativeMessageQueue::pollOnce(_JNIEnv*, int)+22) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 000b22d7 /system/framework/arm/boot.oat (Java_android_os_MessageQueue_nativePollOnce__JI+102) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at android.os.MessageQueue.nativePollOnce(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at android.os.MessageQueue.next(MessageQueue.java:143) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at android.os.Looper.loop(Looper.java:130) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at android.app.ActivityThread.main(ActivityThread.java:5832) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.reflect.Method.invoke!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.reflect.Method.invoke(Method.java:372) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1399) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1194) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "Signal Catcher" prio=5 tid=2 WaitingInMainSignalCatcherLoop 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c4f080 self=0xafb0e400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11708 nice=0 cgrp=apps sched=0/0 handle=0xaef63800 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 1377447 2068022 10 ) utm=0 stm=0 core=1 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb46eb000-0xb46ed000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00036e14 /system/lib/libc.so (__rt_sigtimedwait+12) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00014f0d /system/lib/libc.so (sigwait+24) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00220293 /system/lib/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+66) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 00221d81 /system/lib/libart.so (art::SignalCatcher::Run(void*)+196) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "JDWP" prio=5 tid=3 WaitingInMainDebuggerLoop 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c53080 self=0xaf60e400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11709 nice=0 cgrp=apps sched=0/0 handle=0xaef63a80 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 17563070 8966199 40 ) utm=1 stm=0 core=1 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb45e7000-0xb45e9000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00037e1c /system/lib/libc.so (__pselect6+20) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00012f97 /system/lib/libc.so (select+60) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00289bef /system/lib/libart.so (art::JDWP::JdwpAdbState::ProcessIncoming()+186) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0018f501 /system/lib/libart.so (art::JDWP::JdwpState::Run()+348) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 00190a2b /system/lib/libart.so (art::JDWP::StartJdwpThread(void*)+10) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "ReferenceQueueDaemon" prio=5 tid=5 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c56080 self=0xaf348400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11711 nice=0 cgrp=apps sched=0/0 handle=0xaf358080 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 927603 536771 9 ) utm=0 stm=0 core=0 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb43d3000-0xb43d5000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc109 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000003db /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x2b78c649> (a java.lang.Class<java.lang.ref.ReferenceQueue>) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:133) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x2b78c649> (a java.lang.Class<java.lang.ref.ReferenceQueue>) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "FinalizerWatchdogDaemon" prio=5 tid=6 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c56140 self=0xaf348c00 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11713 nice=0 cgrp=apps sched=0/0 handle=0xaf358580 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 921720 5664269 12 ) utm=0 stm=0 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb41c5000-0xb41c7000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc109 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000003db /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x344cdb4e> (a java.lang.Daemons$FinalizerWatchdogDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForObject(Daemons.java:239) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x344cdb4e> (a java.lang.Daemons$FinalizerWatchdogDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:211) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "HeapTrimmerDaemon" prio=5 tid=7 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c561a0 self=0xaf349000 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11715 nice=0 cgrp=apps sched=0/0 handle=0xaf358800 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 907813 1177448 3 ) utm=0 stm=0 core=1 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb3ebb000-0xb3ebd000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc109 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000003db /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x1bdf546f> (a java.lang.Daemons$HeapTrimmerDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$HeapTrimmerDaemon.run(Daemons.java:310) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x1bdf546f> (a java.lang.Daemons$HeapTrimmerDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "Binder_1" prio=5 tid=8 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c7b080 self=0xaea06400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11714 nice=0 cgrp=apps sched=0/0 handle=0xaef63f80 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 4806299 6499167 44 ) utm=0 stm=0 core=0 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb3fc5000-0xb3fc7000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00037df0 /system/lib/libc.so (__ioctl+8) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 0004ee8d /system/lib/libc.so (ioctl+14) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 0001cb43 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0001d033 /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 0001d095 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00021203 /system/lib/libbinder.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0000ef55 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 0006039d /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0000eac5 /system/lib/libutils.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "GCDaemon" prio=5 tid=4 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c56200 self=0xaf349400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11716 nice=0 cgrp=apps sched=0/0 handle=0xaf358a80 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 688750 2519219 8 ) utm=0 stm=0 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb3dad000-0xb3daf000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc109 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 000003db /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x26aaf57c> (a java.lang.Daemons$GCDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$GCDaemon.run(Daemons.java:341) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x26aaf57c> (a java.lang.Daemons$GCDaemon) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "FinalizerDaemon" prio=5 tid=9 Waiting 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c560e0 self=0xaf348800 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11712 nice=0 cgrp=apps sched=0/0 handle=0xaf358300 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 887552 2155365 10 ) utm=0 stm=0 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb42c9000-0xb42cb000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00010110 /system/lib/libc.so (syscall+28) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 000aad9f /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 001eb8cb /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 001ecea5 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 001fc0e1 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+36) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00000607 /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+102) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait!(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - waiting on <0x277e7e05> (a java.lang.ref.ReferenceQueue) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Object.wait(Object.java:422) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:101) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x277e7e05> (a java.lang.ref.ReferenceQueue) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:173) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "Binder_2" prio=5 tid=10 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12c56260 self=0xad24a000 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11717 nice=0 cgrp=apps sched=0/0 handle=0xaea26080 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 5317396 5003958 38 ) utm=0 stm=0 core=3 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb44d9000-0xb44db000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00037df0 /system/lib/libc.so (__ioctl+8) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 0004ee8d /system/lib/libc.so (ioctl+14) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 0001cb43 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0001d033 /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 0001d095 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00021203 /system/lib/libbinder.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0000ef55 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 0006039d /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0000eac5 /system/lib/libutils.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "RenderThread" prio=5 tid=11 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12d23440 self=0xb3b18400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11725 nice=-4 cgrp=apps sched=0/0 handle=0xaef64700 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 89619323 24397137 253 ) utm=4 stm=4 core=3 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xb3a04000-0xb3a06000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 0003827c /system/lib/libc.so (__epoll_pwait+20) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00011b37 /system/lib/libc.so (epoll_pwait+26) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00011b45 /system/lib/libc.so (epoll_wait+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 00010e37 /system/lib/libutils.so (android::Looper::pollInner(int)+98) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 00011061 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00044e19 /system/lib/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+44) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0000ef55 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 0006039d /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0000eac5 /system/lib/libutils.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "Binder_3" prio=5 tid=12 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12d2c320 self=0xafa19400 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11738 nice=0 cgrp=apps sched=0/0 handle=0xaea26300 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=S schedstat=( 1627447 1015784 17 ) utm=0 stm=0 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0xa0124000-0xa0126000 stackSize=1012KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00037df0 /system/lib/libc.so (__ioctl+8) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 0004ee8d /system/lib/libc.so (ioctl+14) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 0001cb43 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0001d033 /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 0001d095 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 00021203 /system/lib/libbinder.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0000ef55 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 0006039d /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0000eac5 /system/lib/libutils.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 000137bb /system/lib/libc.so (__pthread_start(void*)+30) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 0001189b /system/lib/libc.so (__start_thread+6) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] (no managed stack frames) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] "pool-1-thread-1" prio=5 tid=13 Native 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x12d3db20 self=0xb4f11c00 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | sysTid=11860 nice=0 cgrp=apps sched=0/0 handle=0xb4ff6980 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | state=R schedstat=( 202502757 44927085 185 ) utm=11 stm=9 core=2 HZ=100 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | stack=0x9f7b0000-0x9f7b2000 stackSize=1036KB 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] | held mutexes= "abort lock" 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #00 pc 00004640 /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #01 pc 00002e8d /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #02 pc 00247ff1 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+68) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #03 pc 0022c97b /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+146) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #04 pc 002355d1 /system/lib/libart.so (art::ThreadList::DumpLocked(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+104) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #05 pc 0021cebd /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+236) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #06 pc 0021d109 /system/lib/libart.so (art::Runtime::Abort()+72) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #07 pc 000a831b /system/lib/libart.so (art::LogMessage::~LogMessage()+1322) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #08 pc 0021babb /system/lib/libart.so (art::Runtime::DetachCurrentThread()+134) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #09 pc 00194b45 /system/lib/libart.so (art::JII::DetachCurrentThread(_JavaVM*)+44) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #10 pc 000bf6cf /system/lib/libart.so (art::CheckJII::DetachCurrentThread(_JavaVM*)+78) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #11 pc 0000f6a8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCButtonCallback::uvc_button_callback(int, int, void*)+96) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #12 pc 0000aa00 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (_uvc_status_callback+56) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #13 pc 00009ad8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (usbi_handle_transfer_completion+184) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #14 pc 00011378 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #15 pc 000096e8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (???) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #16 pc 0000a380 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_timeout_completed+304) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #17 pc 0000a80c /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_completed+48) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #18 pc 0000b1e4 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_control_transfer+360) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #19 pc 00014558 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_query_stream_ctrl+188) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #20 pc 00014ed8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_get_stream_ctrl_format_size_fps+240) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #21 pc 0000d774 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCPreview::setPreviewSize(int, int, int, int, int, float)+120) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] native: #22 pc 00006b6f /data/dalvik-cache/arm/data@[email protected]@[email protected] (Java_com_serenegiant_usb_UVCCamera_nativeSetPreviewSize__JIIIIIF+142) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.nativeSetPreviewSize(Native method) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.setPreviewSize(UVCCamera.java:304) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usb.UVCCamera.setPreviewSize(UVCCamera.java:277) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at com.serenegiant.usbcameratest0.MainActivity$2$1.run(MainActivity.java:155) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] - locked <0x29e3e450> (a java.lang.Object) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] at java.lang.Thread.run(Thread.java:818) 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/art: art/runtime/runtime.cc:286] 02-27 13:58:17.027 11702-11860/com.serenegiant.usbcameratest0 A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 11860 (pool-1-thread-1) 02-27 13:58:17.087 286-286/? I/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 02-27 13:58:17.087 286-286/? I/DEBUG: Build fingerprint: 'samsung/kltexx/klte:5.0/LRX21T/G900FXXU1BOJ1:user/release-keys' 02-27 13:58:17.087 286-286/? I/DEBUG: Revision: '14' 02-27 13:58:17.087 286-286/? I/DEBUG: ABI: 'arm' 02-27 13:58:17.087 286-286/? I/DEBUG: pid: 11702, tid: 11860, name: pool-1-thread-1 >>> com.serenegiant.usbcameratest0 <<< 02-27 13:58:17.087 286-286/? I/DEBUG: signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr -------- 02-27 13:58:17.127 286-286/? I/DEBUG: Abort message: 'art/runtime/runtime.cc:1110] Thread[13,tid=11860,Native,Thread*=0xb4f11c00,peer=0x12d3db20,"pool-1-thread-1"] attempting to detach while still running code' 02-27 13:58:17.127 286-286/? I/DEBUG: r0 00000000 r1 00002e54 r2 00000006 r3 00000000 02-27 13:58:17.127 286-286/? I/DEBUG: r4 9f8b1db8 r5 00000006 r6 00000002 r7 0000010c 02-27 13:58:17.127 286-286/? I/DEBUG: r8 00000001 r9 b4f4f520 sl b4f11c00 fp af50b400 02-27 13:58:17.127 286-286/? I/DEBUG: ip 00002e54 sp 9f8b14c0 lr b6f74fd5 pc b6f98720 cpsr 60070010 02-27 13:58:17.127 286-286/? I/DEBUG: #00 pc 00037720 /system/lib/libc.so (tgkill+12) 02-27 13:58:17.127 286-286/? I/DEBUG: #01 pc 00013fd1 /system/lib/libc.so (pthread_kill+52) 02-27 13:58:17.127 286-286/? I/DEBUG: #02 pc 00014bef /system/lib/libc.so (raise+10) 02-27 13:58:17.127 286-286/? I/DEBUG: #03 pc 00011531 /system/lib/libc.so (__libc_android_abort+36) 02-27 13:58:17.127 286-286/? I/DEBUG: #04 pc 0000fcbc /system/lib/libc.so (abort+4) 02-27 13:58:17.127 286-286/? I/DEBUG: #05 pc 0021d161 /system/lib/libart.so (art::Runtime::Abort()+160) 02-27 13:58:17.127 286-286/? I/DEBUG: #06 pc 000a831b /system/lib/libart.so (art::LogMessage::~LogMessage()+1322) 02-27 13:58:17.127 286-286/? I/DEBUG: #07 pc 0021babb /system/lib/libart.so (art::Runtime::DetachCurrentThread()+134) 02-27 13:58:17.127 286-286/? I/DEBUG: #08 pc 00194b45 /system/lib/libart.so (art::JII::DetachCurrentThread(_JavaVM*)+44) 02-27 13:58:17.127 286-286/? I/DEBUG: #09 pc 000bf6cf /system/lib/libart.so (art::CheckJII::DetachCurrentThread(_JavaVM*)+78) 02-27 13:58:17.127 286-286/? I/DEBUG: #10 pc 0000f6a8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCButtonCallback::uvc_button_callback(int, int, void*)+96) 02-27 13:58:17.127 286-286/? I/DEBUG: #11 pc 0000aa00 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (_uvc_status_callback+56) 02-27 13:58:17.127 286-286/? I/DEBUG: #12 pc 00009ad8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (usbi_handle_transfer_completion+184) 02-27 13:58:17.127 286-286/? I/DEBUG: #13 pc 00011378 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so 02-27 13:58:17.127 286-286/? I/DEBUG: #14 pc 000096e8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so 02-27 13:58:17.127 286-286/? I/DEBUG: #15 pc 0000a380 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_timeout_completed+304) 02-27 13:58:17.127 286-286/? I/DEBUG: #16 pc 0000a80c /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_handle_events_completed+48) 02-27 13:58:17.127 286-286/? I/DEBUG: #17 pc 0000b1e4 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libusb100.so (libusb_control_transfer+360) 02-27 13:58:17.127 286-286/? I/DEBUG: #18 pc 00014558 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_query_stream_ctrl+188) 02-27 13:58:17.127 286-286/? I/DEBUG: #19 pc 00014ed8 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libuvc.so (uvc_get_stream_ctrl_format_size_fps+240) 02-27 13:58:17.127 286-286/? I/DEBUG: #20 pc 0000d774 /data/app/com.serenegiant.usbcameratest0-1/lib/arm/libUVCCamera.so (UVCPreview::setPreviewSize(int, int, int, int, int, float)+120) 02-27 13:58:17.127 286-286/? I/DEBUG: #21 pc 00006b6f /data/dalvik-cache/arm/data@[email protected]@[email protected] 02-27 13:58:17.517 898-1041/? I/BootReceiver: Copying /data/tombstones/tombstone_08 to DropBox (SYSTEM_TOMBSTONE) 02-27 13:58:17.527 898-11874/? W/ActivityManager: Force finishing activity com.serenegiant.usbcameratest0/.MainActivity 02-27 13:58:17.527 2030-2030/? E/audit: type=1701 msg=audit(1456574297.517:301): auid=4294967295 uid=10125 gid=10125 ses=4294967295 subj=u:r:untrusted_app:s0 pid=11860 comm="pool-1-thread-1" reason="memory violation" sig=6 02-27 13:58:17.527 898-4058/? E/SharedPreferencesImpl: Couldn't create directory for SharedPreferences file shared_prefs/log_files.xml 02-27 13:58:17.527 898-11874/? D/FocusedStackFrame: Set to : 0 02-27 13:58:17.527 1176-4106/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.537 1176-4106/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.537 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.537 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.557 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.557 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.557 3237-3237/? I/SQLiteSecureOpenHelper: getWritableDatabase(pwd) 02-27 13:58:17.557 3237-3237/? I/SQLiteSecureOpenHelper: getDatabaseLocked(b,b,pwd)... 02-27 13:58:17.567 898-1147/? I/WindowState: WIN DEATH: Window{175804a u0 SurfaceView} 02-27 13:58:17.567 898-11876/? E/android.os.Debug: ro.product_ship = true 02-27 13:58:17.567 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.567 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.567 898-11876/? E/android.os.Debug: ro.debug_level = 0x4f4c 02-27 13:58:17.567 898-1520/? I/WindowState: WIN DEATH: Window{33dec5b6 u0 com.serenegiant.usbcameratest0/com.serenegiant.usbcameratest0.MainActivity} 02-27 13:58:17.577 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.577 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.577 898-1043/? D/StatusBarManagerService: manageDisableList userId=0 what=0x0 pkg=WindowManager.LayoutParams 02-27 13:58:17.577 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.577 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.587 898-1500/? I/ActivityManager: Process com.serenegiant.usbcameratest0 (pid 11702)(adj 0) has died(63,624) 02-27 13:58:17.587 898-1500/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 898 pkgName : ACTIVITY_RESUME_BOOSTER@6 02-27 13:58:17.587 898-1500/? W/ActivityManager: mDVFSHelper.acquire() 02-27 13:58:17.587 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.587 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.587 898-1500/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, mbResultFaceDectection: false 02-27 13:58:17.587 898-1500/? V/WindowManager: rotationForOrientationLw(orient=1, last=0); user=0 sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false 02-27 13:58:17.587 898-1500/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, Rotation: -1 02-27 13:58:17.587 898-1500/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, mbResultFaceDectection: false 02-27 13:58:17.587 898-1500/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, Rotation: -1 02-27 13:58:17.597 319-319/? I/Zygote: Process 11702 exited due to signal (6) 02-27 13:58:17.597 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.597 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.607 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.607 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.607 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.607 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.607 257-257/? I/SurfaceFlinger: id=200 createSurf (49x49),1 flag=4, Application Error: com.serenegiant.usbcameratest0 02-27 13:58:17.607 1475-1475/? D/Launcher: onRestart, Launcher: 447002908 02-27 13:58:17.607 1475-1475/? D/Launcher: onStart, Launcher: 447002908 02-27 13:58:17.607 1475-1475/? D/Launcher.HomeView: onStart 02-27 13:58:17.617 1475-1475/? D/Launcher: onResume, Launcher: 447002908 02-27 13:58:17.617 898-1566/? D/SettingsProvider: name = kids_home_mode 02-27 13:58:17.617 898-1566/? D/SettingsProvider: edmUri: content://com.sec.knox.provider/RestrictionPolicy3 02-27 13:58:17.617 898-1566/? D/SettingsProvider: projectionArgs: isSettingsChangesAllowed 02-27 13:58:17.617 898-1566/? D/SettingsProvider: selectionArgs: false 02-27 13:58:17.617 898-1566/? D/SettingsProvider: selectionArgs: 10009 02-27 13:58:17.617 898-1566/? D/SecContentProvider: uri = 17 selection = isSettingsChangesAllowed 02-27 13:58:17.617 898-1566/? D/SettingsProvider: ret = -1 02-27 13:58:17.617 1475-1475/? D/Launcher.HomeView: onResume 02-27 13:58:17.617 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.617 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.617 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.617 7105-7105/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1994 android.content.ContextWrapper.startService:533 android.content.ContextWrapper.startService:533 com.samsung.android.sm.common.SmartManagerReceiver.b:199 com.samsung.android.sm.common.SmartManagerReceiver.onReceive:93 02-27 13:58:17.617 898-898/? D/CrashAnrDetector: Build: samsung/kltexx/klte:5.0/LRX21T/G900FXXU1BOJ1:user/release-keys Hardware: MSM8974 Revision: 14 Bootloader: G900FXXU1BOJ1 Radio: unknown Kernel: Linux version 3.4.0-5508620 (dpi@SWHD4015) (gcc version 4.8 (GCC) ) #1 SMP PREEMPT Mon Oct 5 16:10:09 KST 2015 02-27 13:58:17.617 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.617 898-898/? D/CrashAnrDetector: processName:com.serenegiant.usbcameratest0 02-27 13:58:17.617 898-898/? D/CrashAnrDetector: broadcastEvent : com.serenegiant.usbcameratest0 SYSTEM_TOMBSTONE 02-27 13:58:17.617 898-898/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1643 com.android.server.analytics.data.collection.application.CrashAnrDetector.broadcastEvent:296 com.android.server.analytics.data.collection.application.CrashAnrDetector.processDropBoxEntry:254 com.android.server.analytics.data.collection.application.CrashAnrDetector.access$100:60 com.android.server.analytics.data.collection.application.CrashAnrDetector$1.onReceive:102 02-27 13:58:17.617 898-912/? D/ActivityManager: startService callerProcessName:com.samsung.android.sm, calleePkgName: com.samsung.android.sm 02-27 13:58:17.627 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.627 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.627 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.627 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.627 898-1165/? I/Adreno-EGL: <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build: () OpenGL ES Shader Compiler Version: E031.25.01.03 Build Date: 03/03/15 Tue Local Branch: LA.BF.1.1_RB1_20150108_025_1077123_1158499 Remote Branch: Local Patches: Reconstruct Branch: 02-27 13:58:17.627 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.627 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.627 898-1165/? I/OpenGLRenderer: Initialized EGL, version 1.4 02-27 13:58:17.627 1475-1475/? D/Launcher: setSystemUiTransparency.SettingNotFoundException : set as TRUE 02-27 13:58:17.627 1475-1475/? D/Launcher: Launcher::setSystemUiTransparency(): getSystemUiVisibility() after setting = 8000 02-27 13:58:17.637 898-1165/? I/OpenGLRenderer: HWUI protection enabled for context , &this =0xaed50fb0 ,&mEglDisplay = 1 , &mEglConfig = 8 02-27 13:58:17.637 1475-1475/? D/MenuAppsGridFragment: onResume 02-27 13:58:17.637 898-4080/? D/ActivityManager: handle home activity for 0 02-27 13:58:17.637 898-4080/? I/WallpaperManagerService: switchPersonaWallpaper is called for personaId-0 02-27 13:58:17.637 898-4080/? D/ActivityManager: post active user change for 0 02-27 13:58:17.637 898-4080/? D/KnoxTimeoutHandler: postActiveUserChange for user 0 02-27 13:58:17.637 898-898/? D/WallpaperManagerService: force update = false; persona id = 0; current user =0; current persona = 0 02-27 13:58:17.637 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.637 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.637 898-898/? D/KnoxTimeoutHandler: handleActiveUserChange for user 0 02-27 13:58:17.647 257-257/? I/SurfaceFlinger: id=201 createSurf (1080x1920),1 flag=4, com.sec.android.app.launcher/com.android.launcher2.Launcher 02-27 13:58:17.647 898-4112/? D/ConnectivityService: returning getNetworkInfo(networkType - 1) :[type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "MISS_U_LANTHI", roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwork: false] 02-27 13:58:17.657 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.657 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.657 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.657 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.657 1176-1211/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.657 1176-1211/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.667 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.667 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.687 1475-1475/? I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@8d49d73 time:374980 02-27 13:58:17.687 1176-4078/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.687 1176-4078/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.687 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.687 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.687 1176-1646/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.687 1176-1646/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.687 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.687 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.697 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.697 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.697 1176-1685/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.697 1176-1685/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.697 898-1043/? D/StatusBarManagerService: manageDisableList userId=0 what=0x0 pkg=WindowManager.LayoutParams 02-27 13:58:17.697 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.697 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.697 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.697 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.697 1176-1201/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.697 1176-1201/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.697 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.697 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.707 898-4080/? W/BroadcastQueue: Permission Denial: broadcasting Intent { act=com.sec.android.intent.action.HOME_RESUME flg=0x10 } from com.sec.android.app.launcher (pid=1475, uid=10009) is not exported from uid 1000 due to receiver com.android.settings/.accessibilitywidget.AccessibilityEasyWidgetProviderAssistiveLight 02-27 13:58:17.707 1176-4613/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.707 1176-4613/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.707 1176-5049/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.707 1176-5049/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.707 1176-4107/? D/LockPatternUtilsCache: getCarrierLockPlusMode() 02-27 13:58:17.707 1176-4107/? D/LockPatternUtilsCache: value : false 02-27 13:58:17.707 257-388/? I/SurfaceFlinger: id=196 Removed com.serenegiant.usbcameratest0/com.serenegiant.usbcameratest0.MainActivity (5/10) 02-27 13:58:17.707 257-404/? I/SurfaceFlinger: id=196 Removed com.serenegiant.usbcameratest0/com.serenegiant.usbcameratest0.MainActivity (-2/10) 02-27 13:58:17.707 257-1112/? I/SurfaceFlinger: id=197 Removed SurfaceView (3/9) 02-27 13:58:17.717 257-3056/? I/SurfaceFlinger: id=197 Removed SurfaceView (-2/9) 02-27 13:58:17.717 257-404/? I/SurfaceFlinger: id=196 Removed com.serenegiant.usbcameratest0/com.serenegiant.usbcameratest0.MainActivity (-2/9) 02-27 13:58:17.717 257-404/? I/SurfaceFlinger: id=197 Removed SurfaceView (-2/9)

Any Idea? I really need to get these cameras to work reliably and do not know where to search for errors any more.
Thanks!

from uvccamera.

btut avatar btut commented on August 11, 2024

Well I found out the -50 errors are due to missing interfaces. The USB Device sometimes returns getInterfaceCount == 0. Fixed this Bug by downgrading to 4.4.2 from 5.0 on my Samsung Galaxy S5 (This is a known Bug, Android Issue 159529).
The -2 errors are still happening though, and sometimes there is no error but the preview of one camera is black.
Any comment would be great!
Thank you!

from uvccamera.

saki4510t avatar saki4510t commented on August 11, 2024

Hi,
As your previous log seems to relate button callback, could you try to comment line 138 and 139 on UVCCamera.cpp like as follows?

//              mStatusCallback = new UVCStatusCallback(mDeviceHandle);
//              mButtonCallback = new UVCButtonCallback(mDeviceHandle);

I also have GALAXY S5 with Android 5.0 but I never meet Android Issue 159529 yet. So this may not solve your issue, I update usbCameraTest7 on minoru001 branch so that app can automatically start preview when app has permission (this is very rough implementation and there may be issue but it works well on my GALAXY S5 with Minoru stereo camera). Could you also try this?

FYI, native implementation of libuvc on minoru001 branch always uses alternate setting 4, and your camera may not work well. In that case please rewind line 1667, 1692, 1693 and 1706 on stream.c or adjust alternate setting by yourself.

saki

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi,
thanks a lot for your reply! I highly appreciate it since I have no Idea where to continue.

Unfortunately, disabling the callbacks you mentioned did not change anything. usbCameraTest7 is not able to open the cameras and often crashes (see log below), not matter if opened manually or automatically when a camera is connected.

Regarding the altsetting: What exacly does this do and how do you determine what altsetting to use? May it make sense for me to somehow determine what altsetting works best for me and fix it to that altsetting as you did for the minoru cams?

Thanks again for your help and time!

`03-01 17:56:54.407 865-944/? D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 307
03-01 17:56:54.407 18286-18286/? I/SELinux: Function: selinux_android_load_priority [0], There is no sepolicy file.

03-01 17:56:54.407 18286-18286/? I/SELinux: Function: selinux_android_load_priority [1], There is no sepolicy version file.

03-01 17:56:54.407 18286-18286/? I/SELinux: Function: selinux_android_load_priority , priority version is VE=SEPF_SM-G900F_4.4.2_0018

03-01 17:56:54.407 865-944/? D/PointerIcon: setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
03-01 17:56:54.407 865-944/? D/PointerIcon: setMouseCustomIcon IconType is same.101
03-01 17:56:54.407 865-944/? D/PointerIcon: setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
03-01 17:56:54.407 18286-18286/? E/dalvikvm: >>>>> Normal User
03-01 17:56:54.407 18286-18286/? E/dalvikvm: >>>>> com.serenegiant.usbcameratest7 [ userId:0 | appId:10206 ]
03-01 17:56:54.407 865-944/? D/PointerIcon: setHoveringSpenCustomIcon IconType is same.1
03-01 17:56:54.407 865-944/? D/StatusBarManagerService: tr p:865,o:f
03-01 17:56:54.417 18286-18286/? D/dalvikvm: Late-enabling CheckJNI
03-01 17:56:54.417 258-258/? I/SurfaceFlinger: id=223 createSurf (1x1),1 flag=404, vsbcamerate
03-01 17:56:54.417 865-944/? D/StatusBarManagerService: semi p:865,o:f
03-01 17:56:54.427 1050-1062/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.427 1050-1050/? D/PhoneStatusBar: setTransGradationMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
03-01 17:56:54.427 1050-1050/? D/PhoneStatusBar: setSemiTransparentMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
03-01 17:56:54.437 1050-17309/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.437 865-944/? D/StatusBarManagerService: semi p:865,o:f
03-01 17:56:54.447 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.447 18286-18286/? D/TimaKeyStoreProvider: in addTimaSignatureService
03-01 17:56:54.447 18286-18286/? D/TimaKeyStoreProvider: Cannot add TimaSignature Service, License check Failed
03-01 17:56:54.447 865-944/? D/skia: GFXPNG PNG bitmap created width:96 height:96 bitmap id is 308
03-01 17:56:54.447 18286-18286/? D/ActivityThread: Added TimaKesytore provider
03-01 17:56:54.457 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.457 1050-1050/? D/PhoneStatusBar: setSemiTransparentMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
03-01 17:56:54.457 865-1280/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, mbResultFaceDectection: false
03-01 17:56:54.457 865-1280/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, Rotation: -1
03-01 17:56:54.457 865-1280/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, mbResultFaceDectection: false
03-01 17:56:54.457 865-1280/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, Rotation: -1
03-01 17:56:54.457 865-1280/? D/InputDispatcher: setInputDispatchMode: enabled=1, frozen=1
03-01 17:56:54.457 258-258/? I/SurfaceFlinger: id=224 createSurf (1080x1920),2 flag=404, TcreenshotS
03-01 17:56:54.457 865-1280/? V/WindowManager: rotationForOrientationLw(orient=0, last=0); user=0 sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false mAccelerometerDefault=false gripRotationLock=false
03-01 17:56:54.457 865-1280/? D/SamsungWindowManager: setRotationLw() : rotation=1
03-01 17:56:54.457 865-1280/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 2457600 uid : 1000 pid : 865 pkgName : ROTATION_BOOSTER@31
03-01 17:56:54.457 865-2338/? D/SSRMv2:TSP:AirViewOnOff: DeviceInfo:: 00001000000
03-01 17:56:54.457 865-2338/? D/SSRMv2:TSP:AirViewOnOff: SettingsAirViewInfo:: 000000000
03-01 17:56:54.477 258-258/? I/SurfaceFlinger: Orientation 0=>1
03-01 17:56:54.477 865-1280/? I/ActivityManager: Config changes=480 {0 1.0 ?mcc?mnc en_US ldltr sw360dp w640dp h335dp 480dpi nrml long land finger -keyb/v/h -nav/h s.28}
03-01 17:56:54.497 16024-16024/? D/Mms/MmsApp: [start] onConfigurationChanged(),newConfig={0 1.0 ?mcc?mnc en_US ldltr sw360dp w640dp h335dp 480dpi nrml long land finger -keyb/v/h -nav/h s.28}
03-01 17:56:54.497 16024-16024/? D/Mms/MmsApp: [end] onConfigurationChanged(),newConfig={0 1.0 ?mcc?mnc en_US ldltr sw360dp w640dp h335dp 480dpi nrml long land finger -keyb/v/h -nav/h s.28}
03-01 17:56:54.497 1050-17309/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.497 865-949/? D/STATUSBAR-StatusBarManagerService: manageDisableList what=0x0 pkg=WindowManager.LayoutParams
03-01 17:56:54.507 865-949/? D/EnterpriseDeviceManager: ContainerId: 0
03-01 17:56:54.507 3353-3353/? I/SamsungIME: [Before] hardKeyboardHidden(2) keyboardType(1)
mHwKeyboardShown [isHWKeyboardOpen()] = false --> false
03-01 17:56:54.507 3353-3353/? E/SamsungIME: isHWKeyboardConnected() = false --> false
03-01 17:56:54.507 3353-3353/? I/SamsungIME: [hasToCallSuper] true
03-01 17:56:54.517 1050-1060/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.527 1050-1050/? D/PhoneStatusBar: mSettingsPanelGravity = 55
03-01 17:56:54.527 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.527 1050-1050/? D/PhoneStatusBarView: marqueeStatusBar:185, mClearCover:0
03-01 17:56:54.527 1050-1050/? D/STATUSBAR-IconMerger: checkOverflow(576), More:false, Req:false Child:3
03-01 17:56:54.537 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.547 1050-5867/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.547 865-986/? I/InputReader: Reconfiguring input devices. changes=0x00000004
03-01 17:56:54.547 865-986/? I/InputReader: Device reconfigured: id=10, name='sec_touchscreen', size 1080x1920, orientation 1, mode 1, display id 0
03-01 17:56:54.547 1050-1062/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.557 1050-1612/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.557 1050-1050/? D/STATUSBAR-QuickSettingPanel: setSingleLine:true
03-01 17:56:54.557 1050-1050/? D/STATUSBAR-QuickSettingPanel: updateButtonInfo mButtonWidth : 240 mColumnNumber:8 orien: 2
03-01 17:56:54.557 1050-1050/? D/STATUSBAR-QuickSettingPanel: onConfigurationChanged - dynamicallyReduceTextSize
03-01 17:56:54.557 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.557 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.567 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.567 865-865/? E/Tethering: No numeric data
03-01 17:56:54.567 1267-1267/? D/Launcher.HomeView: onStop
03-01 17:56:54.567 1050-5867/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.567 1267-1267/? D/Launcher: onTrimMemory. Level: 20
03-01 17:56:54.567 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.567 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.567 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.567 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.567 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.567 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.567 865-1040/? E/SmartFaceService: onReceive: android.intent.action.CONFIGURATION_CHANGED
03-01 17:56:54.567 865-1040/? E/SmartFaceService: mFolderCoverOpened: (true, true) -> true
03-01 17:56:54.567 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-17309/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 865-1040/? V/SmartFaceService - 3rd party pause: onReceive [android.intent.action.ACTIVITY_STATE/com.serenegiant.usbcameratest7/create]
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.577 1050-1050/? D/STATUSBAR-QuickSettingButton: dynamicallyReduceTextSize: 240
03-01 17:56:54.587 1050-1050/? D/STATUSBAR-IconMerger: checkOverflow(1440), More:false, Req:false Child:3
03-01 17:56:54.587 18286-18286/com.serenegiant.usbcameratest7 I/PersonaManager: getPersonaService() name persona_policy
03-01 17:56:54.587 258-520/? I/SurfaceFlinger: id=215 Removed Mauncher (6/11)
03-01 17:56:54.597 258-515/? I/SurfaceFlinger: id=215 Removed Mauncher (-2/11)
03-01 17:56:54.597 1050-5867/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.607 1050-1299/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.617 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.617 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.617 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.617 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.617 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:48 height:48 bitmap id is 180
03-01 17:56:54.617 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 181
03-01 17:56:54.617 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 182
03-01 17:56:54.617 1050-1050/? D/STATUSBAR-NetworkController: onReceive() - ACTION_CONFIGURATION_CHANGED
03-01 17:56:54.617 1050-1050/? D/STATUSBAR-NetworkController: onReceive() - RSSI_CHANGED_ACTION, WIFI_STATE, NETWORK_STATE
03-01 17:56:54.617 1050-1050/? D/STATUSBAR-NetworkController: refreshSignalCluster - setNWBoosterIndicators(false)
03-01 17:56:54.617 1050-1050/? D/STATUSBAR-NetworkController: refreshSignalCluster: data=-1 bt=false
03-01 17:56:54.627 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.627 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:13 height:41 bitmap id is 183
03-01 17:56:54.627 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:18 height:18 bitmap id is 184
03-01 17:56:54.627 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:18 height:18 bitmap id is 185
03-01 17:56:54.627 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.627 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.627 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:18 height:18 bitmap id is 186
03-01 17:56:54.627 1050-1050/? D/STATUSBAR-IconMerger: checkOverflow(1440), More:false, Req:false Child:3
03-01 17:56:54.637 18286-18286/com.serenegiant.usbcameratest7 E/MoreInfoHPW_ViewGroup: Parent view is not a TextView
03-01 17:56:54.637 18286-18317/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:48 height:48 bitmap id is 187
03-01 17:56:54.637 18286-18317/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 188
03-01 17:56:54.637 18286-18318/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 189
03-01 17:56:54.637 18286-18317/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:13 height:41 bitmap id is 190
03-01 17:56:54.637 18286-18306/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:18 height:18 bitmap id is 191
03-01 17:56:54.637 18286-18306/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:18 height:18 bitmap id is 192
03-01 17:56:54.637 18286-18306/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:18 height:18 bitmap id is 193
03-01 17:56:54.637 18286-18306/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 194
03-01 17:56:54.647 18286-18306/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 195
03-01 17:56:54.647 18286-18319/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 196
03-01 17:56:54.647 18286-18317/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 197
03-01 17:56:54.647 18286-18318/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:96 height:96 bitmap id is 198
03-01 17:56:54.647 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:72 height:72 bitmap id is 199
03-01 17:56:54.647 865-2338/? D/SSRMv2:SIOP: SIOP:: AP = 410, PST = 397, Delta = -1
03-01 17:56:54.647 865-1025/? D/StatusBarManagerService: tr p:18286,o:f
03-01 17:56:54.657 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onResume:
03-01 17:56:54.657 865-1101/? D/StatusBarManagerService: semi p:18286,o:f
03-01 17:56:54.667 1050-1050/? D/PhoneStatusBar: setTransGradationMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
03-01 17:56:54.667 1050-1050/? D/PhoneStatusBar: setSemiTransparentMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
03-01 17:56:54.687 865-1342/? D/StatusBarManagerService: semi p:18286,o:f
03-01 17:56:54.687 258-258/? I/SurfaceFlinger: id=225 createSurf (1x1),1 flag=404, NainActivit
03-01 17:56:54.687 865-1426/? I/SpenGestureManager: setFocusWindow21010
03-01 17:56:54.697 1050-17309/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.697 1050-1060/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.697 865-944/? D/PointerIcon: setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
03-01 17:56:54.697 865-944/? D/PointerIcon: setMouseCustomIcon IconType is same.101
03-01 17:56:54.697 865-944/? D/PointerIcon: setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
03-01 17:56:54.697 865-944/? D/PointerIcon: setHoveringSpenCustomIcon IconType is same.1
03-01 17:56:54.707 18286-18286/com.serenegiant.usbcameratest7 I/Adreno-EGL: <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build: ()
OpenGL ES Shader Compiler Version: E031.24.00.08+13
Build Date: 03/20/14 Thu
Local Branch: 0320_AU200_patches
Remote Branch:
Local Patches:
Reconstruct Branch:
03-01 17:56:54.707 1050-1050/? D/PhoneStatusBar: setSemiTransparentMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
03-01 17:56:54.707 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.717 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.727 18286-18286/com.serenegiant.usbcameratest7 D/OpenGLRenderer: Enabling debug mode 0
03-01 17:56:54.727 1050-1062/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.727 865-18322/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1491 com.android.server.InputMethodManagerService$4.run:2827 java.lang.Thread.run:841
03-01 17:56:54.737 1267-1267/? W/IInputConnectionWrapper: showStatusIcon on inactive InputConnection
03-01 17:56:54.747 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.767 1050-1612/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.767 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.787 865-944/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 865 tag : ACTIVITY_RESUME_BOOSTER@6
03-01 17:56:54.787 865-944/? W/ActivityManager: mDVFSHelper.release()
03-01 17:56:54.787 1050-1299/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.787 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.787 258-1094/? I/SurfaceFlinger: id=223 Removed vsbcamerate (8/11)
03-01 17:56:54.787 258-515/? I/SurfaceFlinger: id=223 Removed vsbcamerate (-2/11)
03-01 17:56:54.787 1050-1062/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.787 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.787 865-945/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 865 pkgName : ACTIVITY_RESUME_BOOSTER@9
03-01 17:56:54.797 1050-17309/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:54.797 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:54.797 258-258/? I/SurfaceFlinger: id=226 createSurf (2160x1920),-1 flag=20004, ClackSurfac
03-01 17:56:54.797 865-944/? I/WindowManager: Screen frozen for +345ms due to Window{42a58998 u0 Starting com.serenegiant.usbcameratest7}
03-01 17:56:54.807 258-258/? I/SurfaceFlinger: id=227 createSurf (1080x3840),-1 flag=20004, ClackSurfac
03-01 17:56:54.807 258-258/? I/SurfaceFlinger: id=228 createSurf (2160x1920),-1 flag=20004, ClackSurfac
03-01 17:56:54.807 258-258/? I/SurfaceFlinger: id=229 createSurf (1080x3840),-1 flag=20004, ClackSurfac
03-01 17:56:54.807 865-944/? D/InputDispatcher: setInputDispatchMode: enabled=1, frozen=0
03-01 17:56:55.087 865-865/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 865 tag : ACTIVITY_RESUME_BOOSTER@9
03-01 17:56:55.227 258-515/? I/SurfaceFlinger: id=224 Removed TcreenshotS (10/14)
03-01 17:56:55.237 258-3263/? I/SurfaceFlinger: id=224 Removed TcreenshotS (-2/14)
03-01 17:56:55.237 258-4861/? I/SurfaceFlinger: id=226 Removed ClackSurfac (10/13)
03-01 17:56:55.237 258-1094/? I/SurfaceFlinger: id=226 Removed ClackSurfac (-2/13)
03-01 17:56:55.237 258-3263/? I/SurfaceFlinger: id=227 Removed ClackSurfac (10/12)
03-01 17:56:55.237 258-4861/? I/SurfaceFlinger: id=227 Removed ClackSurfac (-2/12)
03-01 17:56:55.237 258-515/? I/SurfaceFlinger: id=228 Removed ClackSurfac (10/11)
03-01 17:56:55.237 258-1094/? I/SurfaceFlinger: id=228 Removed ClackSurfac (-2/11)
03-01 17:56:55.237 258-520/? I/SurfaceFlinger: id=229 Removed ClackSurfac (10/10)
03-01 17:56:55.237 258-4861/? I/SurfaceFlinger: id=229 Removed ClackSurfac (-2/10)
03-01 17:56:55.237 1050-1299/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:56:55.237 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:56:55.237 865-944/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, mbResultFaceDectection: false
03-01 17:56:55.237 865-944/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, Rotation: -1
03-01 17:56:55.237 865-944/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, mbResultFaceDectection: false
03-01 17:56:55.237 865-944/? V/WindowOrientationListener: mSContextAutoRotationListener.getProposedRotation, Rotation: -1
03-01 17:56:55.237 865-944/? V/WindowManager: rotationForOrientationLw(orient=0, last=1); user=0 sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false mAccelerometerDefault=false gripRotationLock=false
03-01 17:56:55.347 865-1343/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 2457600 uid : 10009 pid : 1267 tag : LAUNCHER_APP_BOOSTER_CPU@32
03-01 17:56:55.437 261-625/? V/AudioPolicyManagerBase: stopOutput() output 3, stream 1, session 80
03-01 17:56:55.437 261-625/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 0
03-01 17:56:55.437 261-625/? V/AudioPolicyManagerBase: getNewDevice() selected device 0
03-01 17:56:55.437 261-625/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0000 force 0 delayMs 100
03-01 17:56:55.437 261-625/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:56:55.437 261-625/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0000 or null device for output 3
03-01 17:56:55.667 18286-18320/com.serenegiant.usbcameratest7 V/MainActivity: tryOpenTask#run:
03-01 17:56:55.667 18286-18320/com.serenegiant.usbcameratest7 V/MainActivity: tryOpenTask#run:finished
03-01 17:56:56.457 865-865/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 2457600 uid : 1000 pid : 865 tag : ROTATION_BOOSTER@31
03-01 17:56:56.987 865-944/? D/dalvikvm: GC_EXPLICIT freed 3059K, 41% free 33065K/55120K, paused 11ms+10ms, total 181ms
03-01 17:56:57.577 1050-1050/? D/STATUSBAR-NetworkController: onReceive() - RSSI_CHANGED_ACTION, WIFI_STATE, NETWORK_STATE
03-01 17:56:57.577 1050-1050/? D/STATUSBAR-NetworkController: refreshSignalCluster - setNWBoosterIndicators(false)
03-01 17:56:57.577 1050-1050/? D/STATUSBAR-NetworkController: refreshSignalCluster: data=-1 bt=false
03-01 17:56:57.587 1050-1050/? D/STATUSBAR-IconMerger: checkOverflow(1440), More:false, Req:false Child:3
03-01 17:56:57.867 865-957/? V/UsbHostManager: USB HOST UEVENT: {SUBSYSTEM=host_notify, STATE=ADD, DEVNAME=usb_otg, DEVPATH=/devices/virtual/host_notify/usb_otg, SEQNUM=5201, ACTION=change}
03-01 17:56:57.867 865-957/? D/UsbHostManager: turnOnLcd ::
03-01 17:56:57.867 865-957/? D/PowerManagerService: [api] [s] wakeUp (uid: 1000 pid: 865)
03-01 17:56:57.877 865-1195/? D/UsbHostManager: usbDeviceAdded : device :: /dev/bus/usb/001/001 [1d6bh:0002h] [09h,00h,01h](Hub%28Hi-speed hub with single TT %29)
03-01 17:56:57.877 865-1195/? W/UsbHostManager: /dev/bus/usb/001/001 is put on a blocklist [1d6bh:0002h:09h:00h:01h]
03-01 17:56:57.887 865-1195/? D/UsbHostManager: usbDeviceAdded : device :: /dev/bus/usb/002/001 [1d6bh:0003h] [09h,00h,03h](Unknown device)
03-01 17:56:57.887 865-1195/? W/UsbHostManager: /dev/bus/usb/002/001 is put on a blocklist [1d6bh:0003h:09h:00h:03h]
03-01 17:56:57.887 865-957/? D/UsbHostManager: onUEvent(device) :: action = add, devtype = usb_interface, device = null, product = 1d6b/2/304, type = 9/0/1, interface = 9/0/0, devpath = /devices/platform/xhci-hcd/usb1/1-0:1.0
03-01 17:56:57.887 865-1026/? D/UsbHostNotification: setUsbObserverNotification : cancel id = 998563545, device = UsbDevices
03-01 17:56:57.887 865-957/? D/UsbHostManager: displayNotification : [09h,00h,00h]
03-01 17:56:57.887 865-1026/? D/UsbHostNotification: setUsbObserverNotification : notify id = 998563545, device = UsbDevices, title = USB connector connected.
03-01 17:56:57.887 865-957/? D/UsbHostManager: onUEvent(device) :: action = add, devtype = usb_interface, device = null, product = 1d6b/3/304, type = 9/0/3, interface = 9/0/0, devpath = /devices/platform/xhci-hcd/usb2/2-0:1.0
03-01 17:56:57.887 865-957/? D/UsbHostManager: displayNotification : [09h,00h,00h]
03-01 17:56:57.897 865-865/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1505 com.android.server.StatusBarManagerService.sendNotification:985 com.android.server.StatusBarManagerService.addNotification:674 com.android.server.NotificationManagerService$7.run:2157 android.os.Handler.handleCallback:733
03-01 17:56:57.897 865-865/? D/NotificationService: Sending broadcast with sbn as extra = StatusBarNotification(pkg=android user=UserHandle{-1} id=998563545 tag=null score=10: Notification(pri=1 icon=1080890 contentView=android/0x109007f vibrate=null sound=null defaults=0x0 flags=0x2 when=0 ledARGB=0x0 contentIntent=Y deleteIntent=N contentTitle=24 contentText=0 originalPackageName=N tickerText=24 kind=[null]))
03-01 17:56:57.897 865-865/? D/STATUSBAR-StatusBarManagerService: sendNotification(1) - 998563545
03-01 17:56:57.897 865-865/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1505 com.android.server.NotificationManagerService$7.run:2187 android.os.Handler.handleCallback:733 android.os.Handler.dispatchMessage:95 android.os.Looper.loop:136
03-01 17:56:57.907 865-865/? D/RCPManagerService: NotificationReceiver onReceive()
03-01 17:56:57.907 865-865/? D/RCPManagerService: NotificationReceiver sbn.getPackageName() android sbn.getUser().getIdentifier() -1
03-01 17:56:57.907 865-865/? D/RCPManagerService: getPolicy: Policy checking block entered for Notifications; for user/persona = -1 ; Policy = knox-sanitize-data ; token = 4294967296865
03-01 17:56:57.907 865-865/? D/RCPManagerService: getPolicy: policy value returned = false
03-01 17:56:57.907 865-865/? D/RCPManagerService: going to get the app label for pkg == android
03-01 17:56:57.907 865-865/? D/RCPManagerService: app label == android
03-01 17:56:57.907 1050-1050/? W/ResourceType: Attempt to retrieve bag 0x01030068 which is invalid or in a cycle.
03-01 17:56:57.907 865-865/? D/RCPManagerService: getPolicy: Policy checking block entered for Notifications; for user/persona = -1 ; Policy = knox-export-data ; token = 4294967296865
03-01 17:56:57.907 865-865/? D/RCPManagerService: getPolicy: policy value returned = true
03-01 17:56:57.907 865-865/? D/RCPManagerService: Calling User is -1
03-01 17:56:57.907 865-865/? D/RCPManagerService: userid of SBN ==-1
03-01 17:56:57.907 865-1026/? D/UsbHostNotification: send the timeout : current 1456851417910, vailed = -2979, displayed = 1456851417889
03-01 17:56:57.907 865-865/? D/UserManagerService: User -1does not exists!!
03-01 17:56:57.907 865-865/? E/PersonaManagerService: returning null in getPersonasForUser
03-01 17:56:57.917 1050-1050/? W/ResourceType: Attempt to retrieve bag 0x01030067 which is invalid or in a cycle.
03-01 17:56:57.917 1050-1050/? D/ProgressBar: setProgressDrawable drawableHeight = 18
03-01 17:56:57.917 1050-1050/? D/PhoneStatusBar: tick(): knoxCustomManager = android.app.enterprise.knoxcustom.KnoxCustomManager@42973b28
03-01 17:56:58.037 865-2338/? D/AmoledAdjustTimer: prevTemp = 335, currTemp = 334, prevStep = 5, currStep = 5
03-01 17:56:58.187 865-1280/? D/BatteryService: level:83, scale:100, status:3, health:2, present:true, voltage: 4057, temperature: 334, technology: Li-ion, AC powered:false, USB powered:false, Wireless powered:false, icon:17303664, invalid charger:0, online:13, current avg:450, charge type:1, power sharing:false
03-01 17:56:58.187 865-865/? D/BatteryService: Sending ACTION_BATTERY_CHANGED.
03-01 17:56:58.197 865-865/? D/UiModeManager: mCoverManager.getCoverState() : true
03-01 17:56:58.207 1050-1050/? D/KeyguardUpdateMonitor: received broadcast android.intent.action.BATTERY_CHANGED
03-01 17:56:58.217 16722-16722/? D/PopupuiReceiver: onReceive() getAction : com.android.systemui.power.action.ACTION_CABLE_CONNECTED
03-01 17:56:58.217 16722-16722/? D/PopupuiReceiver: Action cable connected ! on -
03-01 17:56:58.217 16722-16722/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1847 android.content.ContextWrapper.startService:506 android.content.ContextWrapper.startService:506 com.sec.android.app.popupuireceiver.PopupuiReceiver.onReceive:311 android.app.ActivityThread.handleReceiver:2641
03-01 17:56:58.227 1050-1050/? D/KeyguardUpdateMonitor: handleBatteryUpdate
03-01 17:56:58.227 16722-16722/? D/PopupuiReceiver: PopupuiService.java: dismissUSBCDetacheddDialog() unReigister
03-01 17:56:58.227 1050-1050/? D/STATUSBAR-PhoneStatusBar: mBrightnessEnablebySettings = true mBrightnessEnablebyBattery = true mBrightnessEnablebyDisableFlag = true mPmsBrightnessEnablebySettings = true
03-01 17:56:58.227 1050-1050/? D/BatteryMeterView: ACTION_BATTERY_CHANGED : level:83 status:3 health:2
03-01 17:56:58.227 16722-16722/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.stopService:1853 android.content.ContextWrapper.stopService:511 com.sec.android.app.popupuireceiver.PopupuiService.onDestroy:307 com.sec.android.app.popupuireceiver.PopupuiService.dismissUSBCDetacheddDialog:123 com.sec.android.app.popupuireceiver.PopupuiService.onStartCommand:96
03-01 17:56:58.227 16722-16722/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.stopService:1853 android.content.ContextWrapper.stopService:511 com.sec.android.app.popupuireceiver.PopupuiService.onDestroy:307 android.app.ActivityThread.handleStopService:3001 android.app.ActivityThread.access$2300:172
03-01 17:56:58.237 865-957/? D/UsbHostManager: onUEvent(device) :: action = add, devtype = usb_interface, device = null, product = 5e3/610/9216, type = 9/0/2, interface = 9/0/1, devpath = /devices/platform/xhci-hcd/usb1/1-1/1-1:1.0
03-01 17:56:58.237 865-957/? D/UsbHostManager: displayNotification : [09h,00h,01h]
03-01 17:56:58.267 865-1195/? D/UsbHostManager: usbDeviceAdded : device :: /dev/bus/usb/001/002 [05e3h:0610h] [09h,00h,02h](Hub%28Hi-speed hub with multiple TTs %29)
03-01 17:56:58.277 865-1195/? W/UsbHostManager: /dev/bus/usb/001/002 is put on a blocklist [05e3h:0610h:09h:00h:02h]
03-01 17:56:58.357 261-748/? V/audio_hw_primary: out_standby: enter: usecase(1: low-latency-playback)
03-01 17:56:58.427 261-748/? V/audio_hw_primary: stop_output_stream: enter: usecase(1: low-latency-playback)
03-01 17:56:58.427 261-748/? V/audio_hw_primary: disable_audio_route: enter: usecase(1)
03-01 17:56:58.427 261-748/? V/audio_hw_primary: disable_audio_route: reset mixer path: low-latency-playback
03-01 17:56:58.437 261-748/? D/audio_route: ++++ audio_route_update_mixer ==============
03-01 17:56:58.437 261-748/? D/audio_route: Setting mixer control: SLIMBUS_0_RX Audio Mixer MultiMedia5, value: 0
03-01 17:56:58.437 261-748/? D/audio_route: ------ audio_route_update_mixer ==============
03-01 17:56:58.437 261-748/? V/audio_hw_primary: disable_audio_route: exit
03-01 17:56:58.437 261-748/? V/audio_hw_primary: disable_snd_device: snd_device(2: speaker)
03-01 17:56:58.437 261-748/? D/audio_route: ++++ audio_route_update_mixer ==============
03-01 17:56:58.437 261-748/? D/audio_route: Setting mixer control: SPK DRV Volume, value: 0
03-01 17:56:58.437 261-748/? D/audio_route: Setting mixer control: RX7 Digital Volume, value: 0
03-01 17:56:58.447 261-748/? D/audio_route: Setting mixer control: COMP0 Switch, value: 0
03-01 17:56:58.447 261-748/? D/audio_route: Setting mixer control: RX7 MIX1 INP1, value: 0
03-01 17:56:58.447 261-748/? D/audio_route: Setting mixer control: DAC1 Switch, value: 0
03-01 17:56:58.447 261-748/? D/audio_route: ------ audio_route_update_mixer ==============
03-01 17:56:58.457 261-748/? V/audio_hw_primary: stop_output_stream: exit: status(0)
03-01 17:56:58.457 261-748/? V/audio_hw_primary: out_standby: exit
03-01 17:56:58.497 865-1101/? D/BatteryService: level:83, scale:100, status:3, health:2, present:true, voltage: 4030, temperature: 334, technology: Li-ion, AC powered:false, USB powered:false, Wireless powered:false, icon:17303664, invalid charger:0, online:13, current avg:450, charge type:1, power sharing:false
03-01 17:56:58.497 865-865/? D/BatteryService: Sending ACTION_BATTERY_CHANGED.
03-01 17:56:58.517 865-865/? D/UiModeManager: mCoverManager.getCoverState() : true
03-01 17:56:58.517 1050-1050/? D/KeyguardUpdateMonitor: received broadcast android.intent.action.BATTERY_CHANGED
03-01 17:56:58.517 1050-1050/? D/KeyguardUpdateMonitor: handleBatteryUpdate
03-01 17:56:58.537 1050-1050/? D/STATUSBAR-PhoneStatusBar: mBrightnessEnablebySettings = true mBrightnessEnablebyBattery = true mBrightnessEnablebyDisableFlag = true mPmsBrightnessEnablebySettings = true
03-01 17:56:58.537 1050-1050/? D/BatteryMeterView: ACTION_BATTERY_CHANGED : level:83 status:3 health:2
03-01 17:56:59.997 865-980/? V/AlarmManager: waitForAlarm result :8
03-01 17:56:59.997 865-865/? V/AlarmManager: ClockReceiver onReceive() ACTION_TIME_TICK
03-01 17:57:00.017 1050-1050/? D/KeyguardUpdateMonitor: received broadcast android.intent.action.TIME_TICK
03-01 17:57:00.017 1050-1050/? D/KeyguardUpdateMonitor: handleTimeUpdate
03-01 17:57:00.117 865-980/? V/AlarmManager: waitForAlarm result :4
03-01 17:57:00.127 865-980/? V/AlarmManager: trigger ELAPSED_REALTIME_WAKEUP or RTC_WAKEUP
03-01 17:57:00.267 9649-18415/? I/dalvikvm: Could not find method android.os.PowerManager.isInteractive, referenced from method com.google.android.gms.common.util.y.a
03-01 17:57:00.267 9649-18415/? W/dalvikvm: VFY: unable to resolve virtual method 1378: Landroid/os/PowerManager;.isInteractive ()Z
03-01 17:57:00.267 9649-18415/? D/dalvikvm: VFY: replacing opcode 0x6e at 0x003d
03-01 17:57:00.277 9649-18415/? I/GoogleURLConnFactory: Using platform SSLCertificateSocketFactory
03-01 17:57:00.337 3782-3797/? D/dalvikvm: GC_EXPLICIT freed 591K, 40% free 13011K/21452K, paused 3ms+3ms, total 39ms
03-01 17:57:00.397 3782-3782/? V/GLSActivity: AuthDelegateWrapperCreated with selected intent: Intent { cmp=com.google.android.gms/.auth.DefaultAuthDelegateService }
03-01 17:57:00.397 3782-3782/? V/GLSActivity: AuthDelegateWrapperCreated with selected intent: Intent { cmp=com.google.android.gms/.auth.DefaultAuthDelegateService }
03-01 17:57:00.887 865-1026/? D/UsbHostNotification: setUsbObserverNotification : cancel id = 998563545, device = UsbDevices
03-01 17:57:00.897 865-865/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1505 com.android.server.StatusBarManagerService.sendNotification:985 com.android.server.StatusBarManagerService.removeNotification:710 com.android.server.NotificationManagerService.cancelNotificationLocked:2469 com.android.server.NotificationManagerService.access$5100:162
03-01 17:57:00.907 865-865/? D/NotificationService: cancelNotificationLocked
03-01 17:57:00.907 865-865/? D/NotificationService: hasClearableItems
03-01 17:57:00.907 865-865/? D/NotificationService: Num of hasClearableItems : 1
03-01 17:57:00.907 865-865/? D/STATUSBAR-StatusBarManagerService: sendNotification(3) - 998563545
03-01 17:57:00.917 865-865/? D/NotificationService: Sending broadcast for cancel notification = StatusBarNotification(pkg=android user=UserHandle{-1} id=998563545 tag=null score=10: Notification(pri=1 icon=1080890 contentView=android/0x109007f vibrate=null sound=null defaults=0x0 flags=0x2 when=0 ledARGB=0x0 contentIntent=Y deleteIntent=N contentTitle=24 contentText=0 originalPackageName=N tickerText=24 kind=[null]))
03-01 17:57:00.917 865-865/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1491 com.android.server.NotificationManagerService.cancelNotificationLocked:2547 com.android.server.NotificationManagerService.access$5100:162 com.android.server.NotificationManagerService$8.run:2600 android.os.Handler.handleCallback:733
03-01 17:57:00.927 865-865/? D/LightsService: [api] [SvcLED] turnOff:: id = 4 (uid: 1000 pid: 865)
03-01 17:57:00.937 865-865/? D/LightsService: [SvcLED] setSvcLedStateLocked:: SvcLEDState : 0x0 -> 0x0 | SvcLED(id=4) set Off
03-01 17:57:00.937 865-974/? D/LightsService: [SvcLED] Lux failed to be updated in 700ms. -> handleForcedSvcLEDTasK
03-01 17:57:00.937 865-986/? E/EventHub: file open failed: /sys/devices/virtual/input/input20/name
03-01 17:57:00.937 865-865/? D/RCPManagerService: NotificationReceiver onReceive()
03-01 17:57:00.937 865-865/? D/RCPManagerService: NotificationReceiver sbn.getPackageName() android sbn.getUser().getIdentifier() -1
03-01 17:57:00.937 865-865/? D/RCPManagerService: getPolicy: Policy checking block entered for Notifications; for user/persona = -1 ; Policy = knox-sanitize-data ; token = 4294967296865
03-01 17:57:00.937 865-865/? D/RCPManagerService: getPolicy: policy value returned = false
03-01 17:57:00.937 865-865/? D/RCPManagerService: going to get the app label for pkg == android
03-01 17:57:00.937 865-865/? D/RCPManagerService: app label == android
03-01 17:57:00.937 865-865/? D/RCPManagerService: NotificationReceiver ACTION_CANCEL_NOTIFICATION
03-01 17:57:00.937 865-986/? D/EventHub: No input device configuration file found for device 'See3CAMCU50'.
03-01 17:57:00.937 865-974/? D/LightsService: [SvcLED] setSvcLedLightLocked :: Current SvcLED(id=3) maintains its priority right
03-01 17:57:00.937 865-865/? D/UserManagerService: User -1does not exists!!
03-01 17:57:00.937 865-1195/? D/UsbHostManager: usbDeviceAdded : device :: /dev/bus/usb/001/003 [2560h:c151h] [efh,02h,01h](Miscellaneous%28Interface Association Descriptor %29)
03-01 17:57:00.937 865-957/? D/UsbHostManager: onUEvent(device) :: action = add, devtype = usb_interface, device = null, product = 2560/c151/0, type = 239/2/1, interface = 14/1/0, devpath = /devices/platform/xhci-hcd/usb1/1-1/1-1.3/1-1.3:1.0
03-01 17:57:00.947 865-986/? W/EventHub: Unable to disable kernel key repeat for /dev/input/event20: Function not implemented
03-01 17:57:00.947 865-986/? I/EventHub: New device: id=17, fd=409, path='/dev/input/event20', name='See3CAMCU50', classes=0x80000001, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=true
03-01 17:57:00.947 865-986/? I/InputReader: Device added: id=17, name='See3CAMCU50', sources=0x00000101
03-01 17:57:00.947 865-957/? D/UsbHostManager: displayNotification : [0eh,01h,00h]
03-01 17:57:00.947 865-1195/? D/UsbHostManager: usbDeviceAdded : interface :: /dev/bus/usb/001/003 [2560h:c151h] 0eh,01h,00h
03-01 17:57:00.947 865-1195/? D/UsbHostManager: usbDeviceAdded : interface :: /dev/bus/usb/001/003 [2560h:c151h] 0eh,02h,00h
03-01 17:57:00.947 865-1195/? D/UsbHostManager: usbDeviceAdded : interface :: /dev/bus/usb/001/003 [2560h:c151h] 03h,00h,00h
03-01 17:57:00.957 1050-1060/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:00.967 1050-1050/? D/STATUSBAR-IconMerger: checkOverflow(1440), More:false, Req:false Child:3
03-01 17:57:00.977 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:00.987 865-1195/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1491 com.android.server.usb.UsbSettingsManager.deviceAttached:631 com.android.server.usb.UsbHostManager.usbDeviceAdded:213 com.android.server.usb.UsbHostManager.monitorUsbHostBus:-2 com.android.server.usb.UsbHostManager.access$100:61
03-01 17:57:00.987 865-1195/? D/UsbSettingsManager: usbDeviceAdded, sending Intent { act=android.hardware.usb.action.USB_DEVICE_ATTACHED flg=0x10000000 (has extras) }
03-01 17:57:00.987 865-1195/? D/UsbSettingsManager: resolveActivity : matches count = 2, defaultPackage = com.serenegiant.usbcameratest7
03-01 17:57:00.987 10570-10570/? D/MtpClient: onReceive, deviceName : /dev/bus/usb/001/003 Action : android.hardware.usb.action.USB_DEVICE_ATTACHED
03-01 17:57:00.987 10570-10570/? D/MtpClient: openDeviceLocked start
03-01 17:57:00.987 10570-10570/? D/MtpClient: openDeviceLocked End
03-01 17:57:00.987 10570-10570/? D/MtpClient: ACTION_USB_DEVICE_ATTACHED : mtpDevice is null
03-01 17:57:00.987 865-1195/? D/UsbSettingsManager: resolveActivity : defaultRI = ResolveInfo{43897a90 com.serenegiant.usbcameratest7/.MainActivity m=0x108000}
03-01 17:57:00.997 865-1195/? D/EnterpriseDeviceManager: ContainerId: 0
03-01 17:57:00.997 865-1195/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 865 pkgName : ACTIVITY_RESUME_BOOSTER@6
03-01 17:57:01.007 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onPause:0
03-01 17:57:01.007 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onPause:finished
03-01 17:57:01.007 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onResume:
03-01 17:57:01.007 865-1195/? W/ActivityManager: mDVFSHelper.acquire()
03-01 17:57:01.007 865-957/? D/UsbHostManager: onUEvent(device) :: action = add, devtype = usb_interface, device = null, product = 2560/c151/0, type = 239/2/1, interface = 14/2/0, devpath = /devices/platform/xhci-hcd/usb1/1-1/1-1.3/1-1.3:1.1
03-01 17:57:01.007 865-957/? D/UsbHostManager: displayNotification : [0eh,02h,00h]
03-01 17:57:01.007 865-957/? D/UsbHostManager: onUEvent(device) :: action = add, devtype = usb_interface, device = null, product = 2560/c151/0, type = 239/2/1, interface = 3/0/0, devpath = /devices/platform/xhci-hcd/usb1/1-1/1-1.3/1-1.3:1.2
03-01 17:57:01.007 865-957/? D/UsbHostManager: displayNotification : [03h,00h,00h]
03-01 17:57:01.007 865-876/? D/StatusBarManagerService: semi p:18286,o:f
03-01 17:57:01.017 1050-1050/? D/PhoneStatusBar: setSemiTransparentMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
03-01 17:57:01.207 865-957/? D/UsbHostManager: onUEvent(device) :: action = add, devtype = usb_interface, device = null, product = 2560/c151/0, type = 239/2/1, interface = 14/1/0, devpath = /devices/platform/xhci-hcd/usb1/1-1/1-1.4/1-1.4:1.0
03-01 17:57:01.207 865-957/? D/UsbHostManager: displayNotification : [0eh,01h,00h]
03-01 17:57:01.217 865-986/? E/EventHub: file open failed: /sys/devices/virtual/input/input21/name
03-01 17:57:01.217 865-986/? D/EventHub: No input device configuration file found for device 'See3CAMCU50'.
03-01 17:57:01.217 865-986/? W/EventHub: Unable to disable kernel key repeat for /dev/input/event21: Function not implemented
03-01 17:57:01.217 865-986/? I/EventHub: New device: id=18, fd=435, path='/dev/input/event21', name='See3CAMCU50', classes=0x80000001, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=true
03-01 17:57:01.217 865-986/? I/InputReader: Device added: id=18, name='See3CAMCU50', sources=0x00000101
03-01 17:57:01.217 865-957/? D/UsbHostManager: onUEvent(device) :: action = add, devtype = usb_interface, device = null, product = 2560/c151/0, type = 239/2/1, interface = 14/2/0, devpath = /devices/platform/xhci-hcd/usb1/1-1/1-1.4/1-1.4:1.1
03-01 17:57:01.217 865-957/? D/UsbHostManager: displayNotification : [0eh,02h,00h]
03-01 17:57:01.217 865-957/? D/UsbHostManager: onUEvent(device) :: action = add, devtype = usb_interface, device = null, product = 2560/c151/0, type = 239/2/1, interface = 3/0/0, devpath = /devices/platform/xhci-hcd/usb1/1-1/1-1.4/1-1.4:1.2
03-01 17:57:01.217 865-957/? D/UsbHostManager: displayNotification : [03h,00h,00h]
03-01 17:57:01.227 1050-1612/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:01.227 865-1195/? D/UsbHostManager: usbDeviceAdded : device :: /dev/bus/usb/001/004 [2560h:c151h] [efh,02h,01h](Miscellaneous%28Interface Association Descriptor %29)
03-01 17:57:01.227 865-1195/? D/UsbHostManager: usbDeviceAdded : interface :: /dev/bus/usb/001/004 [2560h:c151h] 0eh,01h,00h
03-01 17:57:01.227 865-1195/? D/UsbHostManager: usbDeviceAdded : interface :: /dev/bus/usb/001/004 [2560h:c151h] 0eh,02h,00h
03-01 17:57:01.227 865-1195/? D/UsbHostManager: usbDeviceAdded : interface :: /dev/bus/usb/001/004 [2560h:c151h] 03h,00h,00h
03-01 17:57:01.227 865-1195/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1491 com.android.server.usb.UsbSettingsManager.deviceAttached:631 com.android.server.usb.UsbHostManager.usbDeviceAdded:213 com.android.server.usb.UsbHostManager.monitorUsbHostBus:-2 com.android.server.usb.UsbHostManager.access$100:61
03-01 17:57:01.227 865-1195/? D/UsbSettingsManager: usbDeviceAdded, sending Intent { act=android.hardware.usb.action.USB_DEVICE_ATTACHED flg=0x10000000 (has extras) }
03-01 17:57:01.227 865-1195/? D/UsbSettingsManager: resolveActivity : matches count = 2, defaultPackage = com.serenegiant.usbcameratest7
03-01 17:57:01.227 865-1195/? D/UsbSettingsManager: resolveActivity : defaultRI = ResolveInfo{43619670 com.serenegiant.usbcameratest7/.MainActivity m=0x108000}
03-01 17:57:01.237 865-1195/? D/EnterpriseDeviceManager: ContainerId: 0
03-01 17:57:01.237 10570-10570/? D/MtpClient: onReceive, deviceName : /dev/bus/usb/001/004 Action : android.hardware.usb.action.USB_DEVICE_ATTACHED
03-01 17:57:01.237 10570-10570/? D/MtpClient: openDeviceLocked start
03-01 17:57:01.237 10570-10570/? D/MtpClient: openDeviceLocked End
03-01 17:57:01.237 10570-10570/? D/MtpClient: ACTION_USB_DEVICE_ATTACHED : mtpDevice is null
03-01 17:57:01.237 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:01.237 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onPause:0
03-01 17:57:01.237 865-1195/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 865 tag : ACTIVITY_RESUME_BOOSTER@6
03-01 17:57:01.237 865-1195/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 865 pkgName : ACTIVITY_RESUME_BOOSTER@6
03-01 17:57:01.237 865-1195/? W/ActivityManager: mDVFSHelper.acquire()
03-01 17:57:01.247 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onPause:finished
03-01 17:57:01.247 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onResume:
03-01 17:57:01.247 865-1415/? D/StatusBarManagerService: semi p:18286,o:f
03-01 17:57:01.257 1050-1050/? D/PhoneStatusBar: setSemiTransparentMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
03-01 17:57:02.247 18286-18320/com.serenegiant.usbcameratest7 V/MainActivity: tryOpenTask#run:
03-01 17:57:02.247 18286-18320/com.serenegiant.usbcameratest7 V/MainActivity: tryOpen:/dev/bus/usb/001/004
03-01 17:57:02.247 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onAttach:null
03-01 17:57:02.247 865-1342/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/004,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mInterfaces=[Landroid.os.Parcelable;@43548b70]for {10206=true}
03-01 17:57:02.247 865-875/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/004,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mInterfaces=[Landroid.os.Parcelable;@434ad2b0]for {10206=true}
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onConnect:/dev/bus/usb/001/004
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: openCamera:/dev/bus/usb/001/004
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 D/dalvikvm: Trying to load lib /data/app-lib/com.serenegiant.usbcameratest7-1/libusb100.so 0x4292f778
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 D/dalvikvm: Added shared lib /data/app-lib/com.serenegiant.usbcameratest7-1/libusb100.so 0x4292f778
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 D/dalvikvm: No JNI_OnLoad found in /data/app-lib/com.serenegiant.usbcameratest7-1/libusb100.so 0x4292f778, skipping init
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 D/dalvikvm: Trying to load lib /data/app-lib/com.serenegiant.usbcameratest7-1/libuvc.so 0x4292f778
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 D/dalvikvm: Added shared lib /data/app-lib/com.serenegiant.usbcameratest7-1/libuvc.so 0x4292f778
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 D/dalvikvm: No JNI_OnLoad found in /data/app-lib/com.serenegiant.usbcameratest7-1/libuvc.so 0x4292f778, skipping init
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 D/dalvikvm: Trying to load lib /data/app-lib/com.serenegiant.usbcameratest7-1/libUVCCamera.so 0x4292f778
03-01 17:57:02.257 18286-18286/com.serenegiant.usbcameratest7 D/dalvikvm: Added shared lib /data/app-lib/com.serenegiant.usbcameratest7-1/libUVCCamera.so 0x4292f778
03-01 17:57:02.257 865-8224/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/004,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mInterfaces=[Landroid.hardware.usb.UsbInterface;@4316af08]for {10206=true}
03-01 17:57:02.277 865-986/? I/EventHub: Removing device '/dev/input/event21' due to inotify event
03-01 17:57:02.277 865-986/? I/EventHub: Removed device: path=/dev/input/event21 name=See3CAMCU50 id=18 fd=435 classes=0x80000001
03-01 17:57:02.297 865-986/? I/InputReader: Device removed: id=18, name='See3CAMCU50', sources=0x00000101
03-01 17:57:02.297 865-986/? E/EventHub: file open failed: /sys/devices/virtual/input/input21/name
03-01 17:57:02.297 865-986/? D/EventHub: No input device configuration file found for device 'See3CAMCU50'.
03-01 17:57:02.297 865-986/? W/EventHub: Unable to disable kernel key repeat for /dev/input/event21: Function not implemented
03-01 17:57:02.297 865-986/? I/EventHub: New device: id=19, fd=434, path='/dev/input/event21', name='See3CAMCU50', classes=0x80000001, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=true
03-01 17:57:02.297 865-986/? I/InputReader: Device added: id=19, name='See3CAMCU50', sources=0x00000101
03-01 17:57:02.297 1050-17309/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:02.297 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:02.307 1050-1299/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:02.307 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:04.007 865-945/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 865 tag : ACTIVITY_RESUME_BOOSTER@6
03-01 17:57:04.007 865-945/? W/ActivityManager: mDVFSHelper.release()
03-01 17:57:04.007 865-945/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 865 pkgName : ACTIVITY_RESUME_BOOSTER@9
03-01 17:57:04.307 865-865/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1958400 uid : 1000 pid : 865 tag : ACTIVITY_RESUME_BOOSTER@9
03-01 17:57:04.377 865-986/? D/InputReader: Input event: value=1
03-01 17:57:04.377 865-986/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.116 ] when=542031097000
03-01 17:57:04.377 865-985/? I/InputDispatcher: Delivering touch to: action: 0x4, toolType: 1
03-01 17:57:04.387 865-985/? I/InputDispatcher: Delivering touch to: action: 0x0, toolType: 1
03-01 17:57:04.437 865-986/? D/InputReader: Input event: value=0
03-01 17:57:04.437 865-986/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=542095991000
03-01 17:57:04.437 865-985/? I/InputDispatcher: Delivering touch to: action: 0x1, toolType: 1
03-01 17:57:04.447 261-753/? I/AudioPolicyManagerBase: getSituationVolume: isBTConnected:0 isHeadConnected:0
03-01 17:57:04.447 261-753/? V/AudioPolicyManagerBase: getParamFromPolicy deviceInt = 0, situationInt = 1, situationVolume = 1.000000
03-01 17:57:04.447 261-756/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:04.447 261-756/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:04.447 261-756/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:04.447 261-756/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:04.447 261-756/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:04.447 261-3313/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:04.447 261-3313/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:04.447 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:04.447 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:04.447 261-3313/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:04.447 261-3312/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 44100, format 1, channelMask 3, flags 4
03-01 17:57:04.447 261-3312/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:04.447 261-3312/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0004
03-01 17:57:04.447 261-3312/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0004
03-01 17:57:04.447 261-3312/? V/AudioPolicyManagerBase: selectOutput() commonFlags for output 3, 0001
03-01 17:57:04.447 261-3312/? V/AudioPolicyManagerBase: getOutput() returns output 3
03-01 17:57:04.447 261-261/? V/AudioPolicyManagerBase: startOutput() output 3, stream 1, session 81
03-01 17:57:04.447 261-261/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 1
03-01 17:57:04.447 261-261/? V/AudioPolicyManagerBase: getNewDevice() selected device 2
03-01 17:57:04.447 261-261/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0002 force 0 delayMs 0
03-01 17:57:04.447 261-261/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:57:04.447 261-261/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0002 or null device for output 3
03-01 17:57:04.457 261-748/? E/AudioResampler: Unsupported sample format, 1 bits, 2 channels
03-01 17:57:04.457 261-748/? D/AudioResampler: AudioResamplerOrder1::resample common!!!!!
03-01 17:57:04.457 261-748/? D/AudioResampler: new common resampler(44100 -> 48000, 2, 2)
03-01 17:57:04.457 261-748/? D/SoundAliveResampler: [SoundAliveResampler] Init+++
03-01 17:57:04.457 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:66 height:96 bitmap id is 201
03-01 17:57:04.457 261-625/? V/AudioPolicyManagerBase: releaseOutput() 3
03-01 17:57:04.457 261-747/? E/FastMixer: did not receive expected priority boost
03-01 17:57:04.457 261-747/? V/audio_hw_primary: start_output_stream: enter: usecase(1: low-latency-playback) devices(0x2)
03-01 17:57:04.457 261-747/? V/audio_hw_primary: select_devices: ENTER
03-01 17:57:04.457 261-747/? V/audio_hw_primary: select_devices: usecase(normal)
03-01 17:57:04.457 261-747/? V/audio_hw_primary: select_devices: usecase(PCM_PLAYBACK)
03-01 17:57:04.457 261-747/? V/msm8974_platform: platform_get_output_snd_device: enter: output devices(0x2)
03-01 17:57:04.457 261-747/? V/msm8974_platform: get_OUTPUT_snd_device: for Normal Playback
03-01 17:57:04.457 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:66 height:96 bitmap id is 202
03-01 17:57:04.457 261-747/? V/msm8974_platform: platform_get_output_snd_device: exit: snd_device(speaker)
03-01 17:57:04.457 261-747/? D/audio_hw_primary: select_devices: out_snd_device(2: speaker)
03-01 17:57:04.457 261-747/? D/audio_hw_primary: select_devices: in_snd_device(0: dummy)
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> send_audio_cal, acdb_id = 15, path = 0
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> send_adm_topology
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TOPOLOGY_ID
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> send_audtable
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE
03-01 17:57:04.457 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:66 height:96 bitmap id is 203
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AUDPROC_CAL
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> send_audvoltable
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_GAIN_DEP_STEP_TABLE
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AUDPROC_VOL_CAL
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> send_afe_cal
03-01 17:57:04.457 261-747/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE
03-01 17:57:04.467 261-747/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AFE_CAL
03-01 17:57:04.467 261-747/? V/audio_hw_primary: enable_snd_device: snd_device(2: speaker, speaker)
03-01 17:57:04.467 261-747/? D/audio_route: ++++ audio_route_update_mixer ==============
03-01 17:57:04.467 261-747/? D/audio_route: Setting mixer control: SPK DRV Volume, value: 8
03-01 17:57:04.467 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:66 height:96 bitmap id is 204
03-01 17:57:04.467 261-747/? D/audio_route: Setting mixer control: RX7 Digital Volume, value: 79
03-01 17:57:04.467 261-747/? D/audio_route: Setting mixer control: COMP0 Switch, value: 1
03-01 17:57:04.467 261-747/? D/audio_route: Setting mixer control: RX7 MIX1 INP1, value: 5
03-01 17:57:04.467 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:192 height:96 bitmap id is 205
03-01 17:57:04.467 261-747/? D/audio_route: Setting mixer control: DAC1 Switch, value: 1
03-01 17:57:04.467 261-747/? D/audio_route: ------ audio_route_update_mixer ==============
03-01 17:57:04.467 261-747/? V/audio_hw_primary: enable_audio_route: enter: usecase(1)
03-01 17:57:04.467 261-747/? V/audio_hw_primary: enable_audio_route: apply mixer path: low-latency-playback
03-01 17:57:04.467 261-747/? D/audio_route: ++++ audio_route_update_mixer ==============
03-01 17:57:04.477 261-747/? D/audio_route: Setting mixer control: SLIMBUS_0_RX Audio Mixer MultiMedia5, value: 1
03-01 17:57:04.477 261-747/? D/audio_route: ------ audio_route_update_mixer ==============
03-01 17:57:04.477 261-747/? V/audio_hw_primary: enable_audio_route: exit
03-01 17:57:04.477 261-747/? V/audio_hw_primary: start_output_stream: Opening PCM device card_id(0) device_id(15)
03-01 17:57:04.477 261-747/? V/audio_hw_primary: start_output_stream: exit
03-01 17:57:04.487 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:30 height:30 bitmap id is 206
03-01 17:57:04.487 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:13 height:41 bitmap id is 207
03-01 17:57:04.497 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:18 height:18 bitmap id is 208
03-01 17:57:04.497 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:18 height:18 bitmap id is 209
03-01 17:57:04.507 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:288 height:66 bitmap id is 210
03-01 17:57:04.507 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:288 height:48 bitmap id is 211
03-01 17:57:04.507 18286-18286/com.serenegiant.usbcameratest7 D/skia: GFXPNG PNG bitmap created width:288 height:66 bitmap id is 212
03-01 17:57:04.507 865-1342/? I/SpenGestureManager: setFocusWindow0
03-01 17:57:04.507 865-944/? D/PointerIcon: setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
03-01 17:57:04.507 865-944/? D/PointerIcon: setMouseCustomIcon IconType is same.101
03-01 17:57:04.507 865-944/? D/PointerIcon: setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
03-01 17:57:04.507 865-944/? D/PointerIcon: setHoveringSpenCustomIcon IconType is same.1
03-01 17:57:04.537 258-258/? I/SurfaceFlinger: id=230 createSurf (1x1),1 flag=4, NainActivit
03-01 17:57:04.537 1050-1062/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:04.537 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:04.557 1050-5867/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:04.557 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:04.567 1050-1050/? D/STATUSBAR-NetworkController: onSignalStrengthsChanged signalStrength=SignalStrength: 20 -1 -1 -1 -1 -1 -1 99 2147483647 2147483647 2147483647 -1 2147483647 gsm|lte 0x4 level=4
03-01 17:57:04.597 1050-17309/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:04.597 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:04.617 1050-1299/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:04.617 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:04.687 865-2338/? D/SSRMv2:SIOP: SIOP:: AP = 410, PST = 397, Delta = 0
03-01 17:57:04.877 1050-1612/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:04.877 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:05.527 261-625/? V/AudioPolicyManagerBase: stopOutput() output 3, stream 1, session 81
03-01 17:57:05.527 261-625/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 0
03-01 17:57:05.527 261-625/? V/AudioPolicyManagerBase: getNewDevice() selected device 0
03-01 17:57:05.527 261-625/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0000 force 0 delayMs 100
03-01 17:57:05.527 261-625/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:57:05.527 261-625/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0000 or null device for output 3
03-01 17:57:06.177 865-986/? D/InputReader: Input event: value=1
03-01 17:57:06.177 865-986/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.117 ] when=543831665000
03-01 17:57:06.177 865-985/? I/InputDispatcher: Delivering touch to: action: 0x4, toolType: 1
03-01 17:57:06.177 865-985/? I/InputDispatcher: Delivering touch to: action: 0x0, toolType: 1
03-01 17:57:06.237 865-986/? D/InputReader: Input event: value=0
03-01 17:57:06.237 865-986/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=543896044000
03-01 17:57:06.237 865-985/? I/InputDispatcher: Delivering touch to: action: 0x1, toolType: 1
03-01 17:57:06.247 261-261/? I/AudioPolicyManagerBase: getSituationVolume: isBTConnected:0 isHeadConnected:0
03-01 17:57:06.247 261-261/? V/AudioPolicyManagerBase: getParamFromPolicy deviceInt = 0, situationInt = 1, situationVolume = 1.000000
03-01 17:57:06.247 261-753/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:06.247 261-753/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:06.247 261-753/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:06.247 261-753/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:06.247 261-753/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:06.247 261-3313/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:06.247 261-3313/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:06.247 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:06.247 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:06.247 261-3313/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:06.247 261-756/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 44100, format 1, channelMask 3, flags 4
03-01 17:57:06.247 261-756/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:06.247 261-756/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0004
03-01 17:57:06.247 261-756/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0004
03-01 17:57:06.247 261-756/? V/AudioPolicyManagerBase: selectOutput() commonFlags for output 3, 0001
03-01 17:57:06.247 261-756/? V/AudioPolicyManagerBase: getOutput() returns output 3
03-01 17:57:06.247 261-3312/? V/AudioPolicyManagerBase: startOutput() output 3, stream 1, session 82
03-01 17:57:06.247 261-3312/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 1
03-01 17:57:06.247 261-3312/? V/AudioPolicyManagerBase: getNewDevice() selected device 2
03-01 17:57:06.247 261-3312/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0002 force 0 delayMs 0
03-01 17:57:06.247 261-3312/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:57:06.247 261-3312/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0002 or null device for output 3
03-01 17:57:06.247 261-625/? V/AudioPolicyManagerBase: releaseOutput() 3
03-01 17:57:06.247 865-8223/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/004,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mInterfaces=[Landroid.os.Parcelable;@437378b0]for {10206=true}
03-01 17:57:06.257 261-748/? E/AudioResampler: Unsupported sample format, 1 bits, 2 channels
03-01 17:57:06.257 261-748/? D/AudioResampler: AudioResamplerOrder1::resample common!!!!!
03-01 17:57:06.267 261-748/? D/AudioResampler: new common resampler(44100 -> 48000, 2, 2)
03-01 17:57:06.267 261-748/? D/SoundAliveResampler: [SoundAliveResampler] Init+++
03-01 17:57:06.267 865-1343/? I/SpenGestureManager: setFocusWindow21010
03-01 17:57:06.267 1050-17309/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:06.267 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:06.267 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onConnect:/dev/bus/usb/001/004
03-01 17:57:06.267 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: openCamera:/dev/bus/usb/001/004
03-01 17:57:06.267 865-944/? D/PointerIcon: setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
03-01 17:57:06.267 865-944/? D/PointerIcon: setMouseCustomIcon IconType is same.101
03-01 17:57:06.267 865-944/? D/PointerIcon: setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
03-01 17:57:06.267 865-944/? D/PointerIcon: setHoveringSpenCustomIcon IconType is same.1
03-01 17:57:06.277 865-986/? I/EventHub: Removing device '/dev/input/event21' due to inotify event
03-01 17:57:06.277 865-986/? I/EventHub: Removed device: path=/dev/input/event21 name=See3CAMCU50 id=19 fd=434 classes=0x80000001
03-01 17:57:06.297 865-986/? I/InputReader: Device removed: id=19, name='See3CAMCU50', sources=0x00000101
03-01 17:57:06.297 1050-1060/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:06.297 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:06.307 865-986/? E/EventHub: file open failed: /sys/devices/virtual/input/input21/name
03-01 17:57:06.307 865-986/? D/EventHub: No input device configuration file found for device 'See3CAMCU50'.
03-01 17:57:06.307 18286-18286/com.serenegiant.usbcameratest7 E/ViewRootImpl: sendUserActionEvent() mView == null
03-01 17:57:06.307 865-986/? W/EventHub: Unable to disable kernel key repeat for /dev/input/event21: Function not implemented
03-01 17:57:06.307 865-986/? I/EventHub: New device: id=20, fd=340, path='/dev/input/event21', name='See3CAMCU50', classes=0x80000001, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=true
03-01 17:57:06.317 865-986/? I/InputReader: Device added: id=20, name='See3CAMCU50', sources=0x00000101
03-01 17:57:06.317 1050-17309/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:06.317 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:06.317 865-5871/? W/InputMethodManagerService: Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4383dca0 attribute=null, token = android.os.BinderProxy@43687f18
03-01 17:57:06.527 1050-1299/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:06.527 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:06.527 258-520/? I/SurfaceFlinger: id=230 Removed NainActivit (8/10)
03-01 17:57:06.527 258-1094/? I/SurfaceFlinger: id=230 Removed NainActivit (-2/10)
03-01 17:57:06.537 1050-1060/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:06.537 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:06.607 1050-1050/? D/STATUSBAR-NetworkController: onReceive() - RSSI_CHANGED_ACTION, WIFI_STATE, NETWORK_STATE
03-01 17:57:06.607 1050-1050/? D/STATUSBAR-NetworkController: refreshSignalCluster - setNWBoosterIndicators(false)
03-01 17:57:06.607 1050-1050/? D/STATUSBAR-NetworkController: refreshSignalCluster: data=-1 bt=false
03-01 17:57:06.617 1050-1050/? D/STATUSBAR-IconMerger: checkOverflow(1440), More:false, Req:false Child:3
03-01 17:57:07.327 261-625/? V/AudioPolicyManagerBase: stopOutput() output 3, stream 1, session 82
03-01 17:57:07.327 261-625/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 0
03-01 17:57:07.327 261-625/? V/AudioPolicyManagerBase: getNewDevice() selected device 0
03-01 17:57:07.337 261-625/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0000 force 0 delayMs 100
03-01 17:57:07.337 261-625/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:57:07.337 261-625/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0000 or null device for output 3
03-01 17:57:08.037 865-2338/? D/AmoledAdjustTimer: prevTemp = 334, currTemp = 334, prevStep = 5, currStep = 5
03-01 17:57:10.237 261-748/? V/audio_hw_primary: out_standby: enter: usecase(1: low-latency-playback)
03-01 17:57:10.317 261-748/? V/audio_hw_primary: stop_output_stream: enter: usecase(1: low-latency-playback)
03-01 17:57:10.317 261-748/? V/audio_hw_primary: disable_audio_route: enter: usecase(1)
03-01 17:57:10.317 261-748/? V/audio_hw_primary: disable_audio_route: reset mixer path: low-latency-playback
03-01 17:57:10.317 261-748/? D/audio_route: ++++ audio_route_update_mixer ==============
03-01 17:57:10.317 261-748/? D/audio_route: Setting mixer control: SLIMBUS_0_RX Audio Mixer MultiMedia5, value: 0
03-01 17:57:10.327 261-748/? D/audio_route: ------ audio_route_update_mixer ==============
03-01 17:57:10.327 261-748/? V/audio_hw_primary: disable_audio_route: exit
03-01 17:57:10.327 261-748/? V/audio_hw_primary: disable_snd_device: snd_device(2: speaker)
03-01 17:57:10.327 261-748/? D/audio_route: ++++ audio_route_update_mixer ==============
03-01 17:57:10.327 261-748/? D/audio_route: Setting mixer control: SPK DRV Volume, value: 0
03-01 17:57:10.327 261-748/? D/audio_route: Setting mixer control: RX7 Digital Volume, value: 0
03-01 17:57:10.327 261-748/? D/audio_route: Setting mixer control: COMP0 Switch, value: 0
03-01 17:57:10.327 261-748/? D/audio_route: Setting mixer control: RX7 MIX1 INP1, value: 0
03-01 17:57:10.337 261-748/? D/audio_route: Setting mixer control: DAC1 Switch, value: 0
03-01 17:57:10.337 261-748/? D/audio_route: ------ audio_route_update_mixer ==============
03-01 17:57:10.337 261-748/? V/audio_hw_primary: stop_output_stream: exit: status(0)
03-01 17:57:10.337 261-748/? V/audio_hw_primary: out_standby: exit
03-01 17:57:10.577 865-945/? W/ProcessCpuTracker: Skipping unknown process pid 18581
03-01 17:57:10.577 865-945/? W/ProcessCpuTracker: Skipping unknown process pid 18583
03-01 17:57:11.197 865-2368/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1491 com.absolute.android.persistservice.a.run:1059 java.lang.Thread.run:841
03-01 17:57:14.107 865-1196/? E/Watchdog: !@sync 18
03-01 17:57:14.727 865-2338/? D/SSRMv2:SIOP: SIOP:: AP = 390, PST = 396, Delta = -1
03-01 17:57:18.047 865-2338/? D/AmoledAdjustTimer: prevTemp = 334, currTemp = 334, prevStep = 5, currStep = 5
03-01 17:57:24.767 865-2338/? D/SSRMv2:SIOP: SIOP:: AP = 370, PST = 397, Delta = 1
03-01 17:57:25.357 865-986/? D/InputReader: Input event: value=1
03-01 17:57:25.357 865-986/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.118 ] when=563017620000
03-01 17:57:25.357 865-985/? I/InputDispatcher: Delivering touch to: action: 0x4, toolType: 1
03-01 17:57:25.357 865-985/? I/InputDispatcher: Delivering touch to: action: 0x0, toolType: 1
03-01 17:57:25.407 865-986/? D/InputReader: Input event: value=0
03-01 17:57:25.407 865-986/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=563069844000
03-01 17:57:25.417 865-985/? I/InputDispatcher: Delivering touch to: action: 0x1, toolType: 1
03-01 17:57:25.417 261-753/? I/AudioPolicyManagerBase: getSituationVolume: isBTConnected:0 isHeadConnected:0
03-01 17:57:25.417 261-753/? V/AudioPolicyManagerBase: getParamFromPolicy deviceInt = 0, situationInt = 1, situationVolume = 1.000000
03-01 17:57:25.417 261-3313/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:25.417 261-3313/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:25.417 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:25.417 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:25.417 261-3313/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:25.417 261-261/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:25.417 261-261/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:25.417 261-261/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:25.417 261-261/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:25.417 261-261/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:25.417 261-756/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 44100, format 1, channelMask 3, flags 4
03-01 17:57:25.417 261-756/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:25.417 261-756/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0004
03-01 17:57:25.417 261-756/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0004
03-01 17:57:25.417 261-756/? V/AudioPolicyManagerBase: selectOutput() commonFlags for output 3, 0001
03-01 17:57:25.417 261-756/? V/AudioPolicyManagerBase: getOutput() returns output 3
03-01 17:57:25.427 261-3312/? V/AudioPolicyManagerBase: startOutput() output 3, stream 1, session 83
03-01 17:57:25.427 261-3312/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 1
03-01 17:57:25.427 261-3312/? V/AudioPolicyManagerBase: getNewDevice() selected device 2
03-01 17:57:25.427 261-3312/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0002 force 0 delayMs 0
03-01 17:57:25.427 261-3312/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:57:25.427 261-3312/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0002 or null device for output 3
03-01 17:57:25.427 261-748/? E/AudioResampler: Unsupported sample format, 1 bits, 2 channels
03-01 17:57:25.427 261-748/? D/AudioResampler: AudioResamplerOrder1::resample common!!!!!
03-01 17:57:25.427 261-748/? D/AudioResampler: new common resampler(44100 -> 48000, 2, 2)
03-01 17:57:25.427 261-748/? D/SoundAliveResampler: [SoundAliveResampler] Init+++
03-01 17:57:25.427 261-747/? E/FastMixer: did not receive expected priority boost
03-01 17:57:25.427 261-747/? V/audio_hw_primary: start_output_stream: enter: usecase(1: low-latency-playback) devices(0x2)
03-01 17:57:25.427 261-747/? V/audio_hw_primary: select_devices: ENTER
03-01 17:57:25.427 261-747/? V/audio_hw_primary: select_devices: usecase(normal)
03-01 17:57:25.427 261-747/? V/audio_hw_primary: select_devices: usecase(PCM_PLAYBACK)
03-01 17:57:25.427 261-747/? V/msm8974_platform: platform_get_output_snd_device: enter: output devices(0x2)
03-01 17:57:25.427 261-747/? V/msm8974_platform: get_OUTPUT_snd_device: for Normal Playback
03-01 17:57:25.427 261-747/? V/msm8974_platform: platform_get_output_snd_device: exit: snd_device(speaker)
03-01 17:57:25.427 261-625/? V/AudioPolicyManagerBase: releaseOutput() 3
03-01 17:57:25.427 261-747/? D/audio_hw_primary: select_devices: out_snd_device(2: speaker)
03-01 17:57:25.427 261-747/? D/audio_hw_primary: select_devices: in_snd_device(0: dummy)
03-01 17:57:25.427 261-747/? D/ACDB-LOADER: ACDB -> send_audio_cal, acdb_id = 15, path = 0
03-01 17:57:25.427 261-747/? D/ACDB-LOADER: ACDB -> send_adm_topology
03-01 17:57:25.427 261-747/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TOPOLOGY_ID
03-01 17:57:25.427 261-747/? D/ACDB-LOADER: ACDB -> send_audtable
03-01 17:57:25.427 261-747/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE
03-01 17:57:25.427 261-747/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AUDPROC_CAL
03-01 17:57:25.427 261-747/? D/ACDB-LOADER: ACDB -> send_audvoltable
03-01 17:57:25.437 261-747/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_GAIN_DEP_STEP_TABLE
03-01 17:57:25.437 261-747/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AUDPROC_VOL_CAL
03-01 17:57:25.437 261-747/? D/ACDB-LOADER: ACDB -> send_afe_cal
03-01 17:57:25.437 261-747/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE
03-01 17:57:25.437 261-747/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AFE_CAL
03-01 17:57:25.437 261-747/? V/audio_hw_primary: enable_snd_device: snd_device(2: speaker, speaker)
03-01 17:57:25.437 261-747/? D/audio_route: ++++ audio_route_update_mixer ==============
03-01 17:57:25.437 261-747/? D/audio_route: Setting mixer control: SPK DRV Volume, value: 8
03-01 17:57:25.437 261-747/? D/audio_route: Setting mixer control: RX7 Digital Volume, value: 79
03-01 17:57:25.437 261-747/? D/audio_route: Setting mixer control: COMP0 Switch, value: 1
03-01 17:57:25.437 261-747/? D/audio_route: Setting mixer control: RX7 MIX1 INP1, value: 5
03-01 17:57:25.437 261-747/? D/audio_route: Setting mixer control: DAC1 Switch, value: 1
03-01 17:57:25.447 261-747/? D/audio_route: ------ audio_route_update_mixer ==============
03-01 17:57:25.447 261-747/? V/audio_hw_primary: enable_audio_route: enter: usecase(1)
03-01 17:57:25.447 261-747/? V/audio_hw_primary: enable_audio_route: apply mixer path: low-latency-playback
03-01 17:57:25.447 261-747/? D/audio_route: ++++ audio_route_update_mixer ==============
03-01 17:57:25.447 261-747/? D/audio_route: Setting mixer control: SLIMBUS_0_RX Audio Mixer MultiMedia5, value: 1
03-01 17:57:25.447 261-747/? D/audio_route: ------ audio_route_update_mixer ==============
03-01 17:57:25.447 261-747/? V/audio_hw_primary: enable_audio_route: exit
03-01 17:57:25.447 261-747/? V/audio_hw_primary: start_output_stream: Opening PCM device card_id(0) device_id(15)
03-01 17:57:25.447 261-747/? V/audio_hw_primary: start_output_stream: exit
03-01 17:57:25.467 865-8224/? I/SpenGestureManager: setFocusWindow0
03-01 17:57:25.467 865-944/? D/PointerIcon: setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
03-01 17:57:25.467 865-944/? D/PointerIcon: setMouseCustomIcon IconType is same.101
03-01 17:57:25.467 865-944/? D/PointerIcon: setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
03-01 17:57:25.467 865-944/? D/PointerIcon: setHoveringSpenCustomIcon IconType is same.1
03-01 17:57:25.487 258-258/? I/SurfaceFlinger: id=231 createSurf (1x1),1 flag=4, NainActivit
03-01 17:57:25.487 1050-1299/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:25.487 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:25.497 1050-1060/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:25.497 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:25.517 1050-1612/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:25.517 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:25.527 1050-1299/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:25.527 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:25.787 1050-1062/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:25.787 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:26.517 261-625/? V/AudioPolicyManagerBase: stopOutput() output 3, stream 1, session 83
03-01 17:57:26.517 261-625/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 0
03-01 17:57:26.517 261-625/? V/AudioPolicyManagerBase: getNewDevice() selected device 0
03-01 17:57:26.517 261-625/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0000 force 0 delayMs 100
03-01 17:57:26.517 261-625/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:57:26.517 261-625/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0000 or null device for output 3
03-01 17:57:26.737 865-986/? D/InputReader: Input event: value=1
03-01 17:57:26.737 865-986/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.119 ] when=564390462000
03-01 17:57:26.737 865-985/? I/InputDispatcher: Delivering touch to: action: 0x4, toolType: 1
03-01 17:57:26.737 865-985/? I/InputDispatcher: Delivering touch to: action: 0x0, toolType: 1
03-01 17:57:26.797 865-986/? D/InputReader: Input event: value=0
03-01 17:57:26.797 865-986/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=564453692000
03-01 17:57:26.797 865-985/? I/InputDispatcher: Delivering touch to: action: 0x1, toolType: 1
03-01 17:57:26.797 261-261/? I/AudioPolicyManagerBase: getSituationVolume: isBTConnected:0 isHeadConnected:0
03-01 17:57:26.797 261-261/? V/AudioPolicyManagerBase: getParamFromPolicy deviceInt = 0, situationInt = 1, situationVolume = 1.000000
03-01 17:57:26.797 261-756/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:26.807 261-756/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:26.807 261-756/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:26.807 261-756/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:26.807 261-756/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:26.807 261-3313/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:26.807 261-3313/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:26.807 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:26.807 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:26.807 261-3313/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:26.807 261-3312/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 44100, format 1, channelMask 3, flags 4
03-01 17:57:26.807 261-3312/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:26.807 261-3312/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0004
03-01 17:57:26.807 261-3312/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0004
03-01 17:57:26.807 261-3312/? V/AudioPolicyManagerBase: selectOutput() commonFlags for output 3, 0001
03-01 17:57:26.807 261-3312/? V/AudioPolicyManagerBase: getOutput() returns output 3
03-01 17:57:26.807 261-753/? V/AudioPolicyManagerBase: startOutput() output 3, stream 1, session 84
03-01 17:57:26.807 261-753/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 1
03-01 17:57:26.807 261-753/? V/AudioPolicyManagerBase: getNewDevice() selected device 2
03-01 17:57:26.807 261-753/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0002 force 0 delayMs 0
03-01 17:57:26.807 261-753/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:57:26.807 261-753/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0002 or null device for output 3
03-01 17:57:26.807 261-625/? V/AudioPolicyManagerBase: releaseOutput() 3
03-01 17:57:26.807 261-748/? E/AudioResampler: Unsupported sample format, 1 bits, 2 channels
03-01 17:57:26.807 261-748/? D/AudioResampler: AudioResamplerOrder1::resample common!!!!!
03-01 17:57:26.807 261-748/? D/AudioResampler: new common resampler(44100 -> 48000, 2, 2)
03-01 17:57:26.807 261-748/? D/SoundAliveResampler: [SoundAliveResampler] Init+++
03-01 17:57:26.817 18286-18286/com.serenegiant.usbcameratest7 D/AbsListView: Get MotionRecognitionManager
03-01 17:57:26.827 865-876/? D/MotionRecognitionService: ssp status : true
03-01 17:57:26.837 865-8224/? I/SpenGestureManager: setFocusWindow0
03-01 17:57:26.847 865-944/? D/PointerIcon: setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
03-01 17:57:26.847 865-944/? D/PointerIcon: setMouseCustomIcon IconType is same.101
03-01 17:57:26.847 865-944/? D/PointerIcon: setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
03-01 17:57:26.847 865-944/? D/PointerIcon: setHoveringSpenCustomIcon IconType is same.1
03-01 17:57:26.847 18286-18286/com.serenegiant.usbcameratest7 D/AbsListView: unregisterIRListener() is called
03-01 17:57:26.847 258-258/? I/SurfaceFlinger: id=232 createSurf (1x1),1 flag=4, QopupWindow
03-01 17:57:26.857 1050-1612/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:26.857 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:26.877 1050-1062/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:26.877 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:26.887 18286-18286/com.serenegiant.usbcameratest7 D/AbsListView: unregisterIRListener() is called
03-01 17:57:26.887 18286-18286/com.serenegiant.usbcameratest7 D/AbsListView: unregisterIRListener() is called
03-01 17:57:26.887 18286-18286/com.serenegiant.usbcameratest7 D/AbsListView: unregisterIRListener() is called
03-01 17:57:26.897 1050-1060/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:26.907 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:26.907 18286-18286/com.serenegiant.usbcameratest7 D/AbsListView: unregisterIRListener() is called
03-01 17:57:26.927 1050-1299/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:26.927 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:27.187 1050-5867/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:27.187 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:27.897 261-625/? V/AudioPolicyManagerBase: stopOutput() output 3, stream 1, session 84
03-01 17:57:27.897 261-625/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 0
03-01 17:57:27.897 261-625/? V/AudioPolicyManagerBase: getNewDevice() selected device 0
03-01 17:57:27.897 261-625/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0000 force 0 delayMs 100
03-01 17:57:27.897 261-625/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:57:27.907 261-625/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0000 or null device for output 3
03-01 17:57:28.057 865-2338/? D/AmoledAdjustTimer: prevTemp = 334, currTemp = 334, prevStep = 5, currStep = 5
03-01 17:57:28.257 865-986/? D/InputReader: Input event: value=1
03-01 17:57:28.257 865-986/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.120 ] when=565913786000
03-01 17:57:28.257 865-985/? I/InputDispatcher: Delivering touch to: action: 0x4, toolType: 1
03-01 17:57:28.257 865-985/? I/InputDispatcher: Delivering touch to: action: 0x0, toolType: 1
03-01 17:57:28.297 865-986/? D/InputReader: Input event: value=0
03-01 17:57:28.297 865-986/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=565957814000
03-01 17:57:28.297 865-985/? I/InputDispatcher: Delivering touch to: action: 0x1, toolType: 1
03-01 17:57:28.367 18286-18286/com.serenegiant.usbcameratest7 D/AbsListView: onDetachedFromWindow
03-01 17:57:28.367 18286-18286/com.serenegiant.usbcameratest7 D/AbsListView: unregisterIRListener() is called
03-01 17:57:28.367 261-261/? I/AudioPolicyManagerBase: getSituationVolume: isBTConnected:0 isHeadConnected:0
03-01 17:57:28.367 261-261/? V/AudioPolicyManagerBase: getParamFromPolicy deviceInt = 0, situationInt = 1, situationVolume = 1.000000
03-01 17:57:28.367 261-756/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:28.367 261-756/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:28.367 261-756/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:28.377 261-756/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:28.377 261-756/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:28.377 261-3313/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:28.377 261-3313/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:28.377 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:28.377 261-3313/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:28.377 261-3313/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:28.377 261-3312/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 44100, format 1, channelMask 3, flags 4
03-01 17:57:28.377 261-3312/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:28.377 261-3312/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0004
03-01 17:57:28.377 261-3312/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0004
03-01 17:57:28.377 261-3312/? V/AudioPolicyManagerBase: selectOutput() commonFlags for output 3, 0001
03-01 17:57:28.377 261-3312/? V/AudioPolicyManagerBase: getOutput() returns output 3
03-01 17:57:28.377 865-1279/? I/SpenGestureManager: setFocusWindow21015
03-01 17:57:28.377 261-753/? V/AudioPolicyManagerBase: startOutput() output 3, stream 1, session 85
03-01 17:57:28.377 261-753/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 1
03-01 17:57:28.377 261-753/? V/AudioPolicyManagerBase: getNewDevice() selected device 2
03-01 17:57:28.377 261-753/? V/AudioPolicyManagerBase: setOutputDevice() output 3 device 0002 force 0 delayMs 0
03-01 17:57:28.377 261-753/? V/AudioPolicyManagerBase: setOutputDevice() prevDevice (0002)
03-01 17:57:28.377 261-753/? V/AudioPolicyManagerBase: setOutputDevice() setting same device 0002 or null device for output 3
03-01 17:57:28.377 261-625/? V/AudioPolicyManagerBase: releaseOutput() 3
03-01 17:57:28.387 261-748/? E/AudioResampler: Unsupported sample format, 1 bits, 2 channels
03-01 17:57:28.387 261-748/? D/AudioResampler: AudioResamplerOrder1::resample common!!!!!
03-01 17:57:28.387 261-748/? D/AudioResampler: new common resampler(44100 -> 48000, 2, 2)
03-01 17:57:28.387 261-748/? D/SoundAliveResampler: [SoundAliveResampler] Init+++
03-01 17:57:28.387 1050-1060/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:28.387 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:28.387 865-944/? D/PointerIcon: setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
03-01 17:57:28.387 865-944/? D/PointerIcon: setMouseCustomIcon IconType is same.101
03-01 17:57:28.387 865-944/? D/PointerIcon: setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
03-01 17:57:28.387 865-944/? D/PointerIcon: setHoveringSpenCustomIcon IconType is same.1
03-01 17:57:28.397 18286-18286/com.serenegiant.usbcameratest7 E/ViewRootImpl: sendUserActionEvent() mView == null
03-01 17:57:28.657 1050-1062/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:28.657 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:28.667 258-520/? I/SurfaceFlinger: id=232 Removed QopupWindow (9/11)
03-01 17:57:28.667 258-4861/? I/SurfaceFlinger: id=232 Removed QopupWindow (-2/11)
03-01 17:57:28.667 1050-1612/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:28.667 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:29.007 865-986/? D/InputReader: Input event: value=1
03-01 17:57:29.007 865-986/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.121 ] when=566661375000
03-01 17:57:29.007 865-985/? I/InputDispatcher: Delivering touch to: action: 0x4, toolType: 1
03-01 17:57:29.007 865-985/? I/InputDispatcher: Delivering touch to: action: 0x0, toolType: 1
03-01 17:57:29.087 865-986/? D/InputReader: Input event: value=0
03-01 17:57:29.087 865-986/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=566747735000
03-01 17:57:29.087 865-985/? I/InputDispatcher: Delivering touch to: action: 0x1, toolType: 1
03-01 17:57:29.097 261-3312/? I/AudioPolicyManagerBase: getSituationVolume: isBTConnected:0 isHeadConnected:0
03-01 17:57:29.097 261-3312/? V/AudioPolicyManagerBase: getParamFromPolicy deviceInt = 0, situationInt = 1, situationVolume = 1.000000
03-01 17:57:29.097 261-753/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:29.097 261-753/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:29.097 261-753/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:29.097 261-753/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:29.097 261-753/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:29.097 261-261/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 0, format 0, channelMask 3, flags 0
03-01 17:57:29.097 261-261/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:29.097 261-261/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0000
03-01 17:57:29.097 261-261/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0000
03-01 17:57:29.097 261-261/? V/AudioPolicyManagerBase: getOutput() returns output 2
03-01 17:57:29.097 261-756/? V/AudioPolicyManagerBase: getOutput() device 2, stream 1, samplingRate 44100, format 1, channelMask 3, flags 4
03-01 17:57:29.097 261-756/? V/AudioPolicyManagerBase: getOutputsForDevice device 0002 -> 0002
03-01 17:57:29.097 261-756/? V/AudioPolicyManagerBase: selectOutput() output 2 outputDesc->mProfile->mFlags 0002 flags 0004
03-01 17:57:29.097 261-756/? V/AudioPolicyManagerBase: selectOutput() output 3 outputDesc->mProfile->mFlags 0004 flags 0004
03-01 17:57:29.097 261-756/? V/AudioPolicyManagerBase: selectOutput() commonFlags for output 3, 0001
03-01 17:57:29.097 261-756/? V/AudioPolicyManagerBase: getOutput() returns output 3
03-01 17:57:29.097 865-1109/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/003,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mInterfaces=[Landroid.os.Parcelable;@435bcb58]for {10206=true}
03-01 17:57:29.107 261-3313/? V/AudioPolicyManagerBase: startOutput() output 3, stream 1, session 86
03-01 17:57:29.107 261-3313/? V/AudioPolicyManagerBase: changeRefCount() stream 1, count 2
03-01 17:57:29.107 261-748/? E/AudioResampler: Unsupported sample format, 1 bits, 2 channels
03-01 17:57:29.107 261-748/? D/AudioResampler: AudioResamplerOrder1::resample common!!!!!
03-01 17:57:29.107 261-748/? D/AudioResampler: new common resampler(44100 -> 48000, 2, 2)
03-01 17:57:29.107 261-748/? D/SoundAliveResampler: [SoundAliveResampler] Init+++
03-01 17:57:29.107 261-625/? V/AudioPolicyManagerBase: releaseOutput() 3
03-01 17:57:29.117 865-1425/? I/SpenGestureManager: setFocusWindow21010
03-01 17:57:29.117 1050-1060/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:29.127 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:29.127 865-944/? D/PointerIcon: setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
03-01 17:57:29.127 865-944/? D/PointerIcon: setMouseCustomIcon IconType is same.101
03-01 17:57:29.127 865-944/? D/PointerIcon: setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
03-01 17:57:29.127 865-944/? D/PointerIcon: setHoveringSpenCustomIcon IconType is same.1
03-01 17:57:29.127 865-1279/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/003,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mInterfaces=[Landroid.hardware.usb.UsbInterface;@43543090]for {10206=true}
03-01 17:57:29.187 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onConnect:/dev/bus/usb/001/003
03-01 17:57:29.187 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: openCamera:/dev/bus/usb/001/003
03-01 17:57:29.187 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: CameraRec is null
03-01 17:57:29.187 18286-18320/com.serenegiant.usbcameratest7 W/MainActivity: failed to start camera
03-01 17:57:29.187 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: openCamera:finished
03-01 17:57:29.187 18286-18320/com.serenegiant.usbcameratest7 V/MainActivity: tryOpen:/dev/bus/usb/001/003
03-01 17:57:29.187 18286-18286/com.serenegiant.usbcameratest7 E/ViewRootImpl: sendUserActionEvent() mView == null
03-01 17:57:29.187 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: onConnect:/dev/bus/usb/001/003
03-01 17:57:29.187 18286-18286/com.serenegiant.usbcameratest7 V/MainActivity: openCamera:/dev/bus/usb/001/003
03-01 17:57:29.187 865-1025/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/003,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mInterfaces=[Landroid.os.Parcelable;@43fbddd8]for {10206=true}
03-01 17:57:29.187 865-1342/? W/InputMethodManagerService: Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@43b8ff20 attribute=null, token = android.os.BinderProxy@43687f18
03-01 17:57:29.187 865-1101/? D/UsbSettingsManager: hasPermission: UsbDevice[mName=/dev/bus/usb/001/003,mVendorId=9568,mProductId=49489,mClass=239,mSubclass=2,mProtocol=1,mInterfaces=[Landroid.os.Parcelable;@43ce6098]for {10206=true}
03-01 17:57:29.207 865-986/? I/EventHub: Removing device See3CAMCU50 due to epoll hang-up event.
03-01 17:57:29.207 865-986/? I/EventHub: Removed device: path=/dev/input/event20 name=See3CAMCU50 id=17 fd=409 classes=0x80000001
03-01 17:57:29.227 865-986/? I/InputReader: Device removed: id=17, name='See3CAMCU50', sources=0x00000101
03-01 17:57:29.227 865-986/? I/EventHub: Removing device '/dev/input/event20' due to inotify event
03-01 17:57:29.227 1050-1062/? D/KeyguardUpdateMonitor: sendKeyguardVisibilityChanged(true)
03-01 17:57:29.227 1050-1050/? D/KeyguardUpdateMonitor: handleKeyguardVisibilityChanged(1)
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 E/dalvikvm: ERROR: detaching thread with interp frames (count=15)
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: "main" prio=5 tid=1 RUNNABLE
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: | group="main" sCount=0 dsCount=0 obj=0x41c2dea0 self=0x41c1c448
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: | sysTid=18286 nice=0 sched=0/0 cgrp=apps handle=1074532692
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: | state=R schedstat=( 571416978 424246194 1931 ) utm=36 stm=21 core=3
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at com.serenegiant.usb.UVCCamera.nativeSetPreviewSize(Native Method)
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at com.serenegiant.usb.UVCCamera.setPreviewSize(UVCCamera.java:289)
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at com.serenegiant.usbcameratest7.MainActivity.openCamera(MainActivity.java:314)
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at com.serenegiant.usbcameratest7.MainActivity.access$500(MainActivity.java:54)
03-01 17:57:29.237 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at com.serenegiant.usbcameratest7.MainActivity$3.onConnect(MainActivity.java:202)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at com.serenegiant.usb.USBMonitor$3.run(USBMonitor.java:377)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at android.os.Handler.handleCallback(Handler.java:733)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at android.os.Handler.dispatchMessage(Handler.java:95)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at android.os.Looper.loop(Looper.java:136)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at android.app.ActivityThread.main(ActivityThread.java:5586)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at java.lang.reflect.Method.invokeNative(Native Method)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at java.lang.reflect.Method.invoke(Method.java:515)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1268)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1084)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 I/dalvikvm: at dalvik.system.NativeStart.main(Native Method)
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 E/dalvikvm: VM aborting
03-01 17:57:29.247 18286-18286/com.serenegiant.usbcameratest7 A/libc: Fatal signal 6 (SIGABRT) at 0x0000476e (code=-6), thread 18286 (.usbcameratest7)
03-01 17:57:29.347 250-250/? I/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
03-01 17:57:29.347 250-250/? I/DEBUG: Build fingerprint: 'samsung/kltexx/klte:4.4.2/KOT49H/G900FXXU1ANG2:user/release-keys'
03-01 17:57:29.357 250-250/? I/DEBUG: Revision: '14'
03-01 17:57:29.357 250-250/? I/DEBUG: pid: 18286, tid: 18286, name: .usbcameratest7 >>> com.serenegiant.usbcameratest7 <<<
03-01 17:57:29.357 250-250/? I/DEBUG: signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------`

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi saki,
can you tell me more about the altsettings in this library? My cameras do not have an audio interface, may that be a problem?
I cannot find a lot of information about altsettings online.

from uvccamera.

saki4510t avatar saki4510t commented on August 11, 2024

Hi, my understanding related to altsettings are as follows.

on USB2.0 specification,

  • there are three transfer mode; low-speed mode, full-speed mode and high-speed mode and maximum data transfer speed of high-speed mode is 480Mbps(=60MB/s)
  • there are four transfer mode; control transfer, interrupt transfer, bulk transfer and isochronous transfer and maximum data transfer speed of isochronous transfer of high-speed mode is 24576KB/s(24MB/s) (defined on USB spec.)
  • most Web cameras on the market use isochronous transfer to transfer images.
  • additional packets need to control data transfer as defined on USB/UVC specification.
  • actual data transfer speed depends on quality/length of cable, model of controller etc.
  • As I know actual maximum data transfer speed of isochronous transfer of high-speed mode is approx. 20MB/s(=bandwidth).

If we want to use 640x480,YUV, 30fps, image size is 640x480x3/2 = 450KB/image = approx.13MB/s. This means we don't use two camera with 640x480,YUV, 30fps because the total required bandwidth exceeds available ones.15fps is maximum for two camera with 640x480,YUV.

  • each transfer data has structure called frame for low/full speed mode and micro frame for high speed mode and controller needs to transfer micro frame every 125 micro seconds.
  • each frame/micro frame has multiple transaction.
  • each transaction has multiple packet

If we want 30fps, 1sec(=1000 msec) / 30fps = approx.33msec. and maximum number of micro frame is approx. 260/sec.
So if we want to use two camera at the same time, we need to reduce number of transfer of micro frame and maximum available number of micro frame for each camera is approx. 130/sec. This means we will need to increase amount of transfer bytes for each micro frame.

On the other hand, maximum transfer data bytes for each packet of each device(camera) depends on resolution, format of image(mjpeg, yuv, h264 etc.) and camera spec. etc. and USB device needs to show available maximum packet size for each interface on it's device descriptor and this is called altsetting.

We need to select altsetting suitable for resolution, format, fps etc. before starting isochronous transfer.

If you want to know more details/correctly, please read USB and UVC specification(available on USB.org as PDF file).

saki

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi,
thanks a lot for your implementation. In fact, I am using USB3.0 and not USB2.0 and assumed that I the higher bandwidth allows me to use two cameras at a higher resolution. After checking the USB2.0 and 3.0 specifications, I came to the understanding that this assumption does not hold true. It could be that if I want to use higher frame rates or resolutions I would need to use the bulk-stream instead of isochronous transfer, and it seems that this is not implemented in your library. In fact, the datasheet of my cameras states: "Note: Please note that the See3CAMCU50 supports UVC-compliant streaming in Bulk Transport only." I don't really understand this, because the cameras are working sometimes, but maybe the isochronous transfer mode is implemented as well but with less focus and therefore more buggy.
Do you think it is possible to adapt the library to support bulk-streams? They are implemented in the current libusb, but I guess it would need a lot of work to get it working.
I would be very greatful for any input, maybe even an idea where to start implementing the bulk-stream compatibility.
And thanks again for your help so far.
Ben

On 12 Mar 2016, at 04:59, saki [email protected] wrote:

Hi, my understanding related to altsettings are as follows.

on USB2.0 specification,

there are three transfer mode; low-speed mode, full-speed mode and high-speed mode and maximum data transfer speed of high-speed mode is 480Mbps(=60MB/s)
there are four transfer mode; control transfer, interrupt transfer, bulk transfer and isochronous transfer and maximum data transfer speed of isochronous transfer of high-speed mode is 24576KB/s(24MB/s) (defined on USB spec.)
most Web cameras on the market use isochronous transfer to transfer images.
additional packets need to control data transfer as defined on USB/UVC specification.
actual data transfer speed depends on quality/length of cable, model of controller etc.
As I know actual maximum data transfer speed of isochronous transfer of high-speed mode is approx. 20MB/s(=bandwidth).
If we want to use 640x480,YUV, 30fps, image size is 640x480x3/2 = 450KB/image = approx.13MB/s. This means we don't use two camera with 640x480,YUV, 30fps because the total required bandwidth exceeds available ones.15fps is maximum for two camera with 640x480,YUV.

each transfer data has structure called frame for low/full speed mode and micro frame for high speed mode and controller needs to transfer micro frame every 125 micro seconds.
each frame/micro frame has multiple transaction.
each transaction has multiple packet
If we want 30fps, 1sec(=1000 msec) / 30fps = approx.33msec. and maximum number of micro frame is approx. 260/sec.
So if we want to use two camera at the same time, we need to reduce number of transfer of micro frame and maximum available number of micro frame for each camera is approx. 130/sec. This means we will need to increase amount of transfer bytes for each micro frame.

On the other hand, maximum transfer data bytes for each packet of each device(camera) depends on resolution, format of image(mjpeg, yuv, h264 etc.) and camera spec. etc. and USB device needs to show available maximum packet size for each interface on it's device descriptor and this is called altsetting.

We need to select altsetting suitable for resolution, format, fps etc. before starting isochronous transfer.

If you want to know more details/correctly, please read USB and UVC specification(available on USB.org as PDF file).

saki


Reply to this email directly or view it on GitHub #42 (comment).

from uvccamera.

saki4510t avatar saki4510t commented on August 11, 2024

Hi,
I'm not sure details about your camera, this repository support bulk transfer, but does not support bulk-stream transfer. As I know the most important difference of them is bulk-stream transfer has non-zero stream id and needs to handle(hold and track) these stream id.
I assume you will need to use libusb_alloc_streams, libusb_free_streams, libusb_fill_bulk_stream_transfer instead of using libusb_fill_bulk_transfer etc. when start bulk-stream transfer.
Unfortunately I don't have camera that support USB3.0...

with best regards,
saki

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi saki,
thanks a lot for your help. I will look into it and get back with results.

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi saki,
after crawling through the sources all day I still have no idea how to implement this. I don't know where to get the parameters for the streams-version of the functions and how to populate the struct strmh afterwards. I am afraid Im not making progress on this project for far to long and am way to desperate. Probably I will have to give up.

On 19 Mar 2016, at 23:12, Benedikt Tutzer [email protected] wrote:

Hi saki,
thanks a lot for your help. I will look into it and get back with results.

On Mar 19, 2016 13:28, saki [email protected] wrote:
Hi,
I'm not sure details about your camera, this repository support bulk transfer, but does not support bulk-stream transfer. As I know the most important difference of them is bulk-stream transfer has non-zero stream id and needs to handle(hold and track) these stream id.
I assume you will need to use libusb_alloc_streams, libusb_free_streams, libusb_fill_bulk_stream_transfer instead of using libusb_fill_bulk_transfer etc. when start bulk-stream transfer.
Unfortunately I don't have camera that support USB3.0...

with best regards,
saki


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub #42 (comment)
Hi saki,
thanks a lot for your help. I will look into it and get back with results.

from uvccamera.

saki4510t avatar saki4510t commented on August 11, 2024

Hi, could you provide device descriptor of your camera as raw byte array as hex string? I don't have much time now but I may give some advice for you.
saki

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi,
I am very greatful for your input! I don't know how to generate the data you are asking for. lsusb shows these descriptors, but it is not a raw byte array nor a hex string. Please let me know how to generate the data. Thank you very much once more!

from uvccamera.

saki4510t avatar saki4510t commented on August 11, 2024

Hi,
Thank you for providing information.
If you are familiar to Java than C/C++, most easy way will be read it as byte array using UsbDeviceConnection#getRawDescriptors and write it to logCat after converting hex string.
saki

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi saki,
sorry for my late reply. I went out of town for a while and forgot the OTG cable...
The raw descriptors are:
12010002EF020140602551C10000010203010902E10103010080FA080B00020E03000209040000010E0100020D240100015000006CDC0201011224020101020000000000000000030000000C240502010040035F1400001C240603FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000102030000000009240304010100030007058203400001052503400009040100010E0200000F2401023B018300040200000100001B240401045955593200001000800000AA00389B711001000000001E240501008002E0010000941100009411006009001516050001151605001E24050200800738040080533B0080533B00483F0080841E000180841E001E240503000005D002000057300000BC3400201C0040420F000140420F001E24050400200A980700D0144800D0144800C69900404B4C0001404B4C000A24030001200A98070006240D0000000B240602040101000000001E240701008002E0010000941100009411006009001516050001151605001E24070200800738040080533B0080533B00483F002A2C0A00012A2C0A001E240703000005D002000057300000BC3400201C001516050001151605001E24070400200A980700D0144800D0144800C69900D012130001D012130006240D00000007058302000201090402000203000000092111010001221D000705850340000107050603400001

You have my highest respect for knowing what any of this means!
Thanks for your help.

from uvccamera.

saki4510t avatar saki4510t commented on August 11, 2024

Hi,
Your descriptor starts with 12010002EF020.... This means;

Device Descriptor
12          bLength                     18 bytes
01          bDescriptorType             Device Descriptor
0002        bcdUSB                      "0200" = USB2.0
ef          bDeviceClass                Miscellaneous Device Class
02          bDeviceSubClass             Common Class
01          bDeviceProtocol             Interface Association Descriptor
40          bMaxPacketSize0             Control endpoint packet size is 64 bytes
6025        idVendor                    Vendor ID=0x2560 (e-consystems)
51c1        idProduct                   Product ID=0xc151 (See3CAMCU50)
0000        bcdDevice
....continue

And it says your camera recognized that the connection is USB2.0.
As I can see previous log by lsusb, the camera can work as USB3.0 and if the camera recognizes and work as USB3.0 device, bcdUSB should be 0300 (actual bytes in descriptor are 0003 because all values are little endian).
Unfortunately as I know, there are very few Android devices that support USB3.0/3.1 so I assume your Android device also does not support USB3.0/3.1 or have some issue on cabling etc.
saki

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi saki,
thanks for your help.
I am pretty sure the device supports USB3.0, thats why I have chosen the Samsung Galaxy S5. It was the only device I was able to find with an USB3.0 connector. The hub is USB3.0 as well.
Aside from that, the cameras do not work separately and on low resolutions / frame rate either, so I do not think that this is a USB3.0 issue.

from uvccamera.

saki4510t avatar saki4510t commented on August 11, 2024

Hi,
Well I also have GALAXY S5(Android5.0) but it always works as USB2.0 host (instead of USB3.0 host) and sometimes half or more slower when using USB3.0 OTG cable than usual USB2.0 OTG cable.
As I can see on internet, S5 can work as USB3.0 device under some condition(seems to depend on firmware) but I can't find information that S5 should work as USB3.0 host and I assume USB3.0 host feature may be disabled on my S5(and may be same on your S5).

So I think your should not expect your S5 really works with USB3.0 host unless you really confirm it works as USB3.0 host with super speed mode by USB analyzer etc.
And your camera says the connection is USB 2.0. This is the only truth that we could really confirm now and your S5 works only USB 2.0 host.

saki

from uvccamera.

btut avatar btut commented on August 11, 2024

Hi,
I do not question what you have read from the descriptors. I just wondered. I am astonished by your comments that sometimes your USB3.0 OTG cable is slower than the 2.0 one, I prefer to use the 3.0 cable since it provides more power, at least that function of the USB3.0 host seems to be implemented.
But the main issue is still open. Even with a USB 2.0 HUB and on resolutions that should be no problem for USB2.0, the cameras are not working.

from uvccamera.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.