· 6 years ago · Jan 30, 2020, 07:26 AM
1Microsoft Windows [Version 10.0.18362.535]
2(c) 2019 Microsoft Corporation. All rights reserved.
3
4C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools>cd \Users\user\Desktop
5The system cannot find the path specified.
6
7C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools>C:\Users\user\AppData\Local\Android\Sdk\platform-tools\adb logcat -f ouya.log
8The system cannot find the path specified.
9
10C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools>adb
11Android Debug Bridge version 1.0.41
12Version 29.0.5-5949299
13Installed as C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools\adb.exe
14
15global options:
16 -a listen on all network interfaces, not just localhost
17 -d use USB device (error if multiple devices connected)
18 -e use TCP/IP device (error if multiple TCP/IP devices available)
19 -s SERIAL use device with given serial (overrides $ANDROID_SERIAL)
20 -t ID use device with given transport id
21 -H name of adb server host [default=localhost]
22 -P port of adb server [default=5037]
23 -L SOCKET listen on given socket for adb server [default=tcp:localhost:5037]
24
25general commands:
26 devices [-l] list connected devices (-l for long output)
27 help show this help message
28 version show version num
29
30networking:
31 connect HOST[:PORT] connect to a device via TCP/IP
32 disconnect [[HOST]:PORT] disconnect from given TCP/IP device, or all
33 forward --list list all forward socket connections
34 forward [--no-rebind] LOCAL REMOTE
35 forward socket connection using:
36 tcp:<port> (<local> may be "tcp:0" to pick any open port)
37 localabstract:<unix domain socket name>
38 localreserved:<unix domain socket name>
39 localfilesystem:<unix domain socket name>
40 dev:<character device name>
41 jdwp:<process pid> (remote only)
42 forward --remove LOCAL remove specific forward socket connection
43 forward --remove-all remove all forward socket connections
44 ppp TTY [PARAMETER...] run PPP over USB
45 reverse --list list all reverse socket connections from device
46 reverse [--no-rebind] REMOTE LOCAL
47 reverse socket connection using:
48 tcp:<port> (<remote> may be "tcp:0" to pick any open port)
49 localabstract:<unix domain socket name>
50 localreserved:<unix domain socket name>
51 localfilesystem:<unix domain socket name>
52 reverse --remove REMOTE remove specific reverse socket connection
53 reverse --remove-all remove all reverse socket connections from device
54
55file transfer:
56 push [--sync] LOCAL... REMOTE
57 copy local files/directories to device
58 --sync: only push files that are newer on the host than the device
59 pull [-a] REMOTE... LOCAL
60 copy files/dirs from device
61 -a: preserve file timestamp and mode
62 sync [all|data|odm|oem|product|system|system_ext|vendor]
63 sync a local build from $ANDROID_PRODUCT_OUT to the device (default all)
64 -l: list files that would be copied, but don't copy them
65
66shell:
67 shell [-e ESCAPE] [-n] [-Tt] [-x] [COMMAND...]
68 run remote shell command (interactive shell if no command given)
69 -e: choose escape character, or "none"; default '~'
70 -n: don't read from stdin
71 -T: disable PTY allocation
72 -t: force PTY allocation
73 -x: disable remote exit codes and stdout/stderr separation
74 emu COMMAND run emulator console command
75
76app installation (see also `adb shell cmd package help`):
77 install [-lrtsdg] [--instant] PACKAGE
78 push a single package to the device and install it
79 install-multiple [-lrtsdpg] [--instant] PACKAGE...
80 push multiple APKs to the device for a single package and install them
81 install-multi-package [-lrtsdpg] [--instant] PACKAGE...
82 push one or more packages to the device and install them atomically
83 -r: replace existing application
84 -t: allow test packages
85 -d: allow version code downgrade (debuggable packages only)
86 -p: partial application install (install-multiple only)
87 -g: grant all runtime permissions
88 --abi ABI: override platform's default ABI
89 --instant: cause the app to be installed as an ephemeral install app
90 --no-streaming: always push APK to device and invoke Package Manager as separate steps
91 --streaming: force streaming APK directly into Package Manager
92 --fastdeploy: use fast deploy
93 --no-fastdeploy: prevent use of fast deploy
94 --force-agent: force update of deployment agent when using fast deploy
95 --date-check-agent: update deployment agent when local version is newer and using fast deploy
96 --version-check-agent: update deployment agent when local version has different version code and using fast deploy
97 (See also `adb shell pm help` for more options.)
98 uninstall [-k] PACKAGE
99 remove this app package from the device
100 '-k': keep the data and cache directories
101
102debugging:
103 bugreport [PATH]
104 write bugreport to given PATH [default=bugreport.zip];
105 if PATH is a directory, the bug report is saved in that directory.
106 devices that don't support zipped bug reports output to stdout.
107 jdwp list pids of processes hosting a JDWP transport
108 logcat show device log (logcat --help for more)
109
110security:
111 disable-verity disable dm-verity checking on userdebug builds
112 enable-verity re-enable dm-verity checking on userdebug builds
113 keygen FILE
114 generate adb public/private key; private key stored in FILE,
115
116scripting:
117 wait-for[-TRANSPORT]-STATE
118 wait for device to be in the given state
119 STATE: device, recovery, rescue, sideload, bootloader, or disconnect
120 TRANSPORT: usb, local, or any [default=any]
121 get-state print offline | bootloader | device
122 get-serialno print <serial-number>
123 get-devpath print <device-path>
124 remount [-R]
125 remount partitions read-write. if a reboot is required, -R will
126 will automatically reboot the device.
127 reboot [bootloader|recovery|sideload|sideload-auto-reboot]
128 reboot the device; defaults to booting system image but
129 supports bootloader and recovery too. sideload reboots
130 into recovery and automatically starts sideload mode,
131 sideload-auto-reboot is the same but reboots after sideloading.
132 sideload OTAPACKAGE sideload the given full OTA package
133 root restart adbd with root permissions
134 unroot restart adbd without root permissions
135 usb restart adbd listening on USB
136 tcpip PORT restart adbd listening on TCP on PORT
137
138internal debugging:
139 start-server ensure that there is a server running
140 kill-server kill the server if it is running
141 reconnect kick connection from host side to force reconnect
142 reconnect device kick connection from device side to force reconnect
143 reconnect offline reset offline/unauthorized devices to force reconnect
144
145environment variables:
146 $ADB_TRACE
147 comma-separated list of debug info to log:
148 all,adb,sockets,packets,rwx,usb,sync,sysdeps,transport,jdwp
149 $ADB_VENDOR_KEYS colon-separated list of keys (files or directories)
150 $ANDROID_SERIAL serial number to connect to (see -s)
151 $ANDROID_LOG_TAGS tags to be used by logcat (see logcat --help)
152 $ADB_LOCAL_TRANSPORT_MAX_PORT max emulator scan port (default 5585, 16 emus)
153
154C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools>adblogcat
155'adblogcat' is not recognized as an internal or external command,
156operable program or batch file.
157
158C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools>"adb logcat"
159'"adb logcat"' is not recognized as an internal or external command,
160operable program or batch file.
161
162C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools>adb logcat
163--------- beginning of /dev/log/main
164I/DEBUG ( 107): debuggerd: Jun 24 2014 13:03:40
165I/ ( 120): Raydium ServiceManager: 0x40d756a0
166I/Raydium_TS_Native_Service( 120): rm_ts_service instantiate
167I/Raydium_TS_Native_Service( 120): rm_ts_service created
168I/Raydium_TS_Native_Service( 120): TS Service JNI: TS Stub found
169I/Raydium_TS_Stub( 120): -------------------Raydium TS Stub open ---------------
170D/Raydium_ts_main( 120): ts_main_init
171I/Netd ( 106): Netd 1.0 starting
172E/Raydium_TS_DRIVER_IF( 120): can't open device:/dev/raydium_ts
173--------- beginning of /dev/log/system
174I/Vold ( 104): Vold 2.1 (the revenge) firing up
175I/Raydium_TS_Native_Service( 120): TS Service JNI: Got Stub operations
176I/Raydium_TS_Native_Service( 120): rm_ts_service r = 0
177I/NvCpuService( 119): Publishing NvCpuService
178I/NvCpuService( 119): Initializing NvCpuService
179I/NvCpuService( 119): Worker now ready
180D/Vold ( 104): Volume usbdrive state changing -1 (Initializing) -> 0 (No-Media) id:
181I/recovery( 191): Recovery image already installed
182E/Netd ( 106): Unable to create netlink socket: Protocol not supported
183E/Netd ( 106): Unable to open quota2 logging socket
184D/MDnsDS ( 106): MDnsSdListener::Hander starting up
185D/MDnsDS ( 106): MDnsSdListener starting to monitor
186D/MDnsDS ( 106): Going to poll with pollCount 1
187I/SurfaceFlinger( 108): SurfaceFlinger is starting
188I/SurfaceFlinger( 108): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
189D/AndroidRuntime( 109):
190D/AndroidRuntime( 109): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
191D/AndroidRuntime( 109): CheckJNI is OFF
192I/mediaserver( 111): ServiceManager: 0x41472cf8
193I/AudioFlinger( 111): Using default 3000 mSec as standby time.
194I/CameraService( 111): CameraService started (pid=111)
195E/gralloc ( 108): creating nvcap video capture service
196E/gralloc ( 108): Failed to create overlay for display 1
197E/gralloc ( 108): Failed to create overlay for display 1
198E/gralloc ( 108): Failed to create overlay for display 1
199I/gralloc ( 108): using (fd=16)
200I/gralloc ( 108): id = tegra_fb
201I/gralloc ( 108): xres = 1920 px
202I/gralloc ( 108): yres = 1080 px
203I/gralloc ( 108): xres_virtual = 1920 px
204I/gralloc ( 108): yres_virtual = 2160 px
205I/gralloc ( 108): bpp = 32
206I/gralloc ( 108): r = 0:8
207I/gralloc ( 108): g = 8:8
208I/gralloc ( 108): b = 16:8
209I/gralloc ( 108): smem_start = 0xbec00000
210I/gralloc ( 108): smem_len = 0x00900000
211I/gralloc ( 108): format = 1
212I/gralloc ( 108): stride = 1920
213I/gralloc ( 108): width = 305 mm (159.895081 dpi)
214I/gralloc ( 108): height = 171 mm (160.421051 dpi)
215I/gralloc ( 108): refresh rate = 60.00 Hz
216E/ ( 108): bind() failed, screen capture thread dying
217E/ ( 108): 176 errno 98 Address already in use
218E/ ( 108): failed at setting up server trying again
219D/libEGL ( 108): loaded /system/lib/egl/libEGL_tegra.so
220E/ ( 108): file /data/data/com.nvidia.NvCPLSvc/files/driverlist.txt: not found!
221I/ ( 108): Attempting to load EGL implementation /system/lib//egl/libEGL_tegra_impl
222I/ ( 108): Loaded EGL implementation /system/lib//egl/libEGL_tegra_impl
223D/NvOsDebugPrintf( 111): NvxLiteH264DecoderInit : Opening TVMR H264 block
224D/NvOsDebugPrintf( 111): NvxLiteH264DecoderInit : Opening TVMR H264 block
225D/libEGL ( 108): loaded /system/lib/egl/libGLESv1_CM_tegra.so
226D/dalvikvm( 109): Trying to load lib libjavacore.so 0x0
227D/libEGL ( 108): loaded /system/lib/egl/libGLESv2_tegra.so
228D/dalvikvm( 109): Added shared lib libjavacore.so 0x0
229D/NvOsDebugPrintf( 108): Library for API 1 exposes function not wrapped: glPointSizePointerOES
230I/ ( 108): Loading GLESv1_CM implementation /system/lib//egl/libGLESv1_CM_tegra_impl
231I/SurfaceFlinger( 108): EGL informations:
232I/SurfaceFlinger( 108): # of configs : 50
233I/SurfaceFlinger( 108): vendor : Android
234I/SurfaceFlinger( 108): version : 1.4 Android META-EGL
235I/SurfaceFlinger( 108): extensions: EGL_KHR_image EGL_KHR_image_base EGL_KHR_image_pixmap EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_fence_sync EGL_KHR_config_attribs EGL_KHR_surfaceless_context EGL_KHR_gl_texture_cubemap_image EGL_KHR_lock_surface EGL_KHR_stream EGL_KHR_stream_fifo EGL_KHR_stream_producer_eglsurface EGL_KHR_stream_consumer_gltexture EGL_KHR_reusable_sync EGL_KHR_create_context EGL_KHR_stream_cross_process_fd EGL_EXT_create_context_robustness EGL_NV_system_time EGL_NV_depth_nonlinear EGL_NV_native_query EGL_NV_post_convert_rounding EGL_NV_3dvision_surface EGL_NV_sync EGL_NV_perfmon EGL_NV_coverage_sample EGL_NV_coverage_sample_resolve EGL_NV_multiview_window EGL_NV_stream_sync EGL_IMG_context_priority EGL_ANDROID_image_native_buffer
236I/SurfaceFlinger( 108): Client API: OpenGL_ES
237I/SurfaceFlinger( 108): EGLSurface: 8-8-8-8, config=0xcaf32c
238I/SurfaceFlinger( 108): OpenGL informations:
239I/SurfaceFlinger( 108): vendor : NVIDIA Corporation
240I/SurfaceFlinger( 108): renderer : NVIDIA AP
241I/SurfaceFlinger( 108): version : OpenGL ES-CM 1.1
242I/SurfaceFlinger( 108): extensions: GL_EXT_bgra GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_s3tc GL_EXT_texture_format_BGRA8888 GL_EXT_unpack_subimage GL_EXT_debug_marker GL_EXT_debug_label GL_NV_texture_npot_2D_mipmap GL_OES_byte_coordinates GL_OES_compressed_ETC1_RGB8_texture GL_OES_compressed_paletted_texture GL_OES_draw_texture GL_OES_extended_matrix_palette GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_fbo_render_mipmap GL_OES_fixed_point GL_OES_framebuffer_object GL_OES_matrix_get GL_OES_matrix_palette GL_OES_point_size_array GL_OES_point_sprite GL_OES_query_matrix GL_OES_read_format GL_OES_rgb8_rgba8 GL_OES_single_precision GL_OES_stencil8 GL_OES_texture_cube_map GL_OES_vertex_half_float
243I/SurfaceFlinger( 108): GL_MAX_TEXTURE_SIZE = 2048
244I/SurfaceFlinger( 108): GL_MAX_VIEWPORT_DIMS = 3839 x 3839
245I/SurfaceFlinger( 108): flags = 00000000
246I/SurfaceFlinger( 108): EventThread ready to run.
247D/dalvikvm( 109): Trying to load lib libnativehelper.so 0x0
248D/dalvikvm( 109): Added shared lib libnativehelper.so 0x0
249D/libEGL ( 308): loaded /system/lib/egl/libEGL_tegra.so
250E/ ( 308): file /data/data/com.nvidia.NvCPLSvc/files/driverlist.txt: not found!
251I/ ( 308): Attempting to load EGL implementation /system/lib//egl/libEGL_tegra_impl
252I/ ( 308): Loaded EGL implementation /system/lib//egl/libEGL_tegra_impl
253D/libEGL ( 308): loaded /system/lib/egl/libGLESv1_CM_tegra.so
254D/libEGL ( 308): loaded /system/lib/egl/libGLESv2_tegra.so
255D/NvOsDebugPrintf( 308): Library for API 1 exposes function not wrapped: glPointSizePointerOES
256I/ ( 308): Loading GLESv1_CM implementation /system/lib//egl/libGLESv1_CM_tegra_impl
257D/NvOsDebugPrintf( 111): pSensorBayerContext->FrameErrorCount = 0x0
258D/NvOsDebugPrintf( 111): FocuserNvc_Open: cannot open focuser driver: /dev/focuser.1 Err: No such file or directory
259D/NvOsDebugPrintf( 111): FocuserNvc_Close: No hImager->pFocuser->pPrivateContext
260E/NvOmxCamera( 111): getCameraSensorSettings: GetSensorModesList fails [0x80001000]
261E/NvOmxCamera( 111): setCameraHWSensor: getCameraSensorSettings failed! [0x80001000]
262E/NvOmxCamera( 111): createCameraObjects: setCameraHWSensor failed! [0x80001000]
263E/NvOmxCamera( 111): NvOmxCamera::createObjects :::: FAIL ::::::::::::::::: [0x80001000]
264I/ethernet( 109): Loading ethernet jni class
265I/AudioPolicyManagerBase( 111): loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
266I/SamplingProfilerIntegration( 109): Profiling disabled.
267E/nvaudio_hw( 111): Failed to set mixer ctl Set I2S Master
268E/nvaudio_hw( 111): Unknown control 'DRC Switch'
269I/ServiceManager( 111): Waiting for service media.nvidia.audio_alsa...
270I/Zygote ( 109): Preloading classes...
271W/Zygote ( 109): Class not found for preloading: android.animation.ValueAnimator$2
272W/Zygote ( 109): Class not found for preloading: android.animation.ValueAnimator$3
273W/Zygote ( 109): Class not found for preloading: android.animation.ValueAnimator$4
274W/Zygote ( 109): Class not found for preloading: android.animation.ValueAnimator$5
275W/Zygote ( 109): Class not found for preloading: android.content.res.Resources$1
276W/Zygote ( 109): Class not found for preloading: android.database.sqlite.SQLiteCompiledSql
277W/Zygote ( 109): Class not found for preloading: android.database.sqlite.SQLiteDatabase$DatabaseReentrantLock
278D/TextLayoutCache( 109): Using debug level = 0 - Debug Enabled = 0
279W/Zygote ( 109): Class not found for preloading: android.media.AudioManager$2
280I/dalvikvm( 109): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
281D/MtpDeviceJNI( 109): register_android_mtp_MtpDevice
282I/dalvikvm( 109): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
283I/dalvikvm( 109): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
284W/Zygote ( 109): Class not found for preloading: android.media.IRemoteControlClientDispatcher
285W/Zygote ( 109): Class not found for preloading: android.media.IRemoteControlClientDispatcher$Stub
286W/Zygote ( 109): Class not found for preloading: android.os.Power
287D/TelephonyManager( 109): No /proc/cmdline exception=java.io.FileNotFoundException: /proc/cmdline: open failed: EACCES (Permission denied)
288D/TelephonyManager( 109): /proc/cmdline=
289W/Zygote ( 109): Class not found for preloading: android.text.TextDirectionHeuristics$CharCount
290W/Zygote ( 109): Class not found for preloading: android.text.method.WordIterator$1
291W/Zygote ( 109): Class not found for preloading: android.view.InputHandler
292W/Zygote ( 109): Class not found for preloading: android.view.InputQueue$FinishedCallback
293I/dalvikvm( 109): threadid=1: recursive native library load attempt (/system/lib/libwebcore.so)
294D/dalvikvm( 109): No JNI_OnLoad found in /system/lib/libchromium_net.so 0x0, skipping init
295W/Zygote ( 109): Class not found for preloading: android.widget.EdgeGlow
296I/ServiceManager( 111): Waiting for service media.nvidia.audio_alsa...
297W/Zygote ( 109): Class not found for preloading: android.widget.TextView$Blink
298W/Zygote ( 109): Class not found for preloading: android.widget.TextView$EasyEditSpanController
299W/Zygote ( 109): Class not found for preloading: android.widget.TextView$InputContentType
300W/Zygote ( 109): Class not found for preloading: android.widget.TextView$InputMethodState
301W/Zygote ( 109): Class not found for preloading: android.widget.TextView$TextAlign
302E/PhonePolicy( 109): Could not preload class for phone policy: com.android.internal.policy.impl.PhoneWindow$ContextMenuCallback
303W/Zygote ( 109): Class not found for preloading: com.android.internal.telephony.Phone$State
304I/System ( 109): Loaded time zone names for in 126ms (124ms in ICU)
305I/System ( 109): Loaded time zone names for en_US in 77ms (74ms in ICU)
306W/Zygote ( 109): Class not found for preloading: org.apache.http.impl.conn.tsccm.RefQueueHandler
307W/Zygote ( 109): Class not found for preloading: org.apache.http.impl.conn.tsccm.RefQueueWorker
308I/Zygote ( 109): ...preloaded 2279 classes in 1532ms.
309I/Zygote ( 109): Preloading resources...
310W/Zygote ( 109): Preloaded drawable resource #0x10805f7 (res/drawable-xhdpi/toast_frame_holo.9.png) that varies with configuration!!
311W/Zygote ( 109): Preloaded drawable resource #0x1080108 (res/drawable-xhdpi/btn_check_on_pressed_holo_light.png) that varies with configuration!!
312W/Zygote ( 109): Preloaded drawable resource #0x1080107 (res/drawable-xhdpi/btn_check_on_pressed_holo_dark.png) that varies with configuration!!
313W/Zygote ( 109): Preloaded drawable resource #0x1080105 (res/drawable-xhdpi/btn_check_on_holo_light.png) that varies with configuration!!
314W/Zygote ( 109): Preloaded drawable resource #0x1080104 (res/drawable-xhdpi/btn_check_on_holo_dark.png) that varies with configuration!!
315W/Zygote ( 109): Preloaded drawable resource #0x1080102 (res/drawable-xhdpi/btn_check_on_focused_holo_light.png) that varies with configuration!!
316W/Zygote ( 109): Preloaded drawable resource #0x1080101 (res/drawable-xhdpi/btn_check_on_focused_holo_dark.png) that varies with configuration!!
317W/Zygote ( 109): Preloaded drawable resource #0x1080100 (res/drawable-xhdpi/btn_check_on_disabled_holo_light.png) that varies with configuration!!
318W/Zygote ( 109): Preloaded drawable resource #0x10800ff (res/drawable-xhdpi/btn_check_on_disabled_holo_dark.png) that varies with configuration!!
319W/Zygote ( 109): Preloaded drawable resource #0x10800fe (res/drawable-xhdpi/btn_check_on_disabled_focused_holo_light.png) that varies with configuration!!
320W/Zygote ( 109): Preloaded drawable resource #0x10800fd (res/drawable-xhdpi/btn_check_on_disabled_focused_holo_dark.png) that varies with configuration!!
321W/Zygote ( 109): Preloaded drawable resource #0x10800f5 (res/drawable-xhdpi/btn_check_off_pressed_holo_light.png) that varies with configuration!!
322W/Zygote ( 109): Preloaded drawable resource #0x10800f4 (res/drawable-xhdpi/btn_check_off_pressed_holo_dark.png) that varies with configuration!!
323W/Zygote ( 109): Preloaded drawable resource #0x10800f0 (res/drawable-xhdpi/btn_check_off_holo_light.png) that varies with configuration!!
324W/Zygote ( 109): Preloaded drawable resource #0x10800ef (res/drawable-xhdpi/btn_check_off_holo_dark.png) that varies with configuration!!
325W/Zygote ( 109): Preloaded drawable resource #0x10800ed (res/drawable-xhdpi/btn_check_off_focused_holo_light.png) that varies with configuration!!
326W/Zygote ( 109): Preloaded drawable resource #0x10800ec (res/drawable-xhdpi/btn_check_off_focused_holo_dark.png) that varies with configuration!!
327W/Zygote ( 109): Preloaded drawable resource #0x10800eb (res/drawable-xhdpi/btn_check_off_disabled_holo_light.png) that varies with configuration!!
328W/Zygote ( 109): Preloaded drawable resource #0x10800ea (res/drawable-xhdpi/btn_check_off_disabled_holo_dark.png) that varies with configuration!!
329W/Zygote ( 109): Preloaded drawable resource #0x10800e9 (res/drawable-xhdpi/btn_check_off_disabled_focused_holo_light.png) that varies with configuration!!
330W/Zygote ( 109): Preloaded drawable resource #0x10800e8 (res/drawable-xhdpi/btn_check_off_disabled_focused_holo_dark.png) that varies with configuration!!
331W/Zygote ( 109): Preloaded drawable resource #0x10800df (res/drawable/btn_check_holo_light.xml) that varies with configuration!!
332W/Zygote ( 109): Preloaded drawable resource #0x10800de (res/drawable/btn_check_holo_dark.xml) that varies with configuration!!
333W/Zygote ( 109): Preloaded drawable resource #0x1080198 (res/drawable-xhdpi/btn_radio_on_pressed_holo_light.png) that varies with configuration!!
334W/Zygote ( 109): Preloaded drawable resource #0x1080197 (res/drawable-xhdpi/btn_radio_on_pressed_holo_dark.png) that varies with configuration!!
335W/Zygote ( 109): Preloaded drawable resource #0x1080195 (res/drawable-xhdpi/btn_radio_on_holo_light.png) that varies with configuration!!
336W/Zygote ( 109): Preloaded drawable resource #0x1080194 (res/drawable-xhdpi/btn_radio_on_holo_dark.png) that varies with configuration!!
337W/Zygote ( 109): Preloaded drawable resource #0x1080192 (res/drawable-xhdpi/btn_radio_on_focused_holo_light.png) that varies with configuration!!
338W/Zygote ( 109): Preloaded drawable resource #0x1080191 (res/drawable-xhdpi/btn_radio_on_focused_holo_dark.png) that varies with configuration!!
339W/Zygote ( 109): Preloaded drawable resource #0x1080190 (res/drawable-xhdpi/btn_radio_on_disabled_holo_light.png) that varies with configuration!!
340W/Zygote ( 109): Preloaded drawable resource #0x108018f (res/drawable-xhdpi/btn_radio_on_disabled_holo_dark.png) that varies with configuration!!
341W/Zygote ( 109): Preloaded drawable resource #0x108018e (res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_light.png) that varies with configuration!!
342W/Zygote ( 109): Preloaded drawable resource #0x108018d (res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_dark.png) that varies with configuration!!
343W/Zygote ( 109): Preloaded drawable resource #0x108018a (res/drawable-xhdpi/btn_radio_off_pressed_holo_light.png) that varies with configuration!!
344W/Zygote ( 109): Preloaded drawable resource #0x1080189 (res/drawable-xhdpi/btn_radio_off_pressed_holo_dark.png) that varies with configuration!!
345W/Zygote ( 109): Preloaded drawable resource #0x1080187 (res/drawable-xhdpi/btn_radio_off_holo_light.png) that varies with configuration!!
346W/Zygote ( 109): Preloaded drawable resource #0x1080186 (res/drawable-xhdpi/btn_radio_off_holo_dark.png) that varies with configuration!!
347W/Zygote ( 109): Preloaded drawable resource #0x1080184 (res/drawable-xhdpi/btn_radio_off_focused_holo_light.png) that varies with configuration!!
348W/Zygote ( 109): Preloaded drawable resource #0x1080183 (res/drawable-xhdpi/btn_radio_off_focused_holo_dark.png) that varies with configuration!!
349W/Zygote ( 109): Preloaded drawable resource #0x1080182 (res/drawable-xhdpi/btn_radio_off_disabled_holo_light.png) that varies with configuration!!
350W/Zygote ( 109): Preloaded drawable resource #0x1080181 (res/drawable-xhdpi/btn_radio_off_disabled_holo_dark.png) that varies with configuration!!
351W/Zygote ( 109): Preloaded drawable resource #0x1080180 (res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_light.png) that varies with configuration!!
352W/Zygote ( 109): Preloaded drawable resource #0x108017f (res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_dark.png) that varies with configuration!!
353W/Zygote ( 109): Preloaded drawable resource #0x108012b (res/drawable-xhdpi/btn_default_pressed_holo_light.9.png) that varies with configuration!!
354W/Zygote ( 109): Preloaded drawable resource #0x108012a (res/drawable-xhdpi/btn_default_pressed_holo_dark.9.png) that varies with configuration!!
355W/Zygote ( 109): Preloaded drawable resource #0x1080127 (res/drawable-xhdpi/btn_default_normal_holo_light.9.png) that varies with configuration!!
356W/Zygote ( 109): Preloaded drawable resource #0x1080126 (res/drawable-xhdpi/btn_default_normal_holo_dark.9.png) that varies with configuration!!
357W/Zygote ( 109): Preloaded drawable resource #0x108011f (res/drawable-xhdpi/btn_default_focused_holo_light.9.png) that varies with configuration!!
358W/Zygote ( 109): Preloaded drawable resource #0x108011e (res/drawable-xhdpi/btn_default_focused_holo_dark.9.png) that varies with configuration!!
359W/Zygote ( 109): Preloaded drawable resource #0x108011c (res/drawable-xhdpi/btn_default_disabled_holo_light.9.png) that varies with configuration!!
360W/Zygote ( 109): Preloaded drawable resource #0x108011b (res/drawable-xhdpi/btn_default_disabled_holo_dark.9.png) that varies with configuration!!
361W/Zygote ( 109): Preloaded drawable resource #0x1080119 (res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png) that varies with configuration!!
362W/Zygote ( 109): Preloaded drawable resource #0x1080118 (res/drawable-xhdpi/btn_default_disabled_focused_holo_dark.9.png) that varies with configuration!!
363W/Zygote ( 109): Preloaded drawable resource #0x1080120 (res/drawable/btn_default_holo_dark.xml) that varies with configuration!!
364W/Zygote ( 109): Preloaded drawable resource #0x1080121 (res/drawable/btn_default_holo_light.xml) that varies with configuration!!
365W/Zygote ( 109): Preloaded drawable resource #0x10801d4 (res/drawable-xhdpi/btn_star_off_normal_holo_light.png) that varies with configuration!!
366W/Zygote ( 109): Preloaded drawable resource #0x10801de (res/drawable-xhdpi/btn_star_on_normal_holo_light.png) that varies with configuration!!
367W/Zygote ( 109): Preloaded drawable resource #0x10801da (res/drawable-xhdpi/btn_star_on_disabled_holo_light.png) that varies with configuration!!
368W/Zygote ( 109): Preloaded drawable resource #0x10801d0 (res/drawable-xhdpi/btn_star_off_disabled_holo_light.png) that varies with configuration!!
369W/Zygote ( 109): Preloaded drawable resource #0x10801e0 (res/drawable-xhdpi/btn_star_on_pressed_holo_light.png) that varies with configuration!!
370W/Zygote ( 109): Preloaded drawable resource #0x10801d6 (res/drawable-xhdpi/btn_star_off_pressed_holo_light.png) that varies with configuration!!
371W/Zygote ( 109): Preloaded drawable resource #0x10801dc (res/drawable-xhdpi/btn_star_on_focused_holo_light.png) that varies with configuration!!
372W/Zygote ( 109): Preloaded drawable resource #0x10801d2 (res/drawable-xhdpi/btn_star_off_focused_holo_light.png) that varies with configuration!!
373W/Zygote ( 109): Preloaded drawable resource #0x10801d8 (res/drawable-xhdpi/btn_star_on_disabled_focused_holo_light.png) that varies with configuration!!
374W/Zygote ( 109): Preloaded drawable resource #0x10801ce (res/drawable-xhdpi/btn_star_off_disabled_focused_holo_light.png) that varies with configuration!!
375W/Zygote ( 109): Preloaded drawable resource #0x10801cb (res/drawable/btn_star_holo_light.xml) that varies with configuration!!
376W/Zygote ( 109): Preloaded drawable resource #0x10801d3 (res/drawable-xhdpi/btn_star_off_normal_holo_dark.png) that varies with configuration!!
377W/Zygote ( 109): Preloaded drawable resource #0x10801dd (res/drawable-xhdpi/btn_star_on_normal_holo_dark.png) that varies with configuration!!
378W/Zygote ( 109): Preloaded drawable resource #0x10801d9 (res/drawable-xhdpi/btn_star_on_disabled_holo_dark.png) that varies with configuration!!
379W/Zygote ( 109): Preloaded drawable resource #0x10801cf (res/drawable-xhdpi/btn_star_off_disabled_holo_dark.png) that varies with configuration!!
380W/Zygote ( 109): Preloaded drawable resource #0x10801df (res/drawable-xhdpi/btn_star_on_pressed_holo_dark.png) that varies with configuration!!
381W/Zygote ( 109): Preloaded drawable resource #0x10801d5 (res/drawable-xhdpi/btn_star_off_pressed_holo_dark.png) that varies with configuration!!
382W/Zygote ( 109): Preloaded drawable resource #0x10801db (res/drawable-xhdpi/btn_star_on_focused_holo_dark.png) that varies with configuration!!
383W/Zygote ( 109): Preloaded drawable resource #0x10801d1 (res/drawable-xhdpi/btn_star_off_focused_holo_dark.png) that varies with configuration!!
384W/Zygote ( 109): Preloaded drawable resource #0x10801d7 (res/drawable-xhdpi/btn_star_on_disabled_focused_holo_dark.png) that varies with configuration!!
385W/Zygote ( 109): Preloaded drawable resource #0x10801cd (res/drawable-xhdpi/btn_star_off_disabled_focused_holo_dark.png) that varies with configuration!!
386W/Zygote ( 109): Preloaded drawable resource #0x10801ca (res/drawable/btn_star_holo_dark.xml) that varies with configuration!!
387W/Zygote ( 109): Preloaded drawable resource #0x10801fa (res/drawable-xhdpi/btn_toggle_on_pressed_holo_light.9.png) that varies with configuration!!
388W/Zygote ( 109): Preloaded drawable resource #0x10801f9 (res/drawable-xhdpi/btn_toggle_on_pressed_holo_dark.9.png) that varies with configuration!!
389W/Zygote ( 109): Preloaded drawable resource #0x10801f8 (res/drawable-xhdpi/btn_toggle_on_normal_holo_light.9.png) that varies with configuration!!
390W/Zygote ( 109): Preloaded drawable resource #0x10801f7 (res/drawable-xhdpi/btn_toggle_on_normal_holo_dark.9.png) that varies with configuration!!
391W/Zygote ( 109): Preloaded drawable resource #0x10801f6 (res/drawable-xhdpi/btn_toggle_on_focused_holo_light.9.png) that varies with configuration!!
392W/Zygote ( 109): Preloaded drawable resource #0x10801f5 (res/drawable-xhdpi/btn_toggle_on_focused_holo_dark.9.png) that varies with configuration!!
393W/Zygote ( 109): Preloaded drawable resource #0x10801f4 (res/drawable-xhdpi/btn_toggle_on_disabled_holo_light.9.png) that varies with configuration!!
394W/Zygote ( 109): Preloaded drawable resource #0x10801f3 (res/drawable-xhdpi/btn_toggle_on_disabled_holo_dark.9.png) that varies with configuration!!
395W/Zygote ( 109): Preloaded drawable resource #0x10801f2 (res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_light.9.png) that varies with configuration!!
396W/Zygote ( 109): Preloaded drawable resource #0x10801f1 (res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_dark.9.png) that varies with configuration!!
397I/ServiceManager( 111): Waiting for service media.nvidia.audio_alsa...
398W/Zygote ( 109): Preloaded drawable resource #0x10801ef (res/drawable-xhdpi/btn_toggle_off_pressed_holo_light.9.png) that varies with configuration!!
399W/Zygote ( 109): Preloaded drawable resource #0x10801ee (res/drawable-xhdpi/btn_toggle_off_pressed_holo_dark.9.png) that varies with configuration!!
400W/Zygote ( 109): Preloaded drawable resource #0x10801ed (res/drawable-xhdpi/btn_toggle_off_normal_holo_light.9.png) that varies with configuration!!
401W/Zygote ( 109): Preloaded drawable resource #0x10801ec (res/drawable-xhdpi/btn_toggle_off_normal_holo_dark.9.png) that varies with configuration!!
402W/Zygote ( 109): Preloaded drawable resource #0x10801eb (res/drawable-xhdpi/btn_toggle_off_focused_holo_light.9.png) that varies with configuration!!
403W/Zygote ( 109): Preloaded drawable resource #0x10801ea (res/drawable-xhdpi/btn_toggle_off_focused_holo_dark.9.png) that varies with configuration!!
404W/Zygote ( 109): Preloaded drawable resource #0x10801e9 (res/drawable-xhdpi/btn_toggle_off_disabled_holo_light.9.png) that varies with configuration!!
405W/Zygote ( 109): Preloaded drawable resource #0x10801e8 (res/drawable-xhdpi/btn_toggle_off_disabled_holo_dark.9.png) that varies with configuration!!
406W/Zygote ( 109): Preloaded drawable resource #0x10801e7 (res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_light.9.png) that varies with configuration!!
407W/Zygote ( 109): Preloaded drawable resource #0x10801e6 (res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_dark.9.png) that varies with configuration!!
408W/Zygote ( 109): Preloaded drawable resource #0x10801e4 (res/drawable/btn_toggle_holo_light.xml) that varies with configuration!!
409W/Zygote ( 109): Preloaded drawable resource #0x10801e3 (res/drawable/btn_toggle_holo_dark.xml) that varies with configuration!!
410W/Zygote ( 109): Preloaded drawable resource #0x1080258 (res/drawable/edit_text_holo_light.xml) that varies with configuration!!
411W/Zygote ( 109): Preloaded drawable resource #0x1080257 (res/drawable/edit_text_holo_dark.xml) that varies with configuration!!
412W/Zygote ( 109): Preloaded drawable resource #0x10805be (res/drawable-xhdpi/text_select_handle_left.png) that varies with configuration!!
413W/Zygote ( 109): Preloaded drawable resource #0x10805c0 (res/drawable-xhdpi/text_select_handle_right.png) that varies with configuration!!
414W/Zygote ( 109): Preloaded drawable resource #0x10805bb (res/drawable-xhdpi/text_edit_paste_window.9.png) that varies with configuration!!
415W/Zygote ( 109): Preloaded drawable resource #0x108026e (res/drawable-xhdpi/expander_close_holo_dark.9.png) that varies with configuration!!
416W/Zygote ( 109): Preloaded drawable resource #0x108026f (res/drawable-xhdpi/expander_close_holo_light.9.png) that varies with configuration!!
417W/Zygote ( 109): Preloaded drawable resource #0x1080271 (res/drawable/expander_group_holo_dark.xml) that varies with configuration!!
418W/Zygote ( 109): Preloaded drawable resource #0x1080272 (res/drawable/expander_group_holo_light.xml) that varies with configuration!!
419W/Zygote ( 109): Preloaded drawable resource #0x10803e4 (res/drawable/list_selector_holo_dark.xml) that varies with configuration!!
420W/Zygote ( 109): Preloaded drawable resource #0x10803e5 (res/drawable/list_selector_holo_light.xml) that varies with configuration!!
421W/Zygote ( 109): Preloaded drawable resource #0x10803c4 (res/drawable-xhdpi/list_section_divider_holo_light.9.png) that varies with configuration!!
422W/Zygote ( 109): Preloaded drawable resource #0x10803c3 (res/drawable-xhdpi/list_section_divider_holo_dark.9.png) that varies with configuration!!
423W/Zygote ( 109): Preloaded drawable resource #0x10803f6 (res/drawable-xhdpi/menu_hardkey_panel_holo_dark.9.png) that varies with configuration!!
424W/Zygote ( 109): Preloaded drawable resource #0x10803f7 (res/drawable-xhdpi/menu_hardkey_panel_holo_light.9.png) that varies with configuration!!
425W/Zygote ( 109): Preloaded drawable resource #0x10803fa (res/drawable-xhdpi/menu_submenu_background.9.png) that varies with configuration!!
426W/Zygote ( 109): Preloaded drawable resource #0x10803f5 (res/drawable-xhdpi/menu_dropdown_panel_holo_light.9.png) that varies with configuration!!
427W/Zygote ( 109): Preloaded drawable resource #0x10803f4 (res/drawable-xhdpi/menu_dropdown_panel_holo_dark.9.png) that varies with configuration!!
428W/Zygote ( 109): Preloaded drawable resource #0x108042e (res/drawable-xhdpi/overscroll_edge.png) that varies with configuration!!
429W/Zygote ( 109): Preloaded drawable resource #0x108042f (res/drawable-xhdpi/overscroll_glow.png) that varies with configuration!!
430W/Zygote ( 109): Preloaded drawable resource #0x108046a (res/drawable-xhdpi/popup_inline_error_above_holo_dark.9.png) that varies with configuration!!
431W/Zygote ( 109): Preloaded drawable resource #0x108046b (res/drawable-xhdpi/popup_inline_error_above_holo_light.9.png) that varies with configuration!!
432W/Zygote ( 109): Preloaded drawable resource #0x108046c (res/drawable-xhdpi/popup_inline_error_holo_dark.9.png) that varies with configuration!!
433W/Zygote ( 109): Preloaded drawable resource #0x108046d (res/drawable-xhdpi/popup_inline_error_holo_light.9.png) that varies with configuration!!
434W/Zygote ( 109): Preloaded drawable resource #0x10804eb (res/drawable-xhdpi/spinner_16_outer_holo.png) that varies with configuration!!
435W/Zygote ( 109): Preloaded drawable resource #0x10804ea (res/drawable-xhdpi/spinner_16_inner_holo.png) that varies with configuration!!
436W/Zygote ( 109): Preloaded drawable resource #0x10804ef (res/drawable-xhdpi/spinner_48_outer_holo.png) that varies with configuration!!
437W/Zygote ( 109): Preloaded drawable resource #0x10804ee (res/drawable-xhdpi/spinner_48_inner_holo.png) that varies with configuration!!
438W/Zygote ( 109): Preloaded drawable resource #0x10804f1 (res/drawable-xhdpi/spinner_76_outer_holo.png) that varies with configuration!!
439W/Zygote ( 109): Preloaded drawable resource #0x10804f0 (res/drawable-xhdpi/spinner_76_inner_holo.png) that varies with configuration!!
440W/Zygote ( 109): Preloaded drawable resource #0x1080471 (res/drawable-xhdpi/progress_bg_holo_dark.9.png) that varies with configuration!!
441W/Zygote ( 109): Preloaded drawable resource #0x1080472 (res/drawable-xhdpi/progress_bg_holo_light.9.png) that varies with configuration!!
442W/Zygote ( 109): Preloaded drawable resource #0x1080473 (res/drawable/progress_horizontal_holo_dark.xml) that varies with configuration!!
443W/Zygote ( 109): Preloaded drawable resource #0x1080474 (res/drawable/progress_horizontal_holo_light.xml) that varies with configuration!!
444W/Zygote ( 109): Preloaded drawable resource #0x1080475 (res/drawable/progress_indeterminate_horizontal_holo.xml) that varies with configuration!!
445W/Zygote ( 109): Preloaded drawable resource #0x1080477 (res/drawable/progress_large_holo.xml) that varies with configuration!!
446W/Zygote ( 109): Preloaded drawable resource #0x108047a (res/drawable/progress_medium_holo.xml) that varies with configuration!!
447W/Zygote ( 109): Preloaded drawable resource #0x108047c (res/drawable-xhdpi/progress_primary_holo_dark.9.png) that varies with configuration!!
448W/Zygote ( 109): Preloaded drawable resource #0x108047d (res/drawable-xhdpi/progress_primary_holo_light.9.png) that varies with configuration!!
449W/Zygote ( 109): Preloaded drawable resource #0x108047e (res/drawable-xhdpi/progress_secondary_holo_dark.9.png) that varies with configuration!!
450W/Zygote ( 109): Preloaded drawable resource #0x108047f (res/drawable-xhdpi/progress_secondary_holo_light.9.png) that varies with configuration!!
451W/Zygote ( 109): Preloaded drawable resource #0x1080481 (res/drawable/progress_small_holo.xml) that varies with configuration!!
452W/Zygote ( 109): Preloaded drawable resource #0x10804d8 (res/drawable/scrubber_progress_horizontal_holo_dark.xml) that varies with configuration!!
453W/Zygote ( 109): Preloaded drawable resource #0x10804d9 (res/drawable/scrubber_progress_horizontal_holo_light.xml) that varies with configuration!!
454W/Zygote ( 109): Preloaded drawable resource #0x10804ce (res/drawable-xhdpi/scrollbar_handle_holo_dark.9.png) that varies with configuration!!
455W/Zygote ( 109): Preloaded drawable resource #0x10804cf (res/drawable-xhdpi/scrollbar_handle_holo_light.9.png) that varies with configuration!!
456W/Zygote ( 109): Preloaded drawable resource #0x10804fc (res/drawable/spinner_background_holo_dark.xml) that varies with configuration!!
457W/Zygote ( 109): Preloaded drawable resource #0x10804fd (res/drawable/spinner_background_holo_light.xml) that varies with configuration!!
458W/Zygote ( 109): Preloaded drawable resource #0x10804f2 (res/drawable-xhdpi/spinner_ab_default_holo_dark.9.png) that varies with configuration!!
459W/Zygote ( 109): Preloaded drawable resource #0x10804f3 (res/drawable-xhdpi/spinner_ab_default_holo_light.9.png) that varies with configuration!!
460W/Zygote ( 109): Preloaded drawable resource #0x10804f4 (res/drawable-xhdpi/spinner_ab_disabled_holo_dark.9.png) that varies with configuration!!
461W/Zygote ( 109): Preloaded drawable resource #0x10804f5 (res/drawable-xhdpi/spinner_ab_disabled_holo_light.9.png) that varies with configuration!!
462W/Zygote ( 109): Preloaded drawable resource #0x10804f6 (res/drawable-xhdpi/spinner_ab_focused_holo_dark.9.png) that varies with configuration!!
463W/Zygote ( 109): Preloaded drawable resource #0x10804f7 (res/drawable-xhdpi/spinner_ab_focused_holo_light.9.png) that varies with configuration!!
464W/Zygote ( 109): Preloaded drawable resource #0x10804fa (res/drawable-xhdpi/spinner_ab_pressed_holo_dark.9.png) that varies with configuration!!
465W/Zygote ( 109): Preloaded drawable resource #0x10804fb (res/drawable-xhdpi/spinner_ab_pressed_holo_light.9.png) that varies with configuration!!
466W/Zygote ( 109): Preloaded drawable resource #0x10804f8 (res/drawable/spinner_ab_holo_dark.xml) that varies with configuration!!
467W/Zygote ( 109): Preloaded drawable resource #0x10804f9 (res/drawable/spinner_ab_holo_light.xml) that varies with configuration!!
468W/Zygote ( 109): Preloaded drawable resource #0x1080502 (res/drawable-xhdpi/spinner_default_holo_dark.9.png) that varies with configuration!!
469W/Zygote ( 109): Preloaded drawable resource #0x1080503 (res/drawable-xhdpi/spinner_default_holo_light.9.png) that varies with configuration!!
470W/Zygote ( 109): Preloaded drawable resource #0x1080504 (res/drawable-xhdpi/spinner_disabled_holo_dark.9.png) that varies with configuration!!
471W/Zygote ( 109): Preloaded drawable resource #0x1080505 (res/drawable-xhdpi/spinner_disabled_holo_light.9.png) that varies with configuration!!
472W/Zygote ( 109): Preloaded drawable resource #0x1080508 (res/drawable-xhdpi/spinner_focused_holo_dark.9.png) that varies with configuration!!
473W/Zygote ( 109): Preloaded drawable resource #0x1080509 (res/drawable-xhdpi/spinner_focused_holo_light.9.png) that varies with configuration!!
474W/Zygote ( 109): Preloaded drawable resource #0x108050c (res/drawable-xhdpi/spinner_pressed_holo_dark.9.png) that varies with configuration!!
475W/Zygote ( 109): Preloaded drawable resource #0x108050d (res/drawable-xhdpi/spinner_pressed_holo_light.9.png) that varies with configuration!!
476W/Zygote ( 109): Preloaded drawable resource #0x108020d (res/drawable-xhdpi/cab_background_bottom_holo_dark.9.png) that varies with configuration!!
477W/Zygote ( 109): Preloaded drawable resource #0x1080210 (res/drawable-xhdpi/cab_background_top_holo_light.9.png) that varies with configuration!!
478W/Zygote ( 109): Preloaded drawable resource #0x108020e (res/drawable-xhdpi/cab_background_bottom_holo_light.9.png) that varies with configuration!!
479W/Zygote ( 109): Preloaded drawable resource #0x10802b4 (res/drawable-xhdpi/ic_cab_done_holo_dark.png) that varies with configuration!!
480W/Zygote ( 109): Preloaded drawable resource #0x108020f (res/drawable-xhdpi/cab_background_top_holo_dark.9.png) that varies with configuration!!
481W/Zygote ( 109): Preloaded drawable resource #0x10802b5 (res/drawable-xhdpi/ic_cab_done_holo_light.png) that varies with configuration!!
482W/Zygote ( 109): Preloaded drawable resource #0x10800d3 (res/drawable-xhdpi/btn_cab_done_default_holo_dark.9.png) that varies with configuration!!
483W/Zygote ( 109): Preloaded drawable resource #0x10800d6 (res/drawable-xhdpi/btn_cab_done_focused_holo_light.9.png) that varies with configuration!!
484W/Zygote ( 109): Preloaded drawable resource #0x10800d4 (res/drawable-xhdpi/btn_cab_done_default_holo_light.9.png) that varies with configuration!!
485W/Zygote ( 109): Preloaded drawable resource #0x10800d9 (res/drawable-xhdpi/btn_cab_done_pressed_holo_dark.9.png) that varies with configuration!!
486W/Zygote ( 109): Preloaded drawable resource #0x10800d5 (res/drawable-xhdpi/btn_cab_done_focused_holo_dark.9.png) that varies with configuration!!
487W/Zygote ( 109): Preloaded drawable resource #0x10800da (res/drawable-xhdpi/btn_cab_done_pressed_holo_light.9.png) that varies with configuration!!
488W/Zygote ( 109): Preloaded drawable resource #0x10800d8 (res/drawable/btn_cab_done_holo_light.xml) that varies with configuration!!
489W/Zygote ( 109): Preloaded drawable resource #0x10800d7 (res/drawable/btn_cab_done_holo_dark.xml) that varies with configuration!!
490W/Zygote ( 109): Preloaded drawable resource #0x1080038 (res/drawable-xhdpi/ic_menu_close_clear_cancel.png) that varies with configuration!!
491W/Zygote ( 109): Preloaded drawable resource #0x1080326 (res/drawable-xhdpi/ic_menu_copy_holo_dark.png) that varies with configuration!!
492W/Zygote ( 109): Preloaded drawable resource #0x1080327 (res/drawable-xhdpi/ic_menu_copy_holo_light.png) that varies with configuration!!
493W/Zygote ( 109): Preloaded drawable resource #0x1080329 (res/drawable-xhdpi/ic_menu_cut_holo_dark.png) that varies with configuration!!
494W/Zygote ( 109): Preloaded drawable resource #0x108032a (res/drawable-xhdpi/ic_menu_cut_holo_light.png) that varies with configuration!!
495W/Zygote ( 109): Preloaded drawable resource #0x1080045 (res/drawable-xhdpi/ic_menu_more.png) that varies with configuration!!
496W/Zygote ( 109): Preloaded drawable resource #0x108033b (res/drawable/ic_menu_moreoverflow_holo_dark.xml) that varies with configuration!!
497W/Zygote ( 109): Preloaded drawable resource #0x108033c (res/drawable/ic_menu_moreoverflow_holo_light.xml) that varies with configuration!!
498W/Zygote ( 109): Preloaded drawable resource #0x1080341 (res/drawable-xhdpi/ic_menu_paste_holo_dark.png) that varies with configuration!!
499W/Zygote ( 109): Preloaded drawable resource #0x1080342 (res/drawable-xhdpi/ic_menu_paste_holo_light.png) that varies with configuration!!
500W/Zygote ( 109): Preloaded drawable resource #0x1080348 (res/drawable-xhdpi/ic_menu_selectall_holo_light.png) that varies with configuration!!
501W/Zygote ( 109): Preloaded drawable resource #0x1080347 (res/drawable-xhdpi/ic_menu_selectall_holo_dark.png) that varies with configuration!!
502W/Zygote ( 109): Preloaded drawable resource #0x10802b7 (res/drawable/ic_clear.xml) that varies with configuration!!
503W/Zygote ( 109): Preloaded drawable resource #0x10802b8 (res/drawable-xhdpi/ic_clear_disabled.png) that varies with configuration!!
504W/Zygote ( 109): Preloaded drawable resource #0x10802ba (res/drawable-hdpi/ic_clear_normal.png) that varies with configuration!!
505W/Zygote ( 109): Preloaded drawable resource #0x1080356 (res/drawable-xhdpi/ic_search.png) that varies with configuration!!
506W/Zygote ( 109): Preloaded drawable resource #0x10802d1 (res/drawable-xhdpi/ic_go.png) that varies with configuration!!
507W/Zygote ( 109): Preloaded drawable resource #0x108035f (res/drawable-xhdpi/ic_voice_search.png) that varies with configuration!!
508W/Zygote ( 109): Preloaded drawable resource #0x1080221 (res/drawable-xhdpi/dialog_bottom_holo_dark.9.png) that varies with configuration!!
509W/Zygote ( 109): Preloaded drawable resource #0x1080222 (res/drawable-xhdpi/dialog_bottom_holo_light.9.png) that varies with configuration!!
510W/Zygote ( 109): Preloaded drawable resource #0x1080226 (res/drawable-xhdpi/dialog_full_holo_dark.9.png) that varies with configuration!!
511W/Zygote ( 109): Preloaded drawable resource #0x1080227 (res/drawable-xhdpi/dialog_full_holo_light.9.png) that varies with configuration!!
512W/Zygote ( 109): Preloaded drawable resource #0x108022f (res/drawable-xhdpi/dialog_middle_holo_dark.9.png) that varies with configuration!!
513W/Zygote ( 109): Preloaded drawable resource #0x1080230 (res/drawable-xhdpi/dialog_middle_holo_light.9.png) that varies with configuration!!
514W/Zygote ( 109): Preloaded drawable resource #0x1080231 (res/drawable-xhdpi/dialog_top_holo_dark.9.png) that varies with configuration!!
515W/Zygote ( 109): Preloaded drawable resource #0x1080232 (res/drawable-xhdpi/dialog_top_holo_light.9.png) that varies with configuration!!
516W/Zygote ( 109): Preloaded drawable resource #0x10802c3 (res/drawable-xhdpi/ic_dialog_alert_holo_dark.png) that varies with configuration!!
517W/Zygote ( 109): Preloaded drawable resource #0x10802c4 (res/drawable-xhdpi/ic_dialog_alert_holo_light.png) that varies with configuration!!
518W/Zygote ( 109): Preloaded drawable resource #0x10803b9 (res/drawable-xhdpi/list_divider_holo_dark.9.png) that varies with configuration!!
519W/Zygote ( 109): Preloaded drawable resource #0x10803ba (res/drawable-xhdpi/list_divider_holo_light.9.png) that varies with configuration!!
520W/Zygote ( 109): Preloaded drawable resource #0x10803ba (res/drawable-xhdpi/list_divider_holo_light.9.png) that varies with configuration!!
521W/Zygote ( 109): Preloaded drawable resource #0x10802e5 (res/drawable-xhdpi/ic_lockscreen_chevron_left.png) that varies with configuration!!
522W/Zygote ( 109): Preloaded drawable resource #0x10802e6 (res/drawable-xhdpi/ic_lockscreen_chevron_right.png) that varies with configuration!!
523W/Zygote ( 109): Preloaded drawable resource #0x10800bd (res/drawable-xhdpi/ab_transparent_dark_holo.9.png) that varies with configuration!!
524W/Zygote ( 109): Preloaded drawable resource #0x10800bb (res/drawable-xhdpi/ab_stacked_transparent_dark_holo.9.png) that varies with configuration!!
525W/Zygote ( 109): Preloaded drawable resource #0x10800a1 (res/drawable-xhdpi/ab_bottom_transparent_dark_holo.9.png) that varies with configuration!!
526W/Zygote ( 109): Preloaded drawable resource #0x10800b5 (res/drawable-xhdpi/ab_solid_dark_holo.9.png) that varies with configuration!!
527W/Zygote ( 109): Preloaded drawable resource #0x10800b8 (res/drawable-xhdpi/ab_stacked_solid_dark_holo.9.png) that varies with configuration!!
528W/Zygote ( 109): Preloaded drawable resource #0x108009e (res/drawable-xhdpi/ab_bottom_solid_dark_holo.9.png) that varies with configuration!!
529W/Zygote ( 109): Preloaded drawable resource #0x10800be (res/drawable-xhdpi/ab_transparent_light_holo.9.png) that varies with configuration!!
530W/Zygote ( 109): Preloaded drawable resource #0x10800bc (res/drawable-xhdpi/ab_stacked_transparent_light_holo.9.png) that varies with configuration!!
531W/Zygote ( 109): Preloaded drawable resource #0x10800a2 (res/drawable-xhdpi/ab_bottom_transparent_light_holo.9.png) that varies with configuration!!
532W/Zygote ( 109): Preloaded drawable resource #0x10800b6 (res/drawable-xhdpi/ab_solid_light_holo.9.png) that varies with configuration!!
533W/Zygote ( 109): Preloaded drawable resource #0x10800ba (res/drawable-xhdpi/ab_stacked_solid_light_holo.9.png) that varies with configuration!!
534W/Zygote ( 109): Preloaded drawable resource #0x10800a0 (res/drawable-xhdpi/ab_bottom_solid_light_holo.9.png) that varies with configuration!!
535W/Zygote ( 109): Preloaded drawable resource #0x10800b7 (res/drawable-xhdpi/ab_solid_shadow_holo.9.png) that varies with configuration!!
536W/Zygote ( 109): Preloaded drawable resource #0x1080378 (res/drawable/item_background_holo_dark.xml) that varies with configuration!!
537W/Zygote ( 109): Preloaded drawable resource #0x1080379 (res/drawable/item_background_holo_light.xml) that varies with configuration!!
538W/Zygote ( 109): Preloaded drawable resource #0x1080294 (res/drawable-xhdpi/ic_ab_back_holo_dark.png) that varies with configuration!!
539W/Zygote ( 109): Preloaded drawable resource #0x1080295 (res/drawable-xhdpi/ic_ab_back_holo_light.png) that varies with configuration!!
540W/Zygote ( 109): Preloaded drawable resource #0x108027c (res/drawable/fastscroll_thumb_holo.xml) that varies with configuration!!
541W/Zygote ( 109): Preloaded drawable resource #0x108027d (res/drawable-xhdpi/fastscroll_thumb_pressed_holo.png) that varies with configuration!!
542W/Zygote ( 109): Preloaded drawable resource #0x108027b (res/drawable-xhdpi/fastscroll_thumb_default_holo.png) that varies with configuration!!
543W/Zygote ( 109): Preloaded drawable resource #0x1080280 (res/drawable/fastscroll_track_holo_dark.xml) that varies with configuration!!
544W/Zygote ( 109): Preloaded drawable resource #0x1080282 (res/drawable-xhdpi/fastscroll_track_pressed_holo_dark.9.png) that varies with configuration!!
545W/Zygote ( 109): Preloaded drawable resource #0x108027e (res/drawable-xhdpi/fastscroll_track_default_holo_dark.9.png) that varies with configuration!!
546W/Zygote ( 109): Preloaded drawable resource #0x1080277 (res/drawable-xhdpi/fastscroll_label_left_holo_dark.9.png) that varies with configuration!!
547W/Zygote ( 109): Preloaded drawable resource #0x1080279 (res/drawable-xhdpi/fastscroll_label_right_holo_dark.9.png) that varies with configuration!!
548W/Zygote ( 109): Preloaded drawable resource #0x1080281 (res/drawable/fastscroll_track_holo_light.xml) that varies with configuration!!
549W/Zygote ( 109): Preloaded drawable resource #0x1080283 (res/drawable-xhdpi/fastscroll_track_pressed_holo_light.9.png) that varies with configuration!!
550W/Zygote ( 109): Preloaded drawable resource #0x108027f (res/drawable-xhdpi/fastscroll_track_default_holo_light.9.png) that varies with configuration!!
551W/Zygote ( 109): Preloaded drawable resource #0x1080278 (res/drawable-xhdpi/fastscroll_label_left_holo_light.9.png) that varies with configuration!!
552W/Zygote ( 109): Preloaded drawable resource #0x108027a (res/drawable-xhdpi/fastscroll_label_right_holo_light.9.png) that varies with configuration!!
553W/Zygote ( 109): Preloaded drawable resource #0x108025b (res/drawable-xhdpi/editbox_dropdown_background_dark.9.png) that varies with configuration!!
554W/Zygote ( 109): Preloaded drawable resource #0x10805ef (res/drawable/textfield_searchview_holo_dark.xml) that varies with configuration!!
555W/Zygote ( 109): Preloaded drawable resource #0x10805f1 (res/drawable/textfield_searchview_right_holo_dark.xml) that varies with configuration!!
556W/Zygote ( 109): Preloaded drawable resource #0x10805f0 (res/drawable/textfield_searchview_holo_light.xml) that varies with configuration!!
557W/Zygote ( 109): Preloaded drawable resource #0x10805f2 (res/drawable/textfield_searchview_right_holo_light.xml) that varies with configuration!!
558W/Zygote ( 109): Preloaded drawable resource #0x10805ed (res/drawable-xhdpi/textfield_search_selected_holo_dark.9.png) that varies with configuration!!
559W/Zygote ( 109): Preloaded drawable resource #0x10805e1 (res/drawable-xhdpi/textfield_search_default_holo_dark.9.png) that varies with configuration!!
560W/Zygote ( 109): Preloaded drawable resource #0x10805ea (res/drawable-xhdpi/textfield_search_right_selected_holo_dark.9.png) that varies with configuration!!
561W/Zygote ( 109): Preloaded drawable resource #0x10805e8 (res/drawable-xhdpi/textfield_search_right_default_holo_dark.9.png) that varies with configuration!!
562W/Zygote ( 109): Preloaded drawable resource #0x10805ee (res/drawable-xhdpi/textfield_search_selected_holo_light.9.png) that varies with configuration!!
563W/Zygote ( 109): Preloaded drawable resource #0x10805e2 (res/drawable-xhdpi/textfield_search_default_holo_light.9.png) that varies with configuration!!
564W/Zygote ( 109): Preloaded drawable resource #0x10805eb (res/drawable-xhdpi/textfield_search_right_selected_holo_light.9.png) that varies with configuration!!
565W/Zygote ( 109): Preloaded drawable resource #0x10805e9 (res/drawable-xhdpi/textfield_search_right_default_holo_light.9.png) that varies with configuration!!
566W/Zygote ( 109): Preloaded drawable resource #0x10805a5 (res/drawable/tab_indicator_holo.xml) that varies with configuration!!
567W/Zygote ( 109): Preloaded drawable resource #0x10805b6 (res/drawable-xhdpi/tab_unselected_holo.9.png) that varies with configuration!!
568W/Zygote ( 109): Preloaded drawable resource #0x10805b1 (res/drawable-xhdpi/tab_selected_holo.9.png) that varies with configuration!!
569W/Zygote ( 109): Preloaded drawable resource #0x10805b5 (res/drawable-xhdpi/tab_unselected_focused_holo.9.png) that varies with configuration!!
570W/Zygote ( 109): Preloaded drawable resource #0x10805b0 (res/drawable-xhdpi/tab_selected_focused_holo.9.png) that varies with configuration!!
571W/Zygote ( 109): Preloaded drawable resource #0x10805b7 (res/drawable-xhdpi/tab_unselected_pressed_holo.9.png) that varies with configuration!!
572W/Zygote ( 109): Preloaded drawable resource #0x10805b2 (res/drawable-xhdpi/tab_selected_pressed_holo.9.png) that varies with configuration!!
573W/Zygote ( 109): Preloaded drawable resource #0x1080497 (res/drawable/quickcontact_badge_overlay_dark.xml) that varies with configuration!!
574W/Zygote ( 109): Preloaded drawable resource #0x108049b (res/drawable-xhdpi/quickcontact_badge_overlay_normal_dark.9.png) that varies with configuration!!
575W/Zygote ( 109): Preloaded drawable resource #0x108049d (res/drawable-xhdpi/quickcontact_badge_overlay_pressed_dark.9.png) that varies with configuration!!
576W/Zygote ( 109): Preloaded drawable resource #0x108049a (res/drawable/quickcontact_badge_overlay_light.xml) that varies with configuration!!
577W/Zygote ( 109): Preloaded drawable resource #0x108049c (res/drawable-xhdpi/quickcontact_badge_overlay_normal_light.9.png) that varies with configuration!!
578W/Zygote ( 109): Preloaded drawable resource #0x108049e (res/drawable-xhdpi/quickcontact_badge_overlay_pressed_light.9.png) that varies with configuration!!
579I/Zygote ( 109): ...preloaded 278 resources in 1291ms.
580I/Zygote ( 109): ...preloaded 31 resources in 5ms.
581I/dalvikvm( 109): System server process 327 has been created
582I/Zygote ( 109): Accepting command socket connections
583E/BatteryService( 327): acOnlinePath not found
584E/BatteryService( 327): usbOnlinePath not found
585E/BatteryService( 327): batteryStatusPath not found
586E/BatteryService( 327): batteryHealthPath not found
587E/BatteryService( 327): batteryPresentPath not found
588E/BatteryService( 327): batteryCapacityPath not found
589E/BatteryService( 327): batteryVoltagePath not found
590E/BatteryService( 327): batteryTemperaturePath not found
591E/BatteryService( 327): batteryTechnologyPath not found
592I/sysproc ( 327): Entered system_init()
593I/sysproc ( 327): ServiceManager: 0x67076d10
594D/SensorService( 327): nuSensorService starting...
595E/SensorService( 327): couldn't load sensors module (No such file or directory)
596I/sysproc ( 327): System server: starting Android runtime.
597I/sysproc ( 327): System server: starting Android services.
598I/sysproc ( 327): System server: entering thread pool.
599I/SystemServer( 327): Entered the Android system server!
600I/SystemServer( 327): Entropy Mixer
601I/SystemServer( 327): Power Manager
602I/SystemServer( 327): Activity Manager
603I/ActivityManager( 327): Memory class: 128
604I/ServiceManager( 111): Waiting for service media.nvidia.audio_alsa...
605I/SystemServer( 327): Telephony Registry
606I/SystemServer( 327): Scheduling Policy
607I/SystemServer( 327): Package Manager
608W/PackageManager( 327): Permissions library file /system/etc/permissions/com.nvidia.nvsiutilv1.xml cannot be read
609W/PackageManager( 327): Library not found: /system/framework/com.nvidia.nvstereoutils.jar
610W/PackageManager( 327): Library not found: /system/framework/com.android.future.usb.accessory.jar
611W/PackageParser( 327): No actions in intent filter at /system/app/Bluetooth.apk Binary XML file line #159
612I/ServiceManager( 111): Waiting for service media.nvidia.audio_alsa...
613D/PackageManager( 327): No files in app dir /vendor/app
614I/installd( 113): new connection
615I/Installer( 327): connecting...
616I/PackageManager( 327): Time to scan packages: 0.9 seconds
617W/PackageManager( 327): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings
618W/PackageManager( 327): Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.android.settings
619W/PackageManager( 327): Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.android.settings
620W/PackageManager( 327): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone
621W/PackageManager( 327): Unknown permission com.android.smspush.WAPPUSH_MANAGER_BIND in package com.android.phone
622W/PackageManager( 327): Not granting permission android.permission.FORCE_STOP_PACKAGES to package tv.ouya.console (protectionLevel=2 flags=0x18b845)
623W/PackageManager( 327): Unknown permission tv.ouya.oe.installer.permission.CONTROL_PACKAGE_MANAGER in package tv.ouya.console
624W/PackageManager( 327): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45)
625W/PackageManager( 327): Unknown permission com.android.launcher.permission.INSTALL_SHORTCUT in package com.android.browser
626D/AndroidRuntime( 346):
627D/AndroidRuntime( 346): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
628D/AndroidRuntime( 346): CheckJNI is OFF
629D/dalvikvm( 346): Trying to load lib libjavacore.so 0x0
630D/dalvikvm( 346): Added shared lib libjavacore.so 0x0
631D/dalvikvm( 346): Trying to load lib libnativehelper.so 0x0
632D/dalvikvm( 346): Added shared lib libnativehelper.so 0x0
633D/PackageManager( 327): generateServicesMap(android.accounts.AccountAuthenticator): 1 services unchanged
634I/ActivityThread( 327): Pub settings: com.android.providers.settings.SettingsProvider
635I/SystemServer( 327): Account Manager
636I/SystemServer( 327): Content Manager
637I/SystemServer( 327): System Content Providers
638D/SettingsProvider( 327): cache for settings table 'secure' rows=47; fullycached=true
639D/SettingsProvider( 327): cache for settings table 'system' rows=56; fullycached=true
640I/SystemServer( 327): Lights Service
641I/SystemServer( 327): Battery Service
642I/SystemServer( 327): Vibrator Service
643I/libsuspend( 327): Selected early suspend
644D/AlarmManagerService( 327): Kernel timezone updated to 300 minutes west of GMT
645I/SystemServer( 327): Alarm Manager
646I/SystemServer( 327): Init Watchdog
647I/SystemServer( 327): Window Manager
648I/InputManager( 327): Initializing input manager
649W/StatusBarManager( 327): warning: no STATUS_BAR_SERVICE
650I/ethernet( 346): Loading ethernet jni class
651I/InputManager-JNI( 327): Setting pointer speed to 7.
652D/EventHub( 327): No input device configuration file found for device 'gpio-keys'.
653D/PermissionCache( 108): checking android.permission.ACCESS_SURFACE_FLINGER for uid=1000 => granted (380 us)
654I/InputManager( 327): Starting input manager
655I/SystemServer( 327): Bluetooth Service
656I/EventHub( 327): New device: id=1, fd=89, path='/dev/input/event1', name='gpio-keys', classes=0x1, configuration='', keyLayout='/system/usr/keylayout/gpio-keys.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=false
657D/EventHub( 327): No input device configuration file found for device 'Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller'.
658I/EventHub( 327): New device: id=2, fd=91, path='/dev/input/event0', name='Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller', classes=0x80000141, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=false
659E/EventHub( 327): could not get driver version for /dev/input/js0, Invalid argument
660D/BluetoothAdapterStateMachine( 327): PowerOff process message: 5
661I/bluedroid( 327): Starting hciattach daemon
662I/bluedroid( 327): bt_enable: ret: -1, errno: 19
663D/AndroidRuntime( 346): Calling main entry com.android.commands.svc.Svc
664I/SystemServer( 327): Input Method Service
665W/InputMethodManagerService( 327): Couldn't create dir.: /data/system/inputmethod
666D/AndroidRuntime( 346): Shutting down VM
667W/dalvikvm( 346): threadid=1: thread exiting with uncaught exception (group=0x40fcd300)
668E/JavaBinder( 346): Unknown binder error code. 0xfffffff7
669E/ServiceManager( 346): error in getService
670E/ServiceManager( 346): android.os.RemoteException: Unknown binder error code. 0xfffffff7
671E/ServiceManager( 346): at android.os.BinderProxy.transact(Native Method)
672E/ServiceManager( 346): at android.os.ServiceManagerProxy.getService(ServiceManagerNative.java:123)
673E/ServiceManager( 346): at android.os.ServiceManager.getService(ServiceManager.java:55)
674E/ServiceManager( 346): at android.app.ActivityManagerNative$1.create(ActivityManagerNative.java:1708)
675E/ServiceManager( 346): at android.app.ActivityManagerNative$1.create(ActivityManagerNative.java:1706)
676E/ServiceManager( 346): at android.util.Singleton.get(Singleton.java:34)
677E/ServiceManager( 346): at android.app.ActivityManagerNative.getDefault(ActivityManagerNative.java:73)
678E/ServiceManager( 346): at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java:76)
679E/ServiceManager( 346): at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
680E/ServiceManager( 346): at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
681E/ServiceManager( 346): at dalvik.system.NativeStart.main(Native Method)
682I/Process ( 346): Sending signal. PID: 346 SIG: 9
683E/AndroidRuntime( 346): *** FATAL EXCEPTION IN SYSTEM PROCESS: main
684E/AndroidRuntime( 346): java.lang.NullPointerException
685E/AndroidRuntime( 346): at com.android.commands.svc.WifiCommand.run(WifiCommand.java:68)
686E/AndroidRuntime( 346): at com.android.commands.svc.Svc.main(Svc.java:41)
687E/AndroidRuntime( 346): at com.android.internal.os.RuntimeInit.nativeFinishInit(Native Method)
688E/AndroidRuntime( 346): at com.android.internal.os.RuntimeInit.main(RuntimeInit.java:235)
689E/AndroidRuntime( 346): at dalvik.system.NativeStart.main(Native Method)
690E/AndroidRuntime( 346): Error reporting crash
691E/AndroidRuntime( 346): java.lang.NullPointerException
692E/AndroidRuntime( 346): at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java:76)
693E/AndroidRuntime( 346): at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
694E/AndroidRuntime( 346): at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
695E/AndroidRuntime( 346): at dalvik.system.NativeStart.main(Native Method)
696I/SystemServer( 327): Accessibility Manager
697I/SystemServer( 327): Hypervisor Service
698I/ActivityManager( 327): Config changed: {1.0 0mcc0mnc en_US sw540dp w960dp h515dp lrg long land ?uimode ?night -touch -keyb/v/h -nav/h s.2}
699I/SystemServer( 327): Mount Service
700D/MountService( 327): got storage path: /mnt/usbdrive description: USB storage primary: true removable: true emulated: false mtpReserve: 0 allowMassStorage: false maxFileSize: 0
701D/MountService( 327): got storage path: /storage/sdcard0 description: Internal storage primary: false removable: false emulated: true mtpReserve: 100 allowMassStorage: false maxFileSize: 0
702D/MountService( 327): Volume list data: usbdrive /mnt/usbdrive 0 (null)
703I/PackageManager( 327): No secure containers on sdcard
704I/SystemServer( 327): LockSettingsService
705I/SystemServer( 327): Device Policy
706I/SystemServer( 327): Status Bar
707I/SystemServer( 327): Clipboard Service
708I/SystemServer( 327): NetworkManagement Service
709D/MountService( 327): volume state changed for /mnt/usbdrive (null -> removed)
710I/SystemServer( 327): Text Service Manager Service
711W/TextServicesManagerService( 327): no available spell checker services found
712I/SystemServer( 327): NetworkStats Service
713W/PackageManager( 327): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings
714W/PackageManager( 327): Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.android.settings
715W/PackageManager( 327): Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.android.settings
716W/PackageManager( 327): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone
717W/PackageManager( 327): Unknown permission com.android.smspush.WAPPUSH_MANAGER_BIND in package com.android.phone
718I/SystemServer( 327): NetworkPolicy Service
719W/PackageManager( 327): Not granting permission android.permission.FORCE_STOP_PACKAGES to package tv.ouya.console (protectionLevel=2 flags=0x18b845)
720W/PackageManager( 327): Unknown permission tv.ouya.oe.installer.permission.CONTROL_PACKAGE_MANAGER in package tv.ouya.console
721I/SystemServer( 327): Wi-Fi P2pService
722W/PackageManager( 327): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45)
723W/PackageManager( 327): Unknown permission com.android.launcher.permission.INSTALL_SHORTCUT in package com.android.browser
724I/InputReader( 327): Device added: id=-1, name='Virtual', sources=0x00000301
725I/InputReader( 327): Device added: id=2, name='Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller', sources=0x01000511
726I/InputReader( 327): Device added: id=1, name='gpio-keys', sources=0x00000101
727I/InputReader( 327): Reconfiguring input devices. changes=0x00000005
728I/bluedroid( 327): bt_enable: ret: -1, errno: 19
729I/SystemServer( 327): Wi-Fi Service
730I/ethernet( 327): ==>android_net_ethernet_initEthernetNative
731E/ethernet( 327): android_net_ethernet_initEthernetNative exited with success
732I/ethernet( 327): User ask for device name on 0, list:6300D5E0, total:2
733I/ethernet( 327): Found :eth0
734I/ethernet( 327): User ask for device name on 1, list:6300D5E0, total:2
735I/ethernet( 327): Found :dummy0
736I/SystemServer( 327): Connectivity Service
737I/EthernetStateTracker( 327): Starts...
738I/EthernetStateTracker( 327): Success
739V/EthernetService( 327): Ethernet dev enabled 2
740I/EthernetService( 327): total found 2 net devices
741I/EthernetService( 327): device 0 name eth0
742I/EthernetService( 327): device 1 name dummy0
743I/EthernetService( 327): setEthState from 0 to 2
744I/EthernetService( 327): $$ EthernetService uninited,disable setEthState() call resetInterface()
745I/EthernetService( 327): $$ resetInterface() will be called in reconnect()
746V/EthernetService( 327): Trigger the ethernet monitor
747V/EthernetStateTracker( 327): start polling
748I/EthernetStateTracker( 327): start to monitor the Ethernet devices
749I/EthernetManager( 327): Init Ethernet Manager
750D/NetUtils( 327): android_net_utils_resetConnections in env=0x633cb7e0 clazz=0x13a00001 iface=dummy0 mask=0x3
751I/EthernetStateTracker( 327): $$ DISABLE startMonitoring call resetInterface()
752I/EthernetService( 327): setEthState from 2 to 2
753I/EthernetStateTracker( 327): $$reconnect call resetInterface()
754I/EthernetStateTracker( 327): reset device dummy0
755I/bluedroid( 327): bt_enable: ret: -1, errno: 19
756I/bluedroid( 327): bt_enable: ret: -1, errno: 19
757I/bluedroid( 327): bt_enable: ret: -1, errno: 19
758E/brcm_patchram_plus( 386): Done setting line discpline
759I/bluedroid( 327): bt_enable: ret: -1, errno: 114
760W/bluedroid( 327): Bluetoothd already started, unexpectedly!
761I/bluedroid( 327): Starting bluetoothd deamon
762E/BluetoothEventLoop.cpp( 327): get_adapter_path: D-Bus error: org.freedesktop.DBus.Error.ServiceUnknown (The name org.bluez was not provided by any .service files)
763E/BluetoothEventLoop.cpp( 327): get_adapter_path: D-Bus error: org.freedesktop.DBus.Error.ServiceUnknown (The name org.bluez was not provided by any .service files)
764E/BluetoothEventLoop.cpp( 327): get_adapter_path: D-Bus error: org.freedesktop.DBus.Error.ServiceUnknown (The name org.bluez was not provided by any .service files)
765E/BluetoothEventLoop.cpp( 327): get_adapter_path: D-Bus error: org.bluez.Error.NoSuchAdapter (No such adapter)
766E/BluetoothEventLoop.cpp( 327): failure setting up Event Loop!
767E/nvaudio_hw( 111): Unknown control 'Speaker Switch'
768I/NuCachedSource2( 111): ERROR_END_OF_STREAM
769E/nvaudio_hw( 111): Failed to get mixer ctl AVP alsa device select
770E/nvaudio_hw( 111): Failed to setup avp render path
771D/NvOsDebugPrintf( 111): NVMEM_IOC_PARAM failed: Invalid argument
772I/AudioFlinger( 111): loadHwModule() Loaded primary audio interface from Nvidia Audio HW HAL (audio) handle 1
773E/nvaudio_hw( 111): Unknown control 'Speaker Switch'
774I/AudioMixer( 111): found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
775I/AudioFlinger( 111): Using module 1 has the primary audio interface
776I/NuCachedSource2( 111): ERROR_END_OF_STREAM
777E/nvaudio_hw( 111): Format 1000000 not supported
778I/AudioFlinger( 111): loadHwModule() Loaded a2dp audio interface from A2DP Audio HW HAL (audio) handle 5
779I/AudioFlinger( 111): loadHwModule() Loaded usb audio interface from USB audio HW HAL (audio) handle 6
780I/AudioPolicyService( 111): Loaded audio policy from LEGACY Audio Policy HAL (audio_policy)
781D/BluetoothEventLoop( 327): Property Changed: Pairable : false
782D/BluetoothEventLoop( 327): Property Changed: Powered : false
783D/BluetoothEventLoop( 327): Property Changed: UUIDs : 4
784E/BluetoothService.cpp( 327): setBluetoothTetheringNative true
785D/BluetoothAdapterStateMachine( 327): WarmUp process message: 1
786D/BluetoothAdapterStateMachine( 327): WarmUp process message: 54
787D/BluetoothEventLoop( 327): Property Changed: UUIDs : 5
788D/BluetoothEventLoop( 327): Property Changed: UUIDs : 6
789D/BluetoothEventLoop( 327): Property Changed: UUIDs : 7
790D/BluetoothAdapterStateMachine( 327): WarmUp process message: 51
791D/BluetoothAdapterStateMachine( 327): HotOff process message: 1
792D/BluetoothAdapterStateMachine( 327): Bluetooth state 10 -> 11
793D/BluetoothEventLoop( 327): Property Changed: Powered : true
794D/BluetoothEventLoop( 327): Property Changed: Pairable : true
795D/BluetoothAdapterStateMachine( 327): Switching process message: 54
796D/BluetoothEventLoop( 327): Property Changed: Class : 1703936
797D/BluetoothEventLoop( 327): Property Changed: Pairable : true
798D/BluetoothEventLoop( 327): Property Changed: Discoverable : false
799D/BluetoothAdapterStateMachine( 327): Switching process message: 53
800D/BluetoothAdapterStateMachine( 327): Bluetooth state 11 -> 12
801D/ethernet( 327): eth0: flags = 0x1002, IFF_LOWER_DOWN
802E/EthernetStateTracker( 327): Could not stop DHCP
803I/EthernetStateTracker( 327): Force the connection disconnected before configuration
804D/EthernetStateTracker( 327): setEthState state=false->false event=4
805I/EthernetStateTracker( 327): trigger dhcp for device dummy0
806D/EthernetStateTracker( 327): DhcpHandler: DHCP request started
807D/EthernetStateTracker( 327): setEthState state=false->false event=0
808I/EthernetStateTracker( 327): report interface is up for dummy0
809I/EthernetStateTracker( 327): Old status stackConnected=false HWConnected=false
810I/EthernetStateTracker( 327): [EVENT: Ether is up]
811D/EthernetService( 327): EthernetNative.isEthDeviceAdded(eth0) return false
812D/EthernetStateTracker( 327): setEthState state=false->false event=5
813I/EthernetStateTracker( 327): New status, stackConnected=false HWConnected=true
814D/WifiWatchdogStateMachine( 327): Disabling poor network avoidance for wi-fi only device
815D/SoftapController( 106): Softap fwReload - Ok
816D/CommandListener( 106): Setting iface cfg
817D/CommandListener( 106): Trying to bring down wlan0
818I/WifiService( 327): WifiService starting up with Wi-Fi enabled
819D/WifiService( 327): setWifiEnabled: true pid=327, uid=1000
820I/SystemServer( 327): Network Service Discovery Service
821D/NsdService( 327): Network service discovery enabled true
822D/PackageManager( 327): generateServicesMap(android.accounts.AccountAuthenticator): 1 services unchanged
823I/SystemServer( 327): Throttle Service
824I/SystemServer( 327): UpdateLock Service
825I/SystemServer( 327): NotificationTracker Service
826D/PackageManager( 327): generateServicesMap(android.content.SyncAdapter): 4 services unchanged
827I/SystemServer( 327): Notification Manager
828I/SystemServer( 327): Device Storage Monitor
829I/SystemServer( 327): Location Manager
830I/SystemServer( 327): Country Detector
831I/SystemServer( 327): Search Service
832I/SystemServer( 327): DropBox Service
833I/SystemServer( 327): Wallpaper Service
834I/SystemServer( 327): Audio Service
835I/SystemServer( 327): Dock Observer
836W/DockObserver( 327): This kernel does not have dock station support
837I/SystemServer( 327): Wired Accessory Observer
838I/SystemServer( 327): USB Service
839I/SystemServer( 327): Serial Service
840I/SystemServer( 327): UI Mode Manager Service
841I/SystemServer( 327): Backup Service
842V/BackupManagerService( 327): Initializing package tracking
843V/BackupManagerService( 327): No ancestral data
844V/BackupManagerService( 327): addPackageParticipantsLocked: all
845I/BackupManagerService( 327): New app android never backed up; scheduling
846D/BackupManagerService( 327): Now staging backup of android
847I/BackupManagerService( 327): New app com.android.browser never backed up; scheduling
848D/BackupManagerService( 327): Now staging backup of com.android.browser
849I/BackupManagerService( 327): New app com.android.providers.settings never backed up; scheduling
850D/BackupManagerService( 327): Now staging backup of com.android.providers.settings
851I/BackupManagerService( 327): New app com.android.providers.userdictionary never backed up; scheduling
852D/BackupManagerService( 327): Now staging backup of com.android.providers.userdictionary
853I/BackupManagerService( 327): New app com.android.sharedstoragebackup never backed up; scheduling
854D/BackupManagerService( 327): Now staging backup of com.android.sharedstoragebackup
855V/BackupManagerService( 327): Registering transport android/com.android.internal.backup.LocalTransport = com.android.internal.backup.LocalTransport@41cdae50
856V/BackupManagerService( 327): Starting with transport android/com.android.internal.backup.LocalTransport
857V/BackupManagerService( 327): Google transport not present
858I/BackupManagerService( 327): Found stale backup journal, scheduling
859I/BackupManagerService( 327): android
860I/BackupManagerService( 327): com.android.browser
861I/BackupManagerService( 327): com.android.providers.settings
862I/BackupManagerService( 327): com.android.providers.userdictionary
863I/BackupManagerService( 327): com.android.sharedstoragebackup
864I/BackupManagerService( 327): Backup enabled => false
865I/BackupManagerService( 327): Opting out of backup
866I/SystemServer( 327): AppWidget Service
867I/SystemServer( 327): Recognition Service
868I/SystemServer( 327): DiskStats Service
869I/SystemServer( 327): SamplingProfiler Service
870I/SystemServer( 327): NetworkTimeUpdateService
871I/SystemServer( 327): CommonTimeManagementService
872I/SystemServer( 327): CertBlacklister
873I/WindowManager( 327): SAFE MODE not enabled
874D/dalvikvm( 327): JIT started for system_server
875D/PowerManagerService( 327): system ready!
876I/Zygote ( 327): Process: zygote socket opened
877I/ActivityManager( 327): System now ready
878I/SystemServer( 327): Making services ready
879D/SystemServer( 327): Starting service: Intent { cmp=com.android.systemui/.SystemUIService }
880I/ActivityManager( 327): Start proc com.android.systemui for service com.android.systemui/.SystemUIService: pid=436 uid=10024 gids={1028, 1015, 1023, 3002, 3001}
881D/NetworkManagementService( 327): enabling bandwidth control
882E/BandwidthController( 106): runIptablesCmd(): failed /system/bin/iptables ! -i lo+ -I bw_INPUT -m quota2 ! --quota 2097152 --name globalAlert res=256
883E/BandwidthController( 106): runIptablesCmd(): failed /system/bin/ip6tables ! -i lo+ -I bw_INPUT -m quota2 ! --quota 2097152 --name globalAlert res=256
884E/BandwidthController( 106): runIptablesCmd(): failed /system/bin/iptables ! -o lo+ -I bw_OUTPUT -m quota2 ! --quota 2097152 --name globalAlert res=256
885E/BandwidthController( 106): runIptablesCmd(): failed /system/bin/ip6tables ! -o lo+ -I bw_OUTPUT -m quota2 ! --quota 2097152 --name globalAlert res=256
886W/NetworkStats( 327): problem registering for global alert: java.lang.IllegalStateException: command '7 bandwidth setglobalalert 2097152' failed with '400 7 Bandwidth command failed'
887I/ActivityManager( 327): Config changed: {1.0 0mcc0mnc en_US sw540dp w960dp h515dp lrg long land television -touch -keyb/v/h -nav/h s.3}
888W/RecognitionManagerService( 327): no available voice recognition services found
889I/ActivityManager( 327): Start proc tv.ouya.console.wallpaper for service tv.ouya.console.wallpaper/.OuyaWallpaperService: pid=491 uid=10018 gids={1015, 1023, 1028}
890W/InputMethodManagerService( 327): Ignoring setImeWindowStatus of uid 1000 token: null
891I/ActivityManager( 327): Start proc tv.ouya.console.ime.keyboard for service tv.ouya.console.ime.keyboard/.OUYAKeyboard: pid=503 uid=10015 gids={1028}
892I/wpa_supplicant( 476): rfkill: Cannot open RFKILL control device
893I/CommonTimeManagementService( 327): No common time service detected on this platform. Common time services will be unavailable.
894I/SystemServer( 327): Successfully set property
895I/InputReader( 327): Reconfiguring input devices. changes=0x00000020
896I/LocationManagerService( 327): whitelist: []
897I/LocationManagerService( 327): blacklist: []
898I/InputReader( 327): Reconfiguring input devices. changes=0x00000010
899I/NvCpuClient( 327): Successfully bound to service
900D/PermissionCache( 119): checking android.permission.DEVICE_POWER for uid=1000 => granted (3623 us)
901I/ActivityManager( 327): Start proc com.android.phone for added application com.android.phone: pid=520 uid=1001 gids={3002, 3001, 3003, 1028}
902I/ActivityManager( 327): START {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10000000 cmp=tv.ouya.console/.launcher.guide.GuideActivity u=0} from pid 0
903I/ActivityManager( 327): Start proc tv.ouya.console for activity tv.ouya.console/.launcher.guide.GuideActivity: pid=532 uid=10016 gids={2001, 3002, 3001, 3003, 1028, 1007, 1015, 1023}
904W/ThrottleService( 327): unable to find stats for iface wlan0
905W/NvAppProfileService( 327): App Profiles: Not supported
906I/LocationManagerService( 327): request passive (pid 327) 0 0
907D/OuyaWallpaperService( 491): Switching wallpaper to default
908I/dalvikvm-heap( 491): Grow heap (frag case) to 28.840MB for 10024696-byte allocation
909I/ActivityManager( 327): Start proc android.process.media for broadcast com.android.providers.media/.UsbReceiver: pid=547 uid=10006 gids={1015, 1023, 1024, 1028, 2001, 3003, 3007}
910I/ActivityManager( 327): Start proc tv.ouya for content provider tv.ouya/.provider.controllerdata.ControllerContentProvider: pid=559 uid=10027 gids={2001, 3002, 3003, 1007, 1015, 1023, 1028}
911I/ActivityThread( 520): Pub icc: com.android.phone.IccProvider
912D/TelephonyManager( 520): getLteOnCdmaMode=0 curVal=-1 product_type='' lteOnCdmaProductType=''
913D/TelephonyManager( 520): getLteOnCdmaMode=0 curVal=-1 product_type='' lteOnCdmaProductType=''
914D/TelephonyManager( 520): getLteOnCdmaMode=0 curVal=-1 product_type='' lteOnCdmaProductType=''
915D/CAT ( 520): CatService: Running CAT service. STK app installed:false
916D/CAT ( 520): CatService: NEW sInstance
917W/ActivityManager( 327): Unable to start service Intent { act=com.android.internal.telephony.IWapPushManager }: not found
918D/CallManager( 520): registerPhone(GSM Handler (com.android.internal.telephony.PhoneProxy) {41b44368})
919E/ActivityThread( 520): Failed to find provider info for call_log
920W/CallerInfoCache( 520): cursor is null
921I/ActivityThread( 547): Pub drm: com.android.providers.drm.DrmProvider
922E/ActivityThread( 520): Failed to find provider info for com.android.contacts
923I/ActivityThread( 547): Pub media: com.android.providers.media.MediaProvider
924W/ActivityManager( 327): Unable to start service Intent { act=com.android.ussd.IExtendedNetworkService }: not found
925I/ActivityThread( 547): Pub downloads: com.android.providers.downloads.DownloadProvider
926D/DebugService( 520): DebugService DebugService:
927D/TelephonyDebugService( 520): TelephonyDebugService()
928D/Bluetooth HSHFP( 520): Starting BluetoothHeadsetService
929W/CallNotifier( 520): Got onMwiChanged() on non-voice-capable device! Ignoring...
930I/DownloadManager( 547): in removeSpuriousFiles
931V/OUYAF ( 559): ODK version number: 10001337
932D/MtpService( 547): addStorageLocked 131073 /storage/sdcard0
933D/MtpService( 547): starting MTP server in MTP mode
934D/MtpService( 547): addStorageLocked 131073 /storage/sdcard0
935V/OUYAF ( 532): ODK version number: 10001337
936D/OuyaUtil( 559): Running on device name: OUYA 1.0 enum: OUYA
937I/ActivityThread( 559): Pub tv.ouya.oobe.status.provider: tv.ouya.provider.oobe.OOBEStatusProvider
938I/ActivityThread( 559): Pub tv.ouya.settings: tv.ouya.provider.settings.SettingsContentProvider
939D/PackageUtils( 532): tv.ouya.console version code is: 16
940I/ActivityThread( 559): Pub tv.ouya.app.theme: tv.ouya.provider.app.theme.ThemeContentProvider
941I/ActivityThread( 559): Pub tv.ouya.controllerdata: tv.ouya.provider.controllerdata.ControllerContentProvider
942D/ConnectivityPollService( 532): OUYA Url: http://ouya.cweiske.de/api/v1/status
943D/ConnectivityPollService( 532): Starting check.
944I/ActivityThread( 559): Pub tv.ouya.console.api.content: tv.ouya.console.api.content.FileProvider
945I/ActivityThread( 559): Pub tv.ouya.metrics: tv.ouya.metrics.MetricsContentProvider
946D/ConnectivityPollService( 532): Sending connection changed: isConnected - false Reason - 5
947I/ActivityThread( 559): Pub tv.ouya.userdata: tv.ouya.provider.userdata.UserDataContentProvider
948I/ActivityThread( 559): Pub tv.ouya.app.download: tv.ouya.provider.app.download.AppDownloadProvider
949I/ActivityThread( 559): Pub tv.ouya.systemupdater: tv.ouya.systemupdater.SystemUpdatePreferencesProvider
950I/ActivityThread( 559): Pub tv.ouya.app.version: tv.ouya.provider.app.version.AppVersionContentProvider
951D/ControllerInputDeviceListener( 559): C'tor
952D/ControllerInputDeviceListener( 559): ControllerListener::onServiceConnected to class: android.bluetooth.BluetoothInputDevice
953D/ControllerInputDeviceListener( 559): Init'ing content provider...
954D/ControllerInputDeviceListener( 559): removeInputDevice: Updated 1 entries for InputDevice id 2
955V/ControllerInputDeviceListener( 559): Query battery: skipping invalid device id: -1
956D/ControllerInputDeviceListener( 559): clearAllData: deleted 1 rows
957D/ControllerInputDeviceListener( 559): InputDevice Virtual (id: -1, desc: a718a782d34bc767f4689c232d64d527998ea7fd) is not a gamepad...
958D/ControllerInputDeviceListener( 559): InputDevice gpio-keys (id: 1, desc: 485d69228e24f5e46da1598745890b214130dbc4) is not a gamepad...
959D/ControllerInputDeviceListener( 559): tryToMatchAndAddInputDevice: Failed to find entry for InputDevice Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller (id: 2, desc: 3701a0d78f571609fe360d807eb5e35c5c3adcd0)
960D/ControllerInputDeviceListener( 559): tryToMatchAndAddInputDevice: assigned a new one newPlayerNum: 0
961I/n ( 503): OUYA Controller #0: Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller
962D/ControllerInputDeviceListener( 559): updateOrInsertInputDevice: updated 0 rows
963D/ControllerInputDeviceListener( 559): updateOrInsertInputDevice: inserted a new row
964D/ControllerInputDeviceListener( 559): tryToMatchAndAddInputDevice: Inserted an entry for InputDevice Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller (id: 2, desc: 3701a0d78f571609fe360d807eb5e35c5c3adcd0) for player# 0
965V/ControllerInputDeviceListener( 559): Query battery: unable to find bt address, device, id: 2
966D/inAppPurchase( 532): Binding to StoreService
967D/ControllerInputDeviceListener( 559): BluetoothAdapter state is: 12
968D/ControllerInputDeviceListener( 559): Querying batteries at rate: 7200000
969D/d ( 559): Getting package info for: tv.ouya, permission: android.permission.READ_LOGS
970I/OuyaInputMapper( 532): OUYA Controller #0: Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller
971V/d ( 559): Found flags for permission: 3
972I/c ( 559): We already have the READ_LOGS permission
973I/NuCachedSource2( 111): ERROR_END_OF_STREAM
974D/PackageUtils( 559): tv.ouya version code is: 16
975D/OUYAHttpHeaderUtils( 559): Setting version code to: 16
976I/MPEG4Extractor( 111): NON-QT MODE DECIDED
977D/AppDownloadService( 559): Updating download queue
978D/ControllerContentProvider( 559): Actual device name: OUYA
979D/ControllerContentProvider( 559): Found matching device: OUYA
980D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
981I/NuCachedSource2( 111): ERROR_END_OF_STREAM
982I/MPEG4Extractor( 111): NON-QT MODE DECIDED
983D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
984I/NuCachedSource2( 111): ERROR_END_OF_STREAM
985I/MPEG4Extractor( 111): NON-QT MODE DECIDED
986D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
987I/AppDownloadService( 559): Starting AppDownloadService
988D/AppDownloadService( 559): Actually resuming updates
989I/AppDownloadService( 559): Entering RUNNING state
990D/AppDownloadService( 559): Updating download queue
991I/NuCachedSource2( 111): ERROR_END_OF_STREAM
992D/AppDownloadService( 559): Updating download queue
993I/MPEG4Extractor( 111): NON-QT MODE DECIDED
994D/ControllerContentProvider( 559): Actual device name: OUYA
995D/ControllerContentProvider( 559): Found matching device: OUYA
996I/NuCachedSource2( 111): ERROR_END_OF_STREAM
997I/MPEG4Extractor( 111): NON-QT MODE DECIDED
998D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
999D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1000I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1001I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1002D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1003I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1004I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1005I/dalvikvm-heap( 532): Grow heap (frag case) to 27.407MB for 8294416-byte allocation
1006D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1007E/NetdConnector( 327): NDC Command {8 interface setthrottle wlan0 -1 -1} took too long (849ms)
1008I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1009I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1010D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1011I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1012I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1013D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1014I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1015I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1016D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1017I/wpa_supplicant( 476): rfkill: Cannot open RFKILL control device
1018I/dalvikvm-heap( 532): Grow heap (frag case) to 37.080MB for 8294416-byte allocation
1019I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1020I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1021D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1022I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1023I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1024D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1025I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1026I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1027D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1028D/CommandListener( 106): Setting iface cfg
1029D/CommandListener( 106): Trying to bring up p2p0
1030I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1031I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1032D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1033I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1034I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1035D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1036I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1037I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1038D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1039I/dalvikvm-heap( 532): Grow heap (frag case) to 44.982MB for 8294416-byte allocation
1040I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1041I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1042I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1043I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1044D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1045D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1046I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1047E/OuyaController( 503): Controller already exists for player 0 (new device id 2, prev device id 2)
1048I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1049D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1050I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1051I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1052D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1053I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1054I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1055D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1056D/BtcController( 532): No extra BT connections
1057D/BtcController( 532): Setting wifi.btc to 5
1058I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1059I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1060D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1061I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1062I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1063D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1064I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1065I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1066D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1067I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1068I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1069D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1070I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1071I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1072D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1073D/ControllerButtonLegend( 532): Adding drawable for button: L2 keycode: 104
1074D/ControllerButtonLegend( 532): Adding drawable for button: O keycode: 96
1075I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1076D/ControllerButtonLegend( 532): Adding drawable for button: U keycode: 99
1077D/ControllerButtonLegend( 532): Adding drawable for button: Y keycode: 100
1078I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1079I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1080D/ControllerButtonLegend( 532): Adding drawable for button: A keycode: 97
1081D/ControllerButtonLegend( 532): Adding drawable for button: L3 keycode: 106
1082I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1083D/ControllerButtonLegend( 532): Adding drawable for button: R3 keycode: 107
1084D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1085D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1086D/ControllerButtonLegend( 532): Adding drawable for button: R2 keycode: 105
1087E/GuideActivity( 532): No component, going home.
1088D/GuideActivity( 532): goHome called!
1089D/GuideActivity( 532): java.lang.RuntimeException
1090D/GuideActivity( 532): at tv.ouya.console.launcher.guide.GuideActivity.goHome(GuideActivity.java:724)
1091D/GuideActivity( 532): at tv.ouya.console.launcher.guide.GuideActivity.onCreate(GuideActivity.java:177)
1092D/GuideActivity( 532): at android.app.Activity.performCreate(Activity.java:5063)
1093D/GuideActivity( 532): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
1094D/GuideActivity( 532): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023)
1095D/GuideActivity( 532): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
1096D/GuideActivity( 532): at android.app.ActivityThread.access$600(ActivityThread.java:130)
1097D/GuideActivity( 532): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
1098D/GuideActivity( 532): at android.os.Handler.dispatchMessage(Handler.java:99)
1099D/GuideActivity( 532): at android.os.Looper.loop(Looper.java:137)
1100D/GuideActivity( 532): at android.app.ActivityThread.main(ActivityThread.java:4745)
1101D/GuideActivity( 532): at java.lang.reflect.Method.invokeNative(Native Method)
1102D/GuideActivity( 532): at java.lang.reflect.Method.invoke(Method.java:511)
1103D/GuideActivity( 532): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
1104D/GuideActivity( 532): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
1105D/GuideActivity( 532): at dalvik.system.NativeStart.main(Native Method)
1106I/ActivityManager( 327): START {act=android.intent.action.MAIN cat=[android.intent.category.HOME] cmp=tv.ouya.console/.launcher.guide.GuideActivity (has extras) u=0} from pid 532
1107E/OuyaController( 532): Controller already exists for player 0 (new device id 2, prev device id 2)
1108D/AppDownloadServiceReceiver( 559): Received: Intent { act=tv.ouya.ACTION_CONNECTIVITY_CHANGED flg=0x10 cmp=tv.ouya/.provider.app.download.AppDownloadServiceReceiver (has extras) }
1109D/AppDownloadService( 559): Suspending updates due to connectivity change
1110D/AppDownloadService( 559): Updating download queue
1111D/inAppPurchase( 532): Successfully bound to IapService
1112I/AppDownloadService( 559): Entering SUSPENDED state
1113D/ControllerActionReceiver( 559): Got action: tv.ouya.controller.action.KEEP_ALIVE
1114I/LocaleUtils( 559): Using "en-US,en" for Accept-Language
1115D/GuideActivity( 532): Got home intent, setting mGoingHome
1116I/ActivityManager( 327): Start proc tv.ouya.sysprops for broadcast tv.ouya.sysprops/.SystemPropertyReceiver: pid=783 uid=1000 gids={1015, 1023, 3002, 3001, 3003, 1028}
1117I/ActivityManager( 327): START {flg=0x10208000 cmp=tv.ouya.console/.launcher.home.HomeActivity u=0} from pid 532
1118W/ActivityManager( 327): Duplicate finish request for ActivityRecord{41d329c0 tv.ouya.console/.launcher.guide.GuideActivity}
1119E/RatingsUtil( 532): Unable to get user ratings from server (2000): No OUYA accounts are available to authenticate with.
1120I/ActivityManager( 327): START {cmp=tv.ouya.console/.launcher.startup.PlayVideoActivity u=0} from pid 532
1121D/ControllerActionReceiver( 559): Got action: tv.ouya.controller.action.SHOW_CURSOR
1122D/ControllerActionReceiver( 559): Got action: tv.ouya.controller.action.SET_CURSOR_BITMAP
1123D/BtcController( 532): No extra BT connections
1124D/BtcController( 532): Setting wifi.btc to 5
1125D/AppDownloadServiceReceiver( 559): Received: Intent { act=tv.ouya.download.ACTION_RESUME_DOWNLOADS flg=0x10 cmp=tv.ouya/.provider.app.download.AppDownloadServiceReceiver }
1126D/ControllerActionReceiver( 559): Got action: tv.ouya.controller.action.KEEP_ALIVE
1127I/wpa_supplicant( 476): wlan0: Trying to associate with d0:57:94:f4:90:56 (SSID='BELL370' freq=2432 MHz)
1128D/libEGL ( 532): loaded /system/lib/egl/libEGL_tegra.so
1129E/ ( 532): file /data/data/com.nvidia.NvCPLSvc/files/driverlist.txt: not found!
1130I/ ( 532): Attempting to load EGL implementation /system/lib//egl/libEGL_tegra_impl
1131I/ ( 532): Loaded EGL implementation /system/lib//egl/libEGL_tegra_impl
1132D/libEGL ( 532): loaded /system/lib/egl/libGLESv1_CM_tegra.so
1133D/libEGL ( 532): loaded /system/lib/egl/libGLESv2_tegra.so
1134I/ ( 532): Loading GLESv2 implementation /system/lib//egl/libGLESv2_tegra_impl
1135D/OpenGLRenderer( 532): Enabling debug mode 0
1136I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1137I/SampleTable( 111): There are reordered frames present.
1138D/NvOsDebugPrintf( 111): NvxLiteH264DecoderInit : Opening TVMR H264 block
1139I/OMXCodec( 111): [OMX.Nvidia.h264.decode] AVC profile = 77 (Main), level = 42
1140I/OMXCodec( 111): [OMX.Nvidia.h264.decode] video dimensions are 1920 x 1080
1141I/OMXCodec( 111): [OMX.Nvidia.h264.decode] Crop rect is 1920 x 1080 @ (0, 0)
1142D/StorageChangeService( 532): Action: tv.ouya.intent.action.STORAGE_CHANGE_ENABLED, Stack: 0
1143W/OuyaActivity( 532): Issue getting user info (2000): No OUYA accounts are available to authenticate with.
1144D/ConnectivityPollService( 532): Woken before time elapsed - going back to sleep.
1145D/NvOsDebugPrintf( 111): NvMMLiteOpen : Block : BlockType = 261
1146D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecBlockOpen: 2873: NvMMLiteBlockOpen
1147D/NvOsDebugPrintf( 111): TVMR: TVMRFrameDelivery: 2054: TVMRFrameDelivery Started
1148D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 261
1149D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1150I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1151I/ActivityManager( 327): Displayed tv.ouya.console/.launcher.startup.PlayVideoActivity: +312ms (total +1s865ms)
1152D/MediaPlayer( 532): getMetadata
1153D/NvOsDebugPrintf( 111): TVMR: cbBeginSequence: 234: BeginSequence 1920x1088
1154D/NvOsDebugPrintf( 111): TVMR: cbBeginSequence: 421: pnvsi->nDecodeBuffers = 4
1155D/PowerManagerService( 327): bootCompleted
1156V/DevicePolicyManagerService( 327): Sending password expiration notifications for action android.intent.action.BOOT_COMPLETED
1157D/NvOsDebugPrintf( 111): TVMR: cbBeginSequence: 431: Display Resolution : (1920x1080)
1158D/NvOsDebugPrintf( 111): TVMR: cbBeginSequence: 432: Display Aspect Ratio : (1920x1080)
1159D/NvOsDebugPrintf( 111): TVMR: cbBeginSequence: 504: SurfaceLayout = 2
1160D/NvOsDebugPrintf( 111): TVMR: cbBeginSequence: 519: NumOfSurfaces = 8, InteraceStream = 0, InterlaceEnabled = 0
1161D/NvOsDebugPrintf( 111): Allocating new output: 1920x1088 (x 10)
1162I/SurfaceFlinger( 108): Boot is finished (13217 ms)
1163I/SearchManagerService( 327): Building list of searchable activities
1164I/OMXCodec( 111): [OMX.Nvidia.h264.decode] video dimensions are 1920 x 1088
1165I/OMXCodec( 111): [OMX.Nvidia.h264.decode] Crop rect is 1920 x 1088 @ (0, 0)
1166V/WiredAccessoryObserver( 327): init()
1167I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1168V/WiredAccessoryObserver( 327): newState = 16, headsetState = 16,mHeadsetState = 0
1169V/WiredAccessoryObserver( 327): device hdmi connected
1170W/Searchables( 327): No global search activity found
1171I/RecoverySystem( 327): No recovery log file
1172I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1173I/ActivityManager( 327): Start proc com.nvidia.NvCPLSvc for broadcast com.nvidia.NvCPLSvc/.NvCPLBootReceiver: pid=841 uid=1000 gids={1015, 1023, 3002, 3001, 3003, 1028}
1174I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1175I/OMXCodec( 111): [OMX.Nvidia.h264.decode] video dimensions are 1920 x 1088
1176I/OMXCodec( 111): [OMX.Nvidia.h264.decode] Crop rect is 1920 x 1080 @ (0, 0)
1177D/NvCPLBootReceiver( 841): OnReceive: action = android.intent.action.BOOT_COMPLETED
1178D/UpdateBootReceiver( 532): Received: Intent { act=android.intent.action.BOOT_COMPLETED flg=0x10 cmp=tv.ouya.console/tv.ouya.systemupdater.BootReceiver }
1179I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1180D/NvCPLService( 841): handleIntent: boot event
1181D/NvOTAHelper( 841): doNVSICheck(): START
1182D/NvControl_JNI( 841): com_nvidia_NvCPLSvc_getProperty(): could NOT get the property, err = 0x30006
1183V/NvProfileUpdateHelper( 841): doOTAAction(): Current 3DV Profile Version = 1
1184D/NvOTAHelper( 841): doBootAction(): Alarm setup, firstTime = 22615, otaUpdateFreq = 172800000
1185D/NvControl_JNI( 841): com_nvidia_NvCPLSvc_getProperty(): could NOT get the property, err = 0x30006
1186V/NvProfileUpdateHelper( 841): doOTAAction(): Current PWR Profile Version = 1
1187E/NvPowerMgr( 841): WriteToFile(): Could not write file
1188E/NvPowerMgr( 841): java.io.FileNotFoundException: /sys/class/graphics/fb0/device/smartdimmer/aggressiveness: open failed: ENOENT (No such file or directory)
1189E/NvPowerMgr( 841): at libcore.io.IoBridge.open(IoBridge.java:416)
1190E/NvPowerMgr( 841): at java.io.FileOutputStream.<init>(FileOutputStream.java:88)
1191E/NvPowerMgr( 841): at java.io.FileOutputStream.<init>(FileOutputStream.java:128)
1192E/NvPowerMgr( 841): at java.io.FileOutputStream.<init>(FileOutputStream.java:117)
1193E/NvPowerMgr( 841): at com.nvidia.NvCPLSvc.NvPowerMgr.WriteToFile(NvPowerMgr.java:269)
1194E/NvPowerMgr( 841): at com.nvidia.NvCPLSvc.NvPowerMgr.setPowerState(NvPowerMgr.java:187)
1195E/NvPowerMgr( 841): at com.nvidia.NvCPLSvc.NvPowerMgr.updatePowerStateOnBoot(NvPowerMgr.java:120)
1196E/NvPowerMgr( 841): at com.nvidia.NvCPLSvc.NvCPLService.handleIntent(NvCPLService.java:244)
1197E/NvPowerMgr( 841): at com.nvidia.NvCPLSvc.NvCPLService.onStartCommand(NvCPLService.java:138)
1198E/NvPowerMgr( 841): at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:2490)
1199E/NvPowerMgr( 841): at android.app.ActivityThread.access$1900(ActivityThread.java:130)
1200E/NvPowerMgr( 841): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1292)
1201E/NvPowerMgr( 841): at android.os.Handler.dispatchMessage(Handler.java:99)
1202E/NvPowerMgr( 841): at android.os.Looper.loop(Looper.java:137)
1203E/NvPowerMgr( 841): at android.app.ActivityThread.main(ActivityThread.java:4745)
1204E/NvPowerMgr( 841): at java.lang.reflect.Method.invokeNative(Native Method)
1205E/NvPowerMgr( 841): at java.lang.reflect.Method.invoke(Method.java:511)
1206E/NvPowerMgr( 841): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
1207E/NvPowerMgr( 841): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
1208E/NvPowerMgr( 841): at dalvik.system.NativeStart.main(Native Method)
1209E/NvPowerMgr( 841): Caused by: libcore.io.ErrnoException: open failed: ENOENT (No such file or directory)
1210E/NvPowerMgr( 841): at libcore.io.Posix.open(Native Method)
1211E/NvPowerMgr( 841): at libcore.io.BlockGuardOs.open(BlockGuardOs.java:110)
1212E/NvPowerMgr( 841): at libcore.io.IoBridge.open(IoBridge.java:400)
1213E/NvPowerMgr( 841): ... 19 more
1214D/NvControl_JNI( 841): com_nvidia_NvCPLSvc_getProperty(): could NOT get the property, err = 0x30006
1215I/WallpaperBootReceiver( 491): Wallpaper already set to tv.ouya.console.wallpaper
1216D/UninstallMultipleTask( 532): Finished uninstalling packages
1217I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1218I/ActivityManager( 327): Start proc com.android.settings for broadcast com.android.settings/.SettingsEnforcer: pid=885 uid=1000 gids={1015, 1023, 3002, 3001, 3003, 1028}
1219E/nvaudio_hw( 111): Format 1000000 not supported
1220W/AudioPolicyManagerBase( 111): checkOutputsForDevice() could not open output for device 400
1221I/wpa_supplicant( 476): wlan0: Associated with d0:57:94:f4:90:56
1222D/SettingsEnforcer( 885): Received: Intent { act=android.intent.action.BOOT_COMPLETED flg=0x10 cmp=com.android.settings/.SettingsEnforcer }
1223D/NvHDMI3D_JNI( 885): Register JNI Methods.
1224I/AppDownloadService( 559): Deactivating all downloads
1225D/NvJNIHelper( 841): setPropertyHelper: propName: hdmi.allowRot, propVal: 0, stateId: 1
1226D/AppDownloadService( 559): Updating download queue
1227D/AppDownloadService( 559): Updating download queue
1228V/OnBootBroadcastReceiver( 559): Service started: Intent { cmp=tv.ouya/.console.service.controller.ControllerService (has extras) }
1229V/OnBootBroadcastReceiver( 559): Service started: Intent { act=tv.ouya.console.service.crashes.UPLOAD_CRASH_REPORTS }
1230V/OnBootBroadcastReceiver( 559): Service started: Intent { act=tv.ouya.metrics.action.UPDATE (has extras) }
1231D/ControllerService( 559): Init'ing from boot message...
1232D/ControllerInputDeviceListener( 559): Init'ing content provider...
1233V/CrashReportService( 559): Uploading crash reports...
1234V/CrashReportService( 559): Uploading file: /data/user/0/tv.ouya/cache/.reports/1413781417932
1235D/NetworkPriorityService( 559): NetworkPriority service created! 1102978112
1236E/CrashReportService( 559): http request failed with code: 2000 message: No OUYA accounts are available to authenticate with.
1237V/CrashReportService( 559): Uploading file: /data/user/0/tv.ouya/cache/.reports/1413781425521
1238D/ControllerInputDeviceListener( 559): removeInputDevice: Updated 1 entries for InputDevice id 2
1239D/NetworkPriorityService( 559): Setting wifi enabled state to true
1240E/CrashReportService( 559): http request failed with code: 2000 message: No OUYA accounts are available to authenticate with.
1241V/CrashReportService( 559): Uploading file: /data/user/0/tv.ouya/cache/.reports/1413781585297
1242V/ControllerInputDeviceListener( 559): Query battery: skipping invalid device id: -1
1243E/CrashReportService( 559): http request failed with code: 2000 message: No OUYA accounts are available to authenticate with.
1244V/CrashReportService( 559): Uploading file: /data/user/0/tv.ouya/cache/.reports/1413782998159
1245D/NetworkPriorityService( 559): NetworkPriority service destroyed!
1246I/ActivityManager( 327): Start proc tv.ouya.packagemanager for broadcast tv.ouya.packagemanager/.PackageServiceBootReceiver: pid=906 uid=10028 gids={1015, 1023, 1028}
1247D/WifiService( 327): setWifiEnabled: true pid=559, uid=10027
1248E/CrashReportService( 559): http request failed with code: 2000 message: No OUYA accounts are available to authenticate with.
1249V/CrashReportService( 559): Crash reports dir size [9798 bytes] below thresh - nothing to delete
1250D/CrashReportService( 559): Scheduling next upload in 3600 seconds
1251E/nvaudio_hw( 111): Unknown control 'Speaker Switch'
1252D/ControllerInputDeviceListener( 559): clearAllData: deleted 1 rows
1253D/ControllerInputDeviceListener( 559): InputDevice Virtual (id: -1, desc: a718a782d34bc767f4689c232d64d527998ea7fd) is not a gamepad...
1254D/ControllerInputDeviceListener( 559): InputDevice gpio-keys (id: 1, desc: 485d69228e24f5e46da1598745890b214130dbc4) is not a gamepad...
1255D/ControllerInputDeviceListener( 559): tryToMatchAndAddInputDevice: Failed to find entry for InputDevice Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller (id: 2, desc: 3701a0d78f571609fe360d807eb5e35c5c3adcd0)
1256D/ControllerInputDeviceListener( 559): tryToMatchAndAddInputDevice: assigned a new one newPlayerNum: 0
1257D/ControllerInputDeviceListener( 559): updateOrInsertInputDevice: updated 0 rows
1258D/DropBoxReceiver( 559): Ignoring dropbox tag: SYSTEM_BOOT
1259D/ControllerInputDeviceListener( 559): updateOrInsertInputDevice: inserted a new row
1260D/ControllerInputDeviceListener( 559): tryToMatchAndAddInputDevice: Inserted an entry for InputDevice Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller (id: 2, desc: 3701a0d78f571609fe360d807eb5e35c5c3adcd0) for player# 0
1261V/ControllerInputDeviceListener( 559): Query battery: unable to find bt address, device, id: 2
1262I/MediaProvider( 547): Upgrading media database from version 0 to 509, which will destroy all old data
1263E/SQLiteLog( 547): (1) no such table: files
1264V/MediaScanner( 547): pruneDeadThumbnailFiles... android.database.sqlite.SQLiteCursor@41bf1b78
1265V/MediaScanner( 547): /pruneDeadThumbnailFiles... android.database.sqlite.SQLiteCursor@41bf1b78
1266E/MediaScannerService( 547): exception in MediaScanner.scan()
1267E/MediaScannerService( 547): android.database.sqlite.SQLiteConstraintException: column time is not unique (code 19)
1268E/MediaScannerService( 547): at android.database.sqlite.SQLiteConnection.nativeExecuteForChangedRowCount(Native Method)
1269E/MediaScannerService( 547): at android.database.sqlite.SQLiteConnection.executeForChangedRowCount(SQLiteConnection.java:727)
1270E/MediaScannerService( 547): at android.database.sqlite.SQLiteSession.executeForChangedRowCount(SQLiteSession.java:754)
1271E/MediaScannerService( 547): at android.database.sqlite.SQLiteStatement.executeUpdateDelete(SQLiteStatement.java:64)
1272E/MediaScannerService( 547): at android.database.sqlite.SQLiteDatabase.executeSql(SQLiteDatabase.java:1665)
1273E/MediaScannerService( 547): at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1644)
1274E/MediaScannerService( 547): at com.android.providers.media.MediaProvider.logToDb(MediaProvider.java:1740)
1275E/MediaScannerService( 547): at com.android.providers.media.MediaProvider.delete(MediaProvider.java:3746)
1276E/MediaScannerService( 547): at android.content.ContentProvider$Transport.delete(ContentProvider.java:228)
1277E/MediaScannerService( 547): at android.content.ContentResolver.delete(ContentResolver.java:956)
1278E/MediaScannerService( 547): at com.android.providers.media.MediaScannerService.scan(MediaScannerService.java:105)
1279E/MediaScannerService( 547): at com.android.providers.media.MediaScannerService.access$300(MediaScannerService.java:49)
1280E/MediaScannerService( 547): at com.android.providers.media.MediaScannerService$ServiceHandler.handleMessage(MediaScannerService.java:261)
1281E/MediaScannerService( 547): at android.os.Handler.dispatchMessage(Handler.java:99)
1282E/MediaScannerService( 547): at android.os.Looper.loop(Looper.java:137)
1283E/MediaScannerService( 547): at com.android.providers.media.MediaScannerService.run(MediaScannerService.java:183)
1284E/MediaScannerService( 547): at java.lang.Thread.run(Thread.java:856)
1285I/wpa_supplicant( 476): wlan0: WPA: Key negotiation completed with d0:57:94:f4:90:56 [PTK=CCMP GTK=CCMP]
1286I/wpa_supplicant( 476): wlan0: CTRL-EVENT-CONNECTED - Connection to d0:57:94:f4:90:56 completed (auth) [id=0 id_str=]
1287D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecDoWork: 2314: NVMMLITE_TVMR: EOS detected
1288D/NvOsDebugPrintf( 111): TVMR: TVMRBufferProcessing: 1827: Processing of EOS
1289D/NvOsDebugPrintf( 111): TVMR: TVMRBufferProcessing: 1855: EOS Waiting for AbortDisplayQueueSema
1290D/NvOsDebugPrintf( 111): TVMR: TVMRBufferProcessing: 1857: EOS Waiting for AbortDisplayQueueSema Done
1291D/NvOsDebugPrintf( 111): TVMR: TVMRBufferProcessing: 1867: Sending Stream End Event
1292D/NvOsDebugPrintf( 111): TVMR: TVMRBufferProcessing: 1878: Processing of EOS Done
1293V/PlayVideoActivity( 532): OOBE not completed. Preparing to launch OOBE.
1294D/OOBEUtils( 532): Starting OOBE
1295D/PermissionCache( 108): checking android.permission.READ_FRAME_BUFFER for uid=1000 => granted (119 us)
1296I/ActivityManager( 327): START {flg=0x14000000 cmp=tv.ouya.oobe/.OOBEController (has extras) u=0} from pid 532
1297I/dalvikvm-heap( 327): Grow heap (frag case) to 28.719MB for 8294416-byte allocation
1298D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecAbortBuffers: 2971: StreamIndex = 0
1299D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecAbortBuffers: 3236: StreamIndex = 0, AbortStatus = 1, Done
1300D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecAbortBuffers: 2971: StreamIndex = 1
1301D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecAbortBuffers: 3236: StreamIndex = 1, AbortStatus = 3, Done
1302D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecAbortBuffers: 2971: StreamIndex = 0
1303D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecAbortBuffers: 3236: StreamIndex = 0, AbortStatus = 1, Done
1304D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecAbortBuffers: 2971: StreamIndex = 1
1305D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecAbortBuffers: 3236: StreamIndex = 1, AbortStatus = 3, Done
1306D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecBlockClose: 2935
1307D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecPrivateClose: 2449 ++
1308D/NvOsDebugPrintf( 111): TVMR: TVMRFrameDelivery: 2061: Closing TVMR Frame Delivery Thread -------------
1309D/NvOsDebugPrintf( 111): TVMR: NvMMDecTVMRDestroyParser: 2427: NvAvpClose
1310D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecPrivateClose: 2462: NvMMLiteTVMRDecPrivateClose Done
1311D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecPrivateClose: 2464 --
1312D/NvOsDebugPrintf( 111): TVMR: NvMMLiteTVMRDecBlockClose: 2940: Done
1313W/AudioFlinger( 111): session id 8 not found for pid 532
1314D/StorageChangeService( 532): Action: tv.ouya.intent.action.STORAGE_CHANGE_ENABLED, Stack: 0
1315I/ActivityManager( 327): Start proc tv.ouya.oobe for activity tv.ouya.oobe/.OOBEController: pid=931 uid=10017 gids={2001, 3002, 3001, 3003, 1015, 1023, 1028}
1316W/InputMethodManagerService( 327): Starting input on non-focused client com.android.internal.view.IInputMethodClient$Stub$Proxy@41bf0080 (uid=10016 pid=532)
1317V/OUYAF ( 931): ODK version number: 10001337
1318V/OOBE ( 931): onResume
1319I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1320I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1321D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1322I/OOBEStatusProvider( 559): Setting DEVICE_PROVISIONED to: 0
1323I/OOBE ( 931): Started OOBE from stage 1
1324I/OOBE ( 931): Current step PairControllersActivity
1325I/ActivityManager( 327): START {cmp=tv.ouya.oobe/.PairControllersActivity u=0} from pid 931
1326I/OuyaInputMapper( 931): OUYA Controller #0: Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller
1327I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1328I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1329D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1330D/ConnectivityService( 327): ConnectivityChange for WIFI: CONNECTED/CONNECTED
1331D/ConnectivityService( 327): ConnectivityChange for WIFI: CONNECTED/CONNECTED
1332I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1333I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1334D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1335D/ControllerContentProvider( 559): Actual device name: OUYA
1336D/ControllerContentProvider( 559): Found matching device: OUYA
1337E/BandwidthController( 106): Updating quota globalAlert failed (No such file or directory)
1338E/BandwidthController( 106): Updating quota globalAlert failed (No such file or directory)
1339W/NetworkStats( 327): problem registering for global alert: java.lang.IllegalStateException: command '17 bandwidth setglobalalert 2097152' failed with '400 17 Bandwidth command failed'
1340W/NetworkStats( 327): problem registering for global alert: java.lang.IllegalStateException: command '18 bandwidth setglobalalert 2097152' failed with '400 18 Bandwidth command failed'
1341I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1342I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1343D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1344I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1345I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1346D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1347I/dalvikvm-heap( 931): Grow heap (frag case) to 18.476MB for 766504-byte allocation
1348I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1349I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1350D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1351I/dalvikvm-heap( 931): Grow heap (frag case) to 19.632MB for 766504-byte allocation
1352I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1353I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1354D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1355D/ControllerButtonLegend( 931): Adding drawable for button: L2 keycode: 104
1356D/ControllerButtonLegend( 931): Adding drawable for button: O keycode: 96
1357D/ControllerButtonLegend( 931): Adding drawable for button: U keycode: 99
1358D/ControllerButtonLegend( 931): Adding drawable for button: Y keycode: 100
1359D/ControllerButtonLegend( 931): Adding drawable for button: A keycode: 97
1360I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1361I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1362D/ControllerButtonLegend( 931): Adding drawable for button: L3 keycode: 106
1363D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1364D/ControllerButtonLegend( 931): Adding drawable for button: R3 keycode: 107
1365E/OUYALauncher( 931): Unable to find properties file at path build_number.properties
1366I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1367D/ControllerButtonLegend( 931): Adding drawable for button: R2 keycode: 105
1368I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1369D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1370I/dalvikvm-heap( 931): Grow heap (frag case) to 31.892MB for 8294416-byte allocation
1371I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1372I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1373D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1374I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1375I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1376D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1377I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1378I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1379D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1380I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1381I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1382D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1383I/NuCachedSource2( 111): ERROR_END_OF_STREAM
1384I/MPEG4Extractor( 111): NON-QT MODE DECIDED
1385D/NvOsDebugPrintf( 111): NvMMLiteBlockCreate : Block : BlockType = 771
1386I/WindowManager( 327): Switching to real app window: Window{41c99d90 tv.ouya.oobe/tv.ouya.oobe.PairControllersActivity paused=false}
1387D/libEGL ( 931): loaded /system/lib/egl/libEGL_tegra.so
1388E/ ( 931): file /data/data/com.nvidia.NvCPLSvc/files/driverlist.txt: not found!
1389I/ ( 931): Attempting to load EGL implementation /system/lib//egl/libEGL_tegra_impl
1390I/ ( 931): Loaded EGL implementation /system/lib//egl/libEGL_tegra_impl
1391D/libEGL ( 931): loaded /system/lib/egl/libGLESv1_CM_tegra.so
1392D/libEGL ( 931): loaded /system/lib/egl/libGLESv2_tegra.so
1393I/ ( 931): Loading GLESv2 implementation /system/lib//egl/libGLESv2_tegra_impl
1394D/OpenGLRenderer( 931): Enabling debug mode 0
1395I/ActivityManager( 327): Displayed tv.ouya.oobe/.PairControllersActivity: +703ms (total +877ms)
1396D/BT ( 931): Discovering controllers...
1397D/BluetoothEventLoop( 327): Property Changed: Discovering : true
1398V/BluetoothDiscoveryReceiver( 885): Received: android.bluetooth.adapter.action.DISCOVERY_STARTED
1399D/LocalBluetoothProfileManager( 885): Adding local A2DP profile
1400D/LocalBluetoothProfileManager( 885): Adding local HEADSET profile
1401D/LocalBluetoothProfileManager( 885): Adding local OPP profile
1402D/LocalBluetoothProfileManager( 885): LocalBluetoothProfileManager construction complete
1403I/EthernetStateTracker( 327): DhcpHandler: DHCP request failed: Timed out waiting for dhcpcd to start
1404D/Tethering( 327): MasterInitialState.processMessage what=3
1405D/ConnectivityPollService( 532): Starting check.
1406D/Tethering( 327): MasterInitialState.processMessage what=3
1407D/ConnectivityPollService( 532): Got successful connection response.
1408D/ConnectivityPollService( 532): Sending connection changed: isConnected - true Reason - 0
1409D/OUYAStoreCacheTickler( 532): Requesting discover page (null) from server...
1410E/RatingsUtil( 532): Unable to get user ratings from server (2000): No OUYA accounts are available to authenticate with.
1411D/OUYAStoreCacheTickler( 532): Discover failure!
1412D/AppDownloadServiceReceiver( 559): Received: Intent { act=tv.ouya.ACTION_CONNECTIVITY_CHANGED flg=0x10 cmp=tv.ouya/.provider.app.download.AppDownloadServiceReceiver (has extras) }
1413D/AppDownloadService( 559): Resuming updates due to connectivity change
1414D/AppDownloadService( 559): Actually resuming updates
1415I/AppDownloadService( 559): Entering RUNNING state
1416D/AppDownloadService( 559): Updating download queue
1417D/AppDownloadService( 559): Updating download queue
1418D/BluetoothEventLoop( 327): Property Changed: Discovering : false
1419E/BluetoothService.cpp( 327): stopDiscoveryNative: D-Bus error in StopDiscovery: org.bluez.Error.Failed (Invalid discovery session)
1420V/BluetoothDiscoveryReceiver( 885): Received: android.bluetooth.adapter.action.DISCOVERY_FINISHED
1421V/OOBE ( 931): onResume
1422V/OOBE ( 931): Continuing existing OOBE.
1423I/OOBE ( 931): Current step LocaleActivity
1424I/ActivityManager( 327): START {cmp=tv.ouya.oobe/.LocaleActivity u=0} from pid 931
1425I/ActivityManager( 327): Displayed tv.ouya.oobe/.LocaleActivity: +123ms (total +173ms)
1426D/BT ( 931): Discovering controllers...
1427D/BluetoothEventLoop( 327): Property Changed: Discovering : true
1428V/BluetoothDiscoveryReceiver( 885): Received: android.bluetooth.adapter.action.DISCOVERY_STARTED
1429D/BluetoothEventLoop( 327): Property Changed: Discovering : false
1430D/BluetoothEventLoop( 327): Property Changed: Discovering : true
1431V/BluetoothDiscoveryReceiver( 885): Received: android.bluetooth.adapter.action.DISCOVERY_FINISHED
1432V/BluetoothDiscoveryReceiver( 885): Received: android.bluetooth.adapter.action.DISCOVERY_STARTED
1433D/NvCPLService( 841): handleIntent: alarm wakeup event
1434D/NvOTAHelper( 841): IsNetworkAvailable(): networkInfo type = 1 [0=mobile, 1=wifi,7=btooth]
1435D/NvOTAHelper( 841): IsNetworkAvailable(): network IsConnected = true
1436D/NvOTAHelper( 841): doNVSICheck(): START
1437D/NvOTAHelper( 841): IsNetworkAvailable(): networkInfo type = 1 [0=mobile, 1=wifi,7=btooth]
1438D/NvOTAHelper( 841): IsNetworkAvailable(): network IsConnected = true
1439D/NvOTAHelper( 841): doNVSICheck(): Android epoch = 0x54449e72
1440D/NvControl_JNI( 841): Context initialized.
1441D/NvControl_JNI( 841): Session opened.
1442E/NvControl_JNI( 841): Error: Could not invoke command NVTDZ_OP_SET_DATE (ffff0007).
1443E/NvControl_JNI( 841): Error: Could not invoke command NVTDZ_OP_GET_DEV_SIGN (ffff0007).
1444D/NvControl_JNI( 841): Session closed.
1445D/NvControl_JNI( 841): Context finalized.
1446D/NvOTAHelper( 841): CheckNVSISignature: NVSI MISSING
1447D/NvOTAHelper( 841): placeNVSIMarker(nvsi.device.invalid): START
1448D/NvOTAHelper( 841): placeNVSIMarker(): END
1449D/ConnectivityPollService( 532): Woken before time elapsed - going back to sleep.
1450D/BluetoothEventLoop( 327): Property Changed: Discovering : false
1451E/BluetoothService.cpp( 327): stopDiscoveryNative: D-Bus error in StopDiscovery: org.bluez.Error.Failed (Invalid discovery session)
1452V/BluetoothDiscoveryReceiver( 885): Received: android.bluetooth.adapter.action.DISCOVERY_FINISHED
1453W/ThrottleService( 327): unable to find stats for iface wlan0
1454D/ConnectivityPollService( 532): Starting check.
1455D/ConnectivityPollService( 532): Got successful connection response.
1456D/ConnectivityPollService( 532): Starting check.
1457D/ConnectivityPollService( 532): Got successful connection response.
1458D/ConnectivityPollService( 532): Starting check.
1459D/ConnectivityPollService( 532): Got successful connection response.
1460E/NvOTAHelper( 841): doOTAAction(): IO Exception: java.io.EOFException
1461D/ConnectivityPollService( 532): Starting check.
1462D/ConnectivityPollService( 532): Got successful connection response.
1463V/ControllerInputDeviceListener( 559): getFirmwareVersion: unable to find bt address, device, id: 2
1464D/ConnectivityPollService( 532): Starting check.
1465D/ConnectivityPollService( 532): Got successful connection response.
1466W/ThrottleService( 327): unable to find stats for iface wlan0
1467D/ConnectivityPollService( 532): Starting check.
1468D/ConnectivityPollService( 532): Got successful connection response.
1469D/ConnectivityPollService( 532): Starting check.
1470D/ConnectivityPollService( 532): Got successful connection response.
1471E/BandwidthController( 106): Updating quota globalAlert failed (No such file or directory)
1472W/NetworkStats( 327): problem registering for global alert: java.lang.IllegalStateException: command '19 bandwidth setglobalalert 2097152' failed with '400 19 Bandwidth command failed'
1473D/ConnectivityPollService( 532): Starting check.
1474D/ConnectivityPollService( 532): Got successful connection response.
1475D/ConnectivityPollService( 532): Starting check.
1476D/ConnectivityPollService( 532): Got successful connection response.
1477D/ConnectivityPollService( 532): Starting check.
1478D/ConnectivityPollService( 532): Got successful connection response.
1479W/ThrottleService( 327): unable to find stats for iface wlan0
1480D/ConnectivityPollService( 532): Starting check.
1481D/ConnectivityPollService( 532): Got successful connection response.
1482D/ConnectivityPollService( 532): Starting check.
1483D/ConnectivityPollService( 532): Got successful connection response.
1484D/ConnectivityPollService( 532): Starting check.
1485D/ConnectivityPollService( 532): Got successful connection response.
1486D/ConnectivityPollService( 532): Starting check.
1487D/ConnectivityPollService( 532): Got successful connection response.
1488I/MappingParser( 931): Using controller fallback=OUYA Game Controller
1489I/NvCpuClient( 327): Successfully bound to service
1490V/OOBE ( 931): onResume
1491V/OOBE ( 931): Continuing existing OOBE.
1492I/OOBE ( 931): Current step NetworkSetupActivity
1493I/ActivityManager( 327): START {cmp=tv.ouya.oobe/.NetworkSetupActivity u=0} from pid 931
1494I/OuyaInputMapper( 931): OUYA Controller #0: Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller
1495D/ControllerContentProvider( 559): Actual device name: OUYA
1496D/ControllerContentProvider( 559): Found matching device: OUYA
1497V/WifiSetupFragment( 931): Setting content visible: false
1498D/WifiSetupFragment( 931): Starting scan
1499V/WifiSetupFragment( 931): Setting content visible: true
1500D/WifiSetupFragment( 931): CONNECTIVITY_ACTION: EXTRA_NO_CONNECTIVITY = false
1501D/WifiSetupFragment( 931): Skipping scan request due to one in progress
1502D/WifiSetupFragment( 931): NETWORK_STATE_CHANGED_ACTION: state = CONNECTED
1503D/WifiSetupFragment( 931): SUPPLICANT_STATE_CHANGED_ACTION: state = COMPLETED
1504I/ActivityManager( 327): Displayed tv.ouya.oobe/.NetworkSetupActivity: +206ms (total +224ms)
1505I/dalvikvm-heap( 327): Grow heap (frag case) to 32.323MB for 380496-byte allocation
1506I/InputDispatcher( 327): Window 'Window{427becd8 tv.ouya.oobe/tv.ouya.oobe.NetworkSetupActivity paused=true}' spent 102.8ms processing the last input event: KeyEvent(action=1, deviceId=2, source=0x00000501)
1507V/OOBE ( 931): onResume
1508V/OOBE ( 931): Continuing existing OOBE.
1509I/OOBE ( 931): Current step LocaleActivity
1510I/ActivityManager( 327): START {cmp=tv.ouya.oobe/.LocaleActivity u=0} from pid 931
1511I/ActivityManager( 327): Displayed tv.ouya.oobe/.LocaleActivity: +98ms
1512I/dalvikvm-heap( 327): Grow heap (frag case) to 40.046MB for 8294416-byte allocation
1513V/OOBE ( 931): onResume
1514V/OOBE ( 931): Continuing existing OOBE.
1515I/OOBE ( 931): Current step NetworkSetupActivity
1516I/ActivityManager( 327): START {cmp=tv.ouya.oobe/.NetworkSetupActivity u=0} from pid 931
1517I/OuyaInputMapper( 931): OUYA Controller #0: Bensussen Deutsch & Associates,Inc.(BDA) Core (Plus) Wired Controller
1518D/ControllerContentProvider( 559): Actual device name: OUYA
1519D/ControllerContentProvider( 559): Found matching device: OUYA
1520V/WifiSetupFragment( 931): Setting content visible: false
1521D/WifiSetupFragment( 931): Starting scan
1522V/WifiSetupFragment( 931): Setting content visible: true
1523D/WifiSetupFragment( 931): CONNECTIVITY_ACTION: EXTRA_NO_CONNECTIVITY = false
1524D/WifiSetupFragment( 931): Skipping scan request due to one in progress
1525D/WifiSetupFragment( 931): NETWORK_STATE_CHANGED_ACTION: state = CONNECTED
1526D/WifiSetupFragment( 931): SUPPLICANT_STATE_CHANGED_ACTION: state = COMPLETED
1527I/ActivityManager( 327): Displayed tv.ouya.oobe/.NetworkSetupActivity: +232ms (total +284ms)
1528E/BufferQueue( 108): [Starting tv.ouya.oobe] drainQueueLocked: BufferQueue has been abandoned!
1529D/WifiSetupFragment( 931): Found some scan results...
1530D/WifiSetupFragment( 931): Starting scan
1531D/WifiSetupFragment( 931): Found some scan results...
1532D/WifiSetupFragment( 931): Scan timed out
1533D/WifiSetupFragment( 931): Starting scan
1534D/WifiSetupFragment( 931): Found some scan results...
1535D/WifiSetupFragment( 931): Starting scan
1536D/WifiSetupFragment( 931): Found some scan results...
1537D/WifiSetupFragment( 931): Starting scan
1538D/WifiSetupFragment( 931): Found some scan results...
1539D/WifiSetupFragment( 931): Starting scan
1540D/WifiSetupFragment( 931): Found some scan results...
1541D/WifiSetupFragment( 931): Starting scan
1542D/WifiSetupFragment( 931): Found some scan results...
1543D/WifiSetupFragment( 931): Starting scan
1544D/WifiSetupFragment( 931): Found some scan results...
1545D/dalvikvm( 931): null clazz in OP_INSTANCE_OF, single-stepping
1546D/WifiSetupFragment( 931): Starting scan
1547D/WifiSetupFragment( 931): Found some scan results...
1548D/ConnectivityPollService( 532): Starting check.
1549D/ConnectivityPollService( 532): Got successful connection response.
1550W/ThrottleService( 327): unable to find stats for iface wlan0
1551D/ConnectivityPollService( 532): Starting check.
1552D/ConnectivityPollService( 532): Got successful connection response.
1553D/ConnectivityPollService( 532): Starting check.
1554D/ConnectivityPollService( 532): Got successful connection response.
1555D/ConnectivityPollService( 532): Starting check.
1556D/ConnectivityPollService( 532): Got successful connection response.
1557^C
1558C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools>
1559C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools>adb logcat -f ouya.log
1560couldn't open output file: Read-only file system
1561
1562C:\Users\Tyler\AppData\Local\Android\Sdk\platform-tools>