Giter Site home page Giter Site logo

Comments (8)

zhouziyang avatar zhouziyang commented on July 26, 2024 1

Just try scrcpy tool; Or build your own 32bit executables.

from redroid-doc.

zhouziyang avatar zhouziyang commented on July 26, 2024 1

Your customized redroid container (32bit only) boots, but something wrong with the software rendering (swiftshader). I'm not sure whether possible to get swiftshader codebase updated to resolve this issue.

07-24 07:07:19.396   776   776 F DEBUG   : pid: 546, tid: 587, name: RenderThread  >>> com.android.settings <<<
07-24 07:07:19.396   776   776 F DEBUG   : uid: 1000
07-24 07:07:19.396   776   776 F DEBUG   : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x4
07-24 07:07:19.396   776   776 F DEBUG   : Cause: null pointer dereference
07-24 07:07:19.396   776   776 F DEBUG   :     r0  00000004  r1  bd8619c4  r2  00000000  r3  00000008
07-24 07:07:19.396   776   776 F DEBUG   :     r4  00000000  r5  ea8612e0  r6  bd8d6000  r7  00000000
07-24 07:07:19.396   776   776 F DEBUG   :     r8  bd85f424  r9  bd8610d0  r10 bd8610dc  r11 bd861a50
07-24 07:07:19.396   776   776 F DEBUG   :     ip  80000000  sp  bdbdda08  lr  cfe08687  pc  cfddf5e6
07-24 07:07:19.515   368   715 F libc    : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x4 in tid 715 (RenderThread), pid 368 (ndroid.systemui)
07-24 07:07:19.590   776   776 F DEBUG   :
07-24 07:07:19.590   776   776 F DEBUG   : backtrace:
07-24 07:07:19.590   776   776 F DEBUG   :       #00 pc 002825e6  /vendor/lib/egl/libGLESv2_swiftshader.so (rr::Routine::bind()+6) (BuildId: cf55837d4154ca45a6986c8137d54f15)
07-24 07:07:19.590   776   776 F DEBUG   :       #01 pc 002ab683  /vendor/lib/egl/libGLESv2_swiftshader.so (sw::LRUCache<sw::VertexProcessor::State, rr::Routine>::add(sw::VertexProcessor::State const&, rr::Routine*)+46) (BuildId: cf55837d4154ca45a6986c8137d54f15)
07-24 07:07:19.590

from redroid-doc.

zhouziyang avatar zhouziyang commented on July 26, 2024

Try comment out all those binaries in device/redroid-prebuilts/prebuilts.mk; I think you do not want those on your target platform.

BTW, I only worked on 64bit platforms and that's why only 64bit executables are added. Curious about your platform, very old arm dev board?

from redroid-doc.

brunoaduarte avatar brunoaduarte commented on July 26, 2024

Try comment out all those binaries in device/redroid-prebuilts/prebuilts.mk; I think you do not want those on your target platform.

BTW, I only worked on 64bit platforms and that's why only 64bit executables are added. Curious about your platform, very old arm dev board?

Not really a dev board. It's just that I have this old armeabiv7 Samsung SM-A013M A01 Core phone which i'm trying to "clone" into Redroid as most realistic as possible.

Aren't those binaries needed to access the screen thru vnc ?

from redroid-doc.

brunoaduarte avatar brunoaduarte commented on July 26, 2024

Just try scrcpy tool; Or build your own 32bit executables.

Tried commenting out the binaries on prebuilts.mk and also tried copying arm64 binaries to redroid-prebuilts/prebuilts/arm/bin. The build error stopped but It didn't worked. Device keeps throwing a lot of errors and restarting after booting.

redroid-debug.uh5uBfVs.zip
Any ideas on whatelse should I change @zhouziyang ?
Thanks

from redroid-doc.

brunoaduarte avatar brunoaduarte commented on July 26, 2024

From your #40 (comment)

I can reproduce this issue in redroid:10.0.0-arm64 with swiftshader gles rendering. well, this issue is gone after enable GPU rendering. actually, swiftshader is deprecated, and switched to angle (based on vulkan.pastel). suggestions:

  1. use GPU rendering
  2. use redroid:12.0.0-latest
  3. upgrade angle and swiftshader

1 and 2 are not valid options for me, since now I'm running this on a Azure arm64 VM with no GPU and I must stick to Redroid 10.

So I tried upgrading Redroid 10 to use angle.

Added to ~/redroid/.repo/local_manifests/redroid.xml

<?xml version="1.0" encoding="UTF-8"?>
<manifest>

    <remote name="redroid" fetch="https://github.com/remote-android/" revision="redroid-10.0.0" />
    .............

    <remote name="aosp" fetch=".." review="https://android-review.googlesource.com/" />

    <!-- REMOVE SWIFTSHADER -->
    <remove-project name="platform/external/swiftshader" />

    <!-- ANDROID 11 ANGLE -->
    <project path="external/angle" name="platform/external/angle" groups="pdk" remote="aosp" revision="refs/tags/android-11.0.0_r1" />

    <!-- DEPENDENCY REQUIRED BY ANGLE -->
    <project path="tools/apifinder" name="platform/tools/apifinder" groups="tools" remote="aosp" revision="refs/tags/android-11.0.0_r1" />

</manifest>

Changed ~/redroid/device/redroid/redroid.mk

 PRODUCT_PACKAGES += \
-    gatekeeper.redroid \
-    libEGL_swiftshader \
-    libGLESv1_CM_swiftshader \
-    libGLESv2_swiftshader \
+    libEGL_angle \
+    libGLESv1_CM_angle \
+    libGLESv2_angle \
     vulkan.pastel \

And ~/redroid/vendor/redroid/gpu_config.sh

-    EGL_DIR=/vendor/lib64/egl
+    EGL_DIR=/vendor/lib/egl

1st problem, angle gets installed to /system/lib instead of /vendor/lib/egl , so I manually copied libEGL_angle.so, libGLESv1_CM_angle.so and libGLESv2_angle.so to /vendor/lib/egl

And then after booting the device I get this error

07-25 04:14:00.379  1277  1277 I SurfaceFlinger: Treble testing override: 'false'
07-25 04:14:00.379  1277  1277 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
07-25 04:14:00.379  1277  1277 I SurfaceFlinger: Phase offset NS: 1000000
07-25 04:14:00.379  1277  1290 W SurfaceFlinger: Ignoring VSYNC request while display is disconnected
07-25 04:14:00.379  1277  1290 W SurfaceFlinger: Ignoring VSYNC request while display is disconnected
07-25 04:14:00.379  1277  1291 W SurfaceFlinger: Ignoring VSYNC request while display is disconnected
07-25 04:14:00.379  1277  1291 W SurfaceFlinger: Ignoring VSYNC request while display is disconnected
07-25 04:14:00.379  1277  1277 D RenderEngine: RenderEngine GLES Backend
07-25 04:14:00.379  1277  1277 D libEGL  : Emulator has vendor provided software renderer, qemu.gles is set to 2.
07-25 04:14:00.380  1277  1277 E vndksupport: Could not load /vendor/lib/egl/libEGL_angle.so from sphal namespace: dlopen failed: library "libGLESv2_angle.so" not found.
07-25 04:14:00.380  1277  1277 E libEGL  : load_driver(/vendor/lib/egl/libEGL_angle.so): unknown
07-25 04:14:00.380  1277  1277 F libEGL  : couldn't find an OpenGL ES implementation, make sure you set ro.hardware.egl or ro.board.platform
07-25 04:14:00.380  1277  1277 F libc    : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 1277 (surfaceflinger), pid 1277 (surfaceflinger)

07-25 04:14:00.402  1296  1296 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
07-25 04:14:00.402  1296  1296 F DEBUG   : Build fingerprint: 'samsung/a01coreub/a01core:10/QP1A.190711.020/xx:user/test-keys'
07-25 04:14:00.402  1296  1296 F DEBUG   : Revision: '0'
07-25 04:14:00.403  1296  1296 F DEBUG   : ABI: 'arm'
07-25 04:14:00.403  1296  1296 F DEBUG   : Timestamp: 2024-07-25 04:14:00+0000
07-25 04:14:00.403  1296  1296 F DEBUG   : pid: 1277, tid: 1277, name: surfaceflinger  >>> /system/bin/surfaceflinger <<<
07-25 04:14:00.403  1296  1296 F DEBUG   : uid: 1000
07-25 04:14:00.403  1296  1296 F DEBUG   : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
07-25 04:14:00.403  1296  1296 F DEBUG   : Abort message: 'couldn't find an OpenGL ES implementation, make sure you set ro.hardware.egl or ro.board.platform'
07-25 04:14:00.403  1296  1296 F DEBUG   :     r0  00000000  r1  000004fd  r2  00000006  r3  fff06ac0
07-25 04:14:00.403  1296  1296 F DEBUG   :     r4  fff06ad4  r5  fff06ab8  r6  000004fd  r7  0000016b
07-25 04:14:00.403  1296  1296 F DEBUG   :     r8  fff06ad0  r9  fff06ac0  r10 fff06af0  r11 fff06ae0
07-25 04:14:00.403  1296  1296 F DEBUG   :     ip  000004fd  sp  fff06a90  lr  e9015c43  pc  e9015c56
07-25 04:14:00.584  1296  1296 F DEBUG   :
07-25 04:14:00.584  1296  1296 F DEBUG   : backtrace:
07-25 04:14:00.584  1296  1296 F DEBUG   :       #00 pc 0005ec56  /apex/com.android.runtime/lib/bionic/libc.so (abort+166) (BuildId: c64506b4d754b37c930d77c0aadcf0fa)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #01 pc 00005a1d  /system/lib/liblog.so (__android_log_assert+176) (BuildId: 39c5c5ff515f7936fadc476e0d8e4872)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #02 pc 000192ad  /system/lib/libEGL.so (android::Loader::open(android::egl_connection_t*)+772) (BuildId: 9c077f0f22a38f0ef41b19770721e8ec)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #03 pc 000139ef  /system/lib/libEGL.so (android::egl_init_drivers()+46) (BuildId: 9c077f0f22a38f0ef41b19770721e8ec)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #04 pc 00013c11  /system/lib/libEGL.so (eglGetDisplay+40) (BuildId: 9c077f0f22a38f0ef41b19770721e8ec)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #05 pc 000bcf71  /system/lib/libsurfaceflinger.so (android::renderengine::gl::GLESRenderEngine::create(int, unsigned int, unsigned int)+32) (BuildId: 653450518fa38bf1a02f45ddabfb3774)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #06 pc 000bce59  /system/lib/libsurfaceflinger.so (android::renderengine::RenderEngine::create(int, unsigned int, unsigned int)+92) (BuildId: 653450518fa38bf1a02f45ddabfb3774)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #07 pc 0008901b  /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+810) (BuildId: 653450518fa38bf1a02f45ddabfb3774)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #08 pc 00003149  /system/bin/surfaceflinger (main+256) (BuildId: 6ead6552cc57264408bb362727899337)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #09 pc 00059213  /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+66) (BuildId: c64506b4d754b37c930d77c0aadcf0fa)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #10 pc 00003033  /system/bin/surfaceflinger (_start_main+42) (BuildId: 6ead6552cc57264408bb362727899337)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #11 pc 0002eea7  /apex/com.android.runtime/bin/linker (__dl__ZN6soinfoD1Ev+14) (BuildId: 5a8dae746406874f62cc0c3f6e7196b6)
07-25 04:14:00.584  1296  1296 F DEBUG   :       #12 pc 0002098e  [stack]
Detailed logcat

41a9975812b9:/ # logcat
--------- beginning of main
07-25 04:05:45.685    19    19 I hwservicemanager: hwservicemanager is ready now.
--------- beginning of system
07-25 04:05:45.689    22    22 I vold    : Vold 3.0 (the awakening) firing up
07-25 04:05:45.690    22    22 D vold    : Detected support for: ext4 vfat
07-25 04:05:45.690    22    22 E vold    : Failed open: No such file or directory
07-25 04:05:45.690    22    22 E vold    : Failed to opendir: No such file or directory
07-25 04:05:45.690    22    22 I vold    : [libfs_mgr]ReadDefaultFstab(): failed to find device default fstab
07-25 04:05:45.690    22    22 E vold    : Failed to open default fstab: No such file or directory
07-25 04:05:45.690    22    22 E vold    : Error reading configuration... continuing anyways: No such file or directory
07-25 04:05:45.690    22    22 D vold    : VoldNativeService::start() completed OK
07-25 04:05:46.694    27    27 I [email protected]: Fetching keymaster device name default
07-25 04:05:46.694    27    27 I [email protected]: Could not find any keystore module, using software-only implementation.
07-25 04:05:46.695    27    27 I ServiceManagement: Registered [email protected]::IKeymasterDevice/default (start delay of 15ms)
07-25 04:05:46.695    27    27 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:46.695    27    27 I [email protected]: Registration complete for [email protected]::IKeymasterDevice/default.
07-25 04:05:46.700    30    30 E fsverity_init: Failed to load /product/etc/security/fsverity/*.der
07-25 04:05:46.717    32    32 I apexd   : Marking APEXd as starting
07-25 04:05:46.717    32    32 I apexd   : Scanning /system/apex for embedded keys
07-25 04:05:46.717    32    32 I apexd   : Scanning /product/apex for embedded keys
07-25 04:05:46.717    32    32 I apexd   : ... does not exist. Skipping
07-25 04:05:46.717    32    32 I apexd   : Populating APEX database from mounts...
07-25 04:05:46.717    32    32 E apexd   : Failed to walk /product/apex : Can't open /product/apex for reading : No such file or directory
07-25 04:05:46.725    32    32 I apexd   : Found "/apex/com.android.runtime@1"
07-25 04:05:46.725    32    32 I apexd   : Found "/apex/com.android.tzdata@290000000"
07-25 04:05:46.725    32    32 I apexd   : 2 packages restored.
07-25 04:05:46.725    32    32 I apexd   : Scanning /data/apex/sessions looking for sessions to be activated.
07-25 04:05:46.725    32    32 I apexd   : Scanning /data/apex/active looking for APEX packages.
07-25 04:05:46.725    32    32 I apexd   : Activated 0 packages. Skipped: 0
07-25 04:05:46.726    32    32 I apexd   : Scanning /system/apex looking for APEX packages.
07-25 04:05:46.726    32    32 I apexd   : Found /system/apex/com.android.runtime.release
07-25 04:05:46.726    32    32 I apexd   : Skipping activation of /system/apex/com.android.runtime.release same package with higher version 1 is already active
07-25 04:05:46.726    32    32 I apexd   : Found /system/apex/com.android.tzdata
07-25 04:05:46.726    32    32 I apexd   : Skipping activation of /system/apex/com.android.tzdata same package with higher version 290000000 is already active
07-25 04:05:46.726    32    32 I apexd   : Found /system/apex/com.android.media.swcodec
07-25 04:05:46.726    32    32 V apexd   : Creating mount point: /apex/com.android.media.swcodec@290000000
07-25 04:05:46.726    32    32 I apexd   : Successfully bind-mounted flattened package /system/apex/com.android.media.swcodec on /apex/com.android.media.swcodec@290000000
07-25 04:05:46.726    32    32 V apexd   : Creating bind-mount for /apex/com.android.media.swcodec for /apex/com.android.media.swcodec@290000000
07-25 04:05:46.726    32    32 V apexd   : Creating mountpoint /apex/com.android.media.swcodec
07-25 04:05:46.726    32    32 V apexd   : Bind-mounting /apex/com.android.media.swcodec@290000000 to /apex/com.android.media.swcodec
07-25 04:05:46.726    32    32 D apexd   : Successfully activated /system/apex/com.android.media.swcodec package_name: com.android.media.swcodec version: 290000000
07-25 04:05:46.726    32    32 I apexd   : Found /system/apex/com.android.media
07-25 04:05:46.726    32    32 V apexd   : Creating mount point: /apex/com.android.media@290000000
07-25 04:05:46.726    32    32 I apexd   : Successfully bind-mounted flattened package /system/apex/com.android.media on /apex/com.android.media@290000000
07-25 04:05:46.726    32    32 V apexd   : Creating bind-mount for /apex/com.android.media for /apex/com.android.media@290000000
07-25 04:05:46.726    32    32 V apexd   : Creating mountpoint /apex/com.android.media
07-25 04:05:46.726    32    32 V apexd   : Bind-mounting /apex/com.android.media@290000000 to /apex/com.android.media
07-25 04:05:46.726    32    32 D apexd   : Successfully activated /system/apex/com.android.media package_name: com.android.media version: 290000000
07-25 04:05:46.726    32    32 I apexd   : Found /system/apex/com.android.resolv
07-25 04:05:46.726    32    32 V apexd   : Creating mount point: /apex/com.android.resolv@290000000
07-25 04:05:46.726    32    32 I apexd   : Successfully bind-mounted flattened package /system/apex/com.android.resolv on /apex/com.android.resolv@290000000
07-25 04:05:46.726    32    32 V apexd   : Creating bind-mount for /apex/com.android.resolv for /apex/com.android.resolv@290000000
07-25 04:05:46.726    32    32 V apexd   : Creating mountpoint /apex/com.android.resolv
07-25 04:05:46.726    32    32 V apexd   : Bind-mounting /apex/com.android.resolv@290000000 to /apex/com.android.resolv
07-25 04:05:46.726    32    32 D apexd   : Successfully activated /system/apex/com.android.resolv package_name: com.android.resolv version: 290000000
07-25 04:05:46.726    32    32 I apexd   : Found /system/apex/com.android.conscrypt
07-25 04:05:46.726    32    32 V apexd   : Creating mount point: /apex/com.android.conscrypt@290000000
07-25 04:05:46.726    32    32 I apexd   : Successfully bind-mounted flattened package /system/apex/com.android.conscrypt on /apex/com.android.conscrypt@290000000
07-25 04:05:46.726    32    32 V apexd   : Creating bind-mount for /apex/com.android.conscrypt for /apex/com.android.conscrypt@290000000
07-25 04:05:46.726    32    32 V apexd   : Creating mountpoint /apex/com.android.conscrypt
07-25 04:05:46.726    32    32 V apexd   : Bind-mounting /apex/com.android.conscrypt@290000000 to /apex/com.android.conscrypt
07-25 04:05:46.726    32    32 D apexd   : Successfully activated /system/apex/com.android.conscrypt package_name: com.android.conscrypt version: 290000000
07-25 04:05:46.726    32    32 I apexd   : Activated 4 packages. Skipped: 2
07-25 04:05:46.726    32    32 I apexd   : Scanning /product/apex looking for APEX packages.
07-25 04:05:46.726    32    32 E apexd   : Failed to activate packages from /product/apex : Failed to scan /product/apex : Can't open /product/apex for reading : No such file or directory
07-25 04:05:46.738    32    32 I apexd   : Marking APEXd as ready
07-25 04:05:46.746    22    22 D vold    : fscrypt_init_user0
07-25 04:05:46.746    22    22 D vold    : fscrypt_prepare_user_storage for volume null, user 0, serial 0, flags 1
07-25 04:05:46.746    22    22 D vold    : Preparing: /data/system/users/0
07-25 04:05:46.746    22    22 D vold    : Preparing: /data/misc/profiles/cur/0
07-25 04:05:46.746    22    22 D vold    : Preparing: /data/system_de/0
07-25 04:05:46.746    22    22 D vold    : Preparing: /data/misc_de/0
07-25 04:05:46.747    22    22 D vold    : Preparing: /data/vendor_de/0
07-25 04:05:46.747    22    22 D vold    : Preparing: /data/user_de/0
07-25 04:05:46.747    22    22 D vold    : /system/bin/vold_prepare_subdirs
07-25 04:05:46.747    22    22 D vold    :     prepare
07-25 04:05:46.747    22    22 D vold    :
07-25 04:05:46.747    22    22 D vold    :     0
07-25 04:05:46.747    22    22 D vold    :     1
07-25 04:05:46.753    36    36 D vold_prepare_subdirs: Setting up mode 700 uid 0 gid 0 context null on path: /data/misc_de/0/vold
07-25 04:05:46.753    36    36 D vold_prepare_subdirs: Setting up mode 700 uid 0 gid 0 context null on path: /data/misc_de/0/storaged
07-25 04:05:46.753    36    36 D vold_prepare_subdirs: Setting up mode 700 uid 0 gid 0 context null on path: /data/misc_de/0/rollback
07-25 04:05:46.753    36    36 D vold_prepare_subdirs: Setting up mode 700 uid 1000 gid 1000 context null on path: /data/vendor_de/0/fpdata
07-25 04:05:46.753    36    36 D vold_prepare_subdirs: Setting up mode 700 uid 1000 gid 1000 context null on path: /data/vendor_de/0/facedata
07-25 04:05:46.753    22    22 D vold    : fscrypt_unlock_user_key 0 serial=0 token_present=0
07-25 04:05:46.753    22    22 E vold    : Failed to chmod /data/system_ce/0: No such file or directory
07-25 04:05:46.753    22    22 E vold    : Failed to chmod /data/misc_ce/0: No such file or directory
07-25 04:05:46.753    22    22 E vold    : Failed to chmod /data/media/0: No such file or directory
07-25 04:05:46.759    37    37 I /system/bin/tzdatacheck: timezone distro dir /data/misc/zoneinfo/current does not exist. No action required.
07-25 04:05:46.769    39    39 I art_apex: === ART pre-boot integrity checks ===
07-25 04:05:46.781    41    41 F art_apex: Device is not fsverity-enabled.
07-25 04:05:46.811    47    47 I /system/bin/flags_health_check: ServerConfigurableFlagsReset reset_mode value: 0
07-25 04:05:46.811    47    47 I /system/bin/flags_health_check: ServerConfigurableFlagsReset attempted boot count is under threshold, skipping reset.
07-25 04:05:46.822    48    48 I bootstat: Service started: /system/bin/bootstat --set_system_boot_reason
07-25 04:05:46.823    48    48 I bootstat: Canonical boot reason: reboot
07-25 04:05:46.823    48    48 I bootstat: Canonical boot reason: reboot
07-25 04:05:46.861    54    54 I ServiceManagement: Registered [email protected]::IAllocator/ashmem (start delay of 11ms)
07-25 04:05:46.861    54    54 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:46.865    56    56 I [email protected]/: [email protected]/backup: Hal starting main loop...
07-25 04:05:46.865    56    56 I [email protected]/: [email protected]/backup Hal is starting up...
07-25 04:05:46.865    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IHealth/default in either framework or device manifest.
07-25 04:05:46.894    58    58 I device_boutique: Registering beacon_swarm
07-25 04:05:46.894    58    58 I device_boutique: Registering beacon
07-25 04:05:46.894    58    58 I device_boutique: Registering remote_loopback_device
07-25 04:05:46.894    58    58 I device_boutique: Registering car_kit
07-25 04:05:46.894    58    58 I device_boutique: Registering classic
07-25 04:05:46.894    58    58 I device_boutique: Registering sniffer
07-25 04:05:46.894    58    58 I device_boutique: Registering keyboard
07-25 04:05:46.894    58    58 I device_properties: Reading controller properties from /etc/bluetooth/car_kit_controller_properties.json.
07-25 04:05:46.894    58    58 E device_properties: Error reading controller properties from file.
07-25 04:05:46.930    67    67 I [email protected]: Wifi Hal is booting up...
07-25 04:05:46.965    71    71 I lowmemorykiller: Using psi monitors for memory pressure detection
07-25 04:05:46.993    77    77 D LibBpfLoader: Loading ELF object /system/etc/bpf/clatd.o with license Apache 2.0
07-25 04:05:46.993    77    77 D LibBpfLoader: Loaded code section 3 (schedcls_ingress_clat_ether)
07-25 04:05:46.993    77    77 D LibBpfLoader: Loaded relo section 3 (.relschedcls/ingress/clat_ether)
07-25 04:05:46.993    77    77 D LibBpfLoader: Adding section 3 to cs list
07-25 04:05:46.993    77    77 D LibBpfLoader: Loaded code section 5 (schedcls_ingress_clat_rawip)
07-25 04:05:46.993    77    77 D LibBpfLoader: Loaded relo section 5 (.relschedcls/ingress/clat_rawip)
07-25 04:05:46.993    77    77 D LibBpfLoader: Adding section 5 to cs list
07-25 04:05:46.993    77    77 D LibBpfLoader: bpf_create_map name clat_ingress_map, ret: 6
07-25 04:05:46.993    77    77 D LibBpfLoader: map_fd found at 0 is 6 in /system/etc/bpf/clatd.o
07-25 04:05:46.993    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 400,               insn offset 50 , insn 118
07-25 04:05:46.993    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 360,               insn offset 45 , insn 118
07-25 04:05:47.001    77    77 D LibBpfLoader: New bpf core prog_load for /system/etc/bpf/clatd.o (schedcls_ingress_clat_ether) returned: 7
07-25 04:05:47.002    77    77 D LibBpfLoader: New bpf core prog_load for /system/etc/bpf/clatd.o (schedcls_ingress_clat_rawip) returned: 8
07-25 04:05:47.002    77    77 I bpfloader: Attempted load object: /system/etc/bpf/clatd.o, ret: Success
07-25 04:05:47.002    77    77 D LibBpfLoader: Loading ELF object /system/etc/bpf/netd.o with license Apache 2.0
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded code section 3 (cgroupskb_ingress_stats)
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded relo section 3 (.relcgroupskb/ingress/stats)
07-25 04:05:47.002    77    77 D LibBpfLoader: Adding section 3 to cs list
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded code section 5 (cgroupskb_egress_stats)
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded relo section 5 (.relcgroupskb/egress/stats)
07-25 04:05:47.002    77    77 D LibBpfLoader: Adding section 5 to cs list
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded code section 7 (skfilter_egress_xtbpf)
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded relo section 7 (.relskfilter/egress/xtbpf)
07-25 04:05:47.002    77    77 D LibBpfLoader: Adding section 7 to cs list
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded code section 9 (skfilter_ingress_xtbpf)
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded relo section 9 (.relskfilter/ingress/xtbpf)
07-25 04:05:47.002    77    77 D LibBpfLoader: Adding section 9 to cs list
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded code section 11 (skfilter_whitelist_xtbpf)
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded relo section 11 (.relskfilter/whitelist/xtbpf)
07-25 04:05:47.002    77    77 D LibBpfLoader: Adding section 11 to cs list
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded code section 13 (skfilter_blacklist_xtbpf)
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded relo section 13 (.relskfilter/blacklist/xtbpf)
07-25 04:05:47.002    77    77 D LibBpfLoader: Adding section 13 to cs list
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded code section 15 (cgroupsock_inet_create)
07-25 04:05:47.002    77    77 D LibBpfLoader: Loaded relo section 15 (.relcgroupsock/inet/create)
07-25 04:05:47.002    77    77 D LibBpfLoader: Adding section 15 to cs list
07-25 04:05:47.003    77    77 D LibBpfLoader: bpf_create_map name cookie_tag_map, ret: 9
07-25 04:05:47.003    77    77 D LibBpfLoader: bpf_create_map name uid_counterset_map, ret: 10
07-25 04:05:47.003    77    77 D LibBpfLoader: bpf_create_map name app_uid_stats_map, ret: 11
07-25 04:05:47.003    77    77 D LibBpfLoader: bpf_create_map name stats_map_A, ret: 12
07-25 04:05:47.003    77    77 D LibBpfLoader: bpf_create_map name stats_map_B, ret: 13
07-25 04:05:47.004    77    77 D LibBpfLoader: bpf_create_map name iface_stats_map, ret: 14
07-25 04:05:47.004    77    77 D LibBpfLoader: bpf_create_map name configuration_map, ret: 15
07-25 04:05:47.004    77    77 D LibBpfLoader: bpf_create_map name uid_owner_map, ret: 16
07-25 04:05:47.004    77    77 D LibBpfLoader: bpf_create_map name iface_index_name_map, ret: 17
07-25 04:05:47.004    77    77 D LibBpfLoader: bpf_create_map name uid_permission_map, ret: 18
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 0 is 9 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 1 is 10 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 2 is 11 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 3 is 12 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 4 is 13 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 5 is 14 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 6 is 15 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 7 is 16 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 8 is 17 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: map_fd found at 9 is 18 in /system/etc/bpf/netd.o
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 616,               insn offset 77 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 688,               insn offset 86 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1040,              insn offset 130 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1184,              insn offset 148 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1264,              insn offset 158 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1368,              insn offset 171 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1472,              insn offset 184 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1512,              insn offset 189 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1576,              insn offset 197 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1680,              insn offset 210 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1720,              insn offset 215 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1848,              insn offset 231 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1952,              insn offset 244 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1992,              insn offset 249 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2056,              insn offset 257 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2160,              insn offset 270 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2200,              insn offset 275 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2288,              insn offset 286 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2392,              insn offset 299 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2432,              insn offset 304 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 608,               insn offset 76 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 680,               insn offset 85 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 904,               insn offset 113 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1048,              insn offset 131 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1128,              insn offset 141 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1232,              insn offset 154 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1336,              insn offset 167 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1376,              insn offset 172 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1440,              insn offset 180 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1544,              insn offset 193 , insn 118
07-25 04:05:47.004    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1584,              insn offset 198 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1712,              insn offset 214 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1816,              insn offset 227 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1856,              insn offset 232 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 1920,              insn offset 240 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2024,              insn offset 253 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2064,              insn offset 258 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2152,              insn offset 269 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2256,              insn offset 282 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 2296,              insn offset 287 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 40,                insn offset 5 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 144,               insn offset 18 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 184,               insn offset 23 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 40,                insn offset 5 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 144,               insn offset 18 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 184,               insn offset 23 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 80,                insn offset 10 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 32,                insn offset 4 , insn 118
07-25 04:05:47.005    77    77 D LibBpfLoader: applying relo to instruction at byte offset: 80,                insn offset 10 , insn 118
07-25 04:05:47.086    95    95 I wificond: wificond is starting up...
07-25 04:05:47.127    55    55 E /system/bin/hw/[email protected]: error opening /sys/power/state: Permission denied
07-25 04:05:47.143   100   100 I /system/bin/tombstoned: tombstoned successfully initialized
07-25 04:05:47.189    77    77 D LibBpfLoader: New bpf core prog_load for /system/etc/bpf/netd.o (cgroupskb_ingress_stats) returned: 19
07-25 04:05:47.190    77    77 D LibBpfLoader: New bpf core prog_load for /system/etc/bpf/netd.o (cgroupskb_egress_stats) returned: 20
07-25 04:05:47.190    77    77 D LibBpfLoader: New bpf core prog_load for /system/etc/bpf/netd.o (skfilter_egress_xtbpf) returned: 21
07-25 04:05:47.190    77    77 D LibBpfLoader: New bpf core prog_load for /system/etc/bpf/netd.o (skfilter_ingress_xtbpf) returned: 22
07-25 04:05:47.190    77    77 D LibBpfLoader: New bpf core prog_load for /system/etc/bpf/netd.o (skfilter_whitelist_xtbpf) returned: 23
07-25 04:05:47.190    77    77 D LibBpfLoader: New bpf core prog_load for /system/etc/bpf/netd.o (skfilter_blacklist_xtbpf) returned: 24
07-25 04:05:47.191    77    77 D LibBpfLoader: New bpf core prog_load for /system/etc/bpf/netd.o (cgroupsock_inet_create) returned: 25
07-25 04:05:47.191    77    77 I bpfloader: Attempted load object: /system/etc/bpf/netd.o, ret: Success
07-25 04:05:47.197    65    65 I [email protected]/: [email protected]/default: Hal starting main loop...
07-25 04:05:47.197    65    65 I [email protected]/: [email protected]/default Hal is starting up...
07-25 04:05:47.285    78    78 I cameraserver: ServiceManager: 0xf0e231a0
07-25 04:05:47.285    78    78 I CameraService: CameraService started (pid=78)
07-25 04:05:47.285    78    78 I CameraService: CameraService process starting
07-25 04:05:47.297    76    76 D AndroidRuntime: >>>>>> START com.android.internal.os.ZygoteInit uid 0 <<<<<<
07-25 04:05:47.300    76    76 I AndroidRuntime: Using default boot image
07-25 04:05:47.300    76    76 I AndroidRuntime: Leaving lock profiling enabled
07-25 04:05:47.301    76    76 I zygote  : option[0]=-Xzygote
07-25 04:05:47.301    76    76 I zygote  : option[1]=exit
07-25 04:05:47.301    76    76 I zygote  : option[2]=vfprintf
07-25 04:05:47.301    76    76 I zygote  : option[3]=sensitiveThread
07-25 04:05:47.301    76    76 I zygote  : option[4]=-verbose:gc
07-25 04:05:47.301    76    76 I zygote  : option[5]=-Xms16m
07-25 04:05:47.301    76    76 I zygote  : option[6]=-Xmx512m
07-25 04:05:47.301    76    76 I zygote  : option[7]=-XX:HeapGrowthLimit=256m
07-25 04:05:47.301    76    76 I zygote  : option[8]=-XX:HeapMinFree=8m
07-25 04:05:47.301    76    76 I zygote  : option[9]=-XX:HeapMaxFree=32m
07-25 04:05:47.301    76    76 I zygote  : option[10]=-XX:HeapTargetUtilization=0.5
07-25 04:05:47.301    76    76 I zygote  : option[11]=-Xusejit:true
07-25 04:05:47.301    76    76 I zygote  : option[12]=-Xjitsaveprofilinginfo
07-25 04:05:47.301    76    76 I zygote  : option[13]=-XjdwpOptions:suspend=n,server=y
07-25 04:05:47.301    76    76 I zygote  : option[14]=-XjdwpProvider:default
07-25 04:05:47.301    76    76 I zygote  : option[15]=-Ximage-compiler-option
07-25 04:05:47.301    76    76 I zygote  : option[16]=--runtime-arg
07-25 04:05:47.301    76    76 I zygote  : option[17]=-Ximage-compiler-option
07-25 04:05:47.301    76    76 I zygote  : option[18]=-Xms64m
07-25 04:05:47.301    76    76 I zygote  : option[19]=-Ximage-compiler-option
07-25 04:05:47.301    76    76 I zygote  : option[20]=--runtime-arg
07-25 04:05:47.301    76    76 I zygote  : option[21]=-Ximage-compiler-option
07-25 04:05:47.301    76    76 I zygote  : option[22]=-Xmx64m
07-25 04:05:47.301    76    76 I zygote  : option[23]=-Ximage-compiler-option
07-25 04:05:47.301    76    76 I zygote  : option[24]=--profile-file=/system/etc/boot-image.prof
07-25 04:05:47.301    76    76 I zygote  : option[25]=-Ximage-compiler-option
07-25 04:05:47.301    76    76 I zygote  : option[26]=--compiler-filter=speed-profile
07-25 04:05:47.301    76    76 I zygote  : option[27]=-Xcompiler-option
07-25 04:05:47.301    76    76 I zygote  : option[28]=--runtime-arg
07-25 04:05:47.301    76    76 I zygote  : option[29]=-Xcompiler-option
07-25 04:05:47.301    76    76 I zygote  : option[30]=-Xms64m
07-25 04:05:47.301    76    76 I zygote  : option[31]=-Xcompiler-option
07-25 04:05:47.301    76    76 I zygote  : option[32]=--runtime-arg
07-25 04:05:47.301    76    76 I zygote  : option[33]=-Xcompiler-option
07-25 04:05:47.301    76    76 I zygote  : option[34]=-Xmx512m
07-25 04:05:47.301    76    76 I zygote  : option[35]=-Ximage-compiler-option
07-25 04:05:47.301    76    76 I zygote  : option[36]=--instruction-set-variant=generic
07-25 04:05:47.301    76    76 I zygote  : option[37]=-Xcompiler-option
07-25 04:05:47.301    76    76 I zygote  : option[38]=--instruction-set-variant=generic
07-25 04:05:47.301    76    76 I zygote  : option[39]=-Ximage-compiler-option
07-25 04:05:47.301    76    76 I zygote  : option[40]=--instruction-set-features=default
07-25 04:05:47.301    76    76 I zygote  : option[41]=-Xcompiler-option
07-25 04:05:47.301    76    76 I zygote  : option[42]=--instruction-set-features=default
07-25 04:05:47.301    76    76 I zygote  : option[43]=-Duser.locale=en-US
07-25 04:05:47.301    76    76 I zygote  : option[44]=--cpu-abilist=armeabi-v7a,armeabi
07-25 04:05:47.301    76    76 I zygote  : option[45]=-Xcompiler-option
07-25 04:05:47.301    76    76 I zygote  : option[46]=--generate-mini-debug-info
07-25 04:05:47.301    76    76 I zygote  : option[47]=-Xfingerprint:samsung/a01coreub/a01core:10/QP1A.190711.020/A013MUBS3AWC1:user/test-keys
07-25 04:05:47.313    58    58 I ServiceManagement: Registered [email protected]::IBluetoothHci/default (start delay of 454ms)
07-25 04:05:47.313    58    58 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.314    78    78 W BatteryNotifier: batterystats service unavailable!
07-25 04:05:47.314    67    67 I ServiceManagement: Registered [email protected]::IWifi/default (start delay of 424ms)
07-25 04:05:47.314    67    67 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.314    78    78 W BatteryNotifier: batterystats service unavailable!
07-25 04:05:47.315    60    60 W /vendor/bin/hw/[email protected]: Could not find seccomp policy file at: /vendor/etc/seccomp_policy/[email protected]
07-25 04:05:47.316    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IDevicesFactory/default in either framework or device manifest.
07-25 04:05:47.316    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IUsbGadget/default in either framework or device manifest.
07-25 04:05:47.316    93    93 I ServiceManagement: Registered [email protected]::IStats/default (start delay of 276ms)
07-25 04:05:47.316    57    57 E audiohalservice: Could not get passthrough implementation for [email protected]::IDevicesFactory/default.
07-25 04:05:47.317    59    59 I ServiceManagement: Registered [email protected]::IMediaCasService/default (start delay of 458ms)
07-25 04:05:47.317    59    59 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.321    93    93 W statsd  : statscompanion service unavailable!
07-25 04:05:47.322    65    65 I ServiceManagement: Registered [email protected]::IHealth/default (start delay of 462ms)
07-25 04:05:47.322    65    65 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.322    65    65 I [email protected]/: [email protected]/default: Hal init done
07-25 04:05:47.329    93    93 I statsd  : Statsd starts to listen to socket.
07-25 04:05:47.341    56    56 I ServiceManagement: Registered [email protected]::IHealth/backup (start delay of 492ms)
07-25 04:05:47.341    56    56 I [email protected]/: [email protected]/backup: Hal init done
07-25 04:05:47.343   101   101 I usbd    : Usb HAL not found
07-25 04:05:47.345    82    82 I installd: installd firing up
07-25 04:05:47.348    91    91 I mediaserver: ServiceManager: 0xedc232a0
07-25 04:05:47.348    91    91 W BatteryNotifier: batterystats service unavailable!
07-25 04:05:47.349    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::ICameraProvider/legacy/0 in either framework or device manifest.
07-25 04:05:47.354    88    88 V MediaUtils: physMem: 4294967295
07-25 04:05:47.354    88    88 V MediaUtils: requested limit: 858993440
07-25 04:05:47.354    88    88 I libc    : malloc_limit: Allocation limit enabled, max size 858993440 bytes
07-25 04:05:47.356    88    88 W /system/bin/mediaextractor: Could not read additional policy file '/vendor/etc/seccomp_policy/mediaextractor.policy'
07-25 04:05:47.356    88    88 W /system/bin/mediaextractor: libminijail[88]: failed to get path of fd 4: No such file or directory
07-25 04:05:47.356    88    88 W /system/bin/mediaextractor: libminijail[88]: allowing syscall: clock_gettime
07-25 04:05:47.356    88    88 W /system/bin/mediaextractor: libminijail[88]: allowing syscall: connect
07-25 04:05:47.356    88    88 W /system/bin/mediaextractor: libminijail[88]: allowing syscall: fcntl64
07-25 04:05:47.356    88    88 W /system/bin/mediaextractor: libminijail[88]: allowing syscall: socket
07-25 04:05:47.356    88    88 W /system/bin/mediaextractor: libminijail[88]: allowing syscall: writev
07-25 04:05:47.356    88    88 W /system/bin/mediaextractor: libminijail[88]: logging seccomp filter failures
07-25 04:05:47.360    61    61 E GoldfishGatekeeper: called goldfish_gatekeeper_open with gate keeper 0xf4e100d8 device 0xf4ae2000
07-25 04:05:47.377    87    87 I mediaserver: ServiceManager: 0xe9714120
07-25 04:05:47.385    76    76 W zygote  : Incomplete boot detected. Pruning dalvik cache
07-25 04:05:47.390    92    92 I netdClient: Skipping libnetd_client init since *we* are netd
07-25 04:05:47.391    92    92 I netd    : netd 1.0 starting
07-25 04:05:47.391    60    60 I ServiceManagement: Registered [email protected]::ISurfaceFlingerConfigs/default (start delay of 532ms)
07-25 04:05:47.391    60    60 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.391    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::ICameraProvider/external/0 in either framework or device manifest.
07-25 04:05:47.392    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IKeymasterDevice/default in either framework or device manifest.
07-25 04:05:47.401    66    66 I ServiceManagement: Registered [email protected]::ISensors/default (start delay of 541ms)
07-25 04:05:47.401    66    66 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.403    98    98 I /apex/com.android.media.swcodec/bin/mediaswcodec: media swcodec service starting
07-25 04:05:47.404    98    98 W /apex/com.android.media.swcodec/bin/mediaswcodec: Could not read additional policy file '/vendor/etc/seccomp_policy/mediaswcodec.policy'
07-25 04:05:47.404    98    98 W /apex/com.android.media.swcodec/bin/mediaswcodec: libminijail[98]: failed to get path of fd 4: No such file or directory
07-25 04:05:47.404    98    98 W /apex/com.android.media.swcodec/bin/mediaswcodec: libminijail[98]: allowing syscall: clock_gettime
07-25 04:05:47.404    98    98 W /apex/com.android.media.swcodec/bin/mediaswcodec: libminijail[98]: allowing syscall: connect
07-25 04:05:47.404    98    98 W /apex/com.android.media.swcodec/bin/mediaswcodec: libminijail[98]: allowing syscall: fcntl64
07-25 04:05:47.404    98    98 W /apex/com.android.media.swcodec/bin/mediaswcodec: libminijail[98]: allowing syscall: socket
07-25 04:05:47.404    98    98 W /apex/com.android.media.swcodec/bin/mediaswcodec: libminijail[98]: allowing syscall: writev
07-25 04:05:47.405    86    86 I keystore: found [email protected]::IKeymasterDevice with interface name default and seclevel SOFTWARE
07-25 04:05:47.405    86    86 W keystore: No secure Keymaster implementation found, but device offers insecure Keymaster HAL. Using as default.
07-25 04:05:47.406    62    62 I ServiceManagement: Registered [email protected]::IGnss/default (start delay of 547ms)
07-25 04:05:47.406    62    62 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.406    61    61 I ServiceManagement: Registered [email protected]::IGatekeeper/default (start delay of 547ms)
07-25 04:05:47.406    61    61 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.406    61    61 I [email protected]: Registration complete for [email protected]::IGatekeeper/default.
07-25 04:05:47.409    98    98 W /apex/com.android.media.swcodec/bin/mediaswcodec: libminijail[98]: logging seccomp filter failures
07-25 04:05:47.410    98    98 I CodecServiceRegistrant: Creating software Codec2 service...
07-25 04:05:47.411    55    55 I ServiceManagement: Registered [email protected]::ISystemSuspend/default (start delay of 561ms)
07-25 04:05:47.411    55    55 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.411    78    78 I         : Waiting for activity service
07-25 04:05:47.412    86    86 I ServiceManagement: Registered [email protected]::IKeystore/default (start delay of 412ms)
07-25 04:05:47.412    98    98 I ServiceManagement: Registered [email protected]::IComponentStore/software (start delay of 373ms)
07-25 04:05:47.412    98    98 I CodecServiceRegistrant: Software Codec2 service created.
07-25 04:05:47.418    96    96 I media.codec: mediacodecservice starting
07-25 04:05:47.418    96    96 W media.codec: libminijail[96]: failed to get path of fd 4: No such file or directory
07-25 04:05:47.418    96    96 W media.codec: libminijail[96]: allowing syscall: clock_gettime
07-25 04:05:47.418    96    96 W media.codec: libminijail[96]: allowing syscall: connect
07-25 04:05:47.418    96    96 W media.codec: libminijail[96]: allowing syscall: fcntl64
07-25 04:05:47.418    96    96 W media.codec: libminijail[96]: allowing syscall: socket
07-25 04:05:47.418    96    96 W media.codec: libminijail[96]: allowing syscall: writev
07-25 04:05:47.419    96    96 W media.codec: libminijail[96]: logging seccomp filter failures
07-25 04:05:47.420    57    57 I ServiceManagement: Registered [email protected]::IDevicesFactory/default (start delay of 560ms)
07-25 04:05:47.420    57    57 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.420    57    57 I audiohalservice: Registration complete for [email protected]::IDevicesFactory/default.
07-25 04:05:47.423    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IEffectsFactory/default in either framework or device manifest.
07-25 04:05:47.423    92    92 W Netd    : dlopen(/apex/com.android.resolv/lib64/libnetd_resolv.so) failed: No such file or directory
07-25 04:05:47.424    92    92 I Netd    : Loaded resolver library from /apex/com.android.resolv/lib/libnetd_resolv.so
07-25 04:05:47.424    92    92 D TetherController: Setting IP forward enable = 0
07-25 04:05:47.428    94   136 I storaged: storaged: Start
07-25 04:05:47.430    63    63 I ServiceManagement: Registered [email protected]::IAllocator/default (start delay of 571ms)
07-25 04:05:47.431    63    63 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.431    63    63 I [email protected]: Registration complete for [email protected]::IAllocator/default.
07-25 04:05:47.431    88    88 E MediaExtractorFactory: couldn't opendir(/system/lib/extractors)
07-25 04:05:47.431    57    57 E audiohalservice: Could not get passthrough implementation for [email protected]::IEffectsFactory/default.
07-25 04:05:47.433    89    89 I mediametrics: ServiceManager: 0xef0d45e0
07-25 04:05:47.433    89    89 D MediaAnalyticsService: MediaAnalyticsService created
07-25 04:05:47.433    96    96 D RedroidOMXPlugin: RedroidOMXPlugin
07-25 04:05:47.433    96    96 D RedroidOMXPlugin: redroid OMX disabled; try with androidboot.use_redroid_omx=1 to enable
07-25 04:05:47.433    96    96 E OMXMaster: OMX plugin failed w/ error 0x80001001 after registering 0 components
07-25 04:05:47.434    96    96 I SoftOMXPlugin: createOMXPlugin
07-25 04:05:47.434    96    96 D MediaCodecsXmlParser: parsing /vendor/etc/media_codecs.xml...
07-25 04:05:47.434    96    96 D MediaCodecsXmlParser: parsing /vendor/etc/media_codecs_google_audio.xml...
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 2
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000,11025,12000,16000,22050,24000,32000,44100,48000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 8000-320000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 4750-12200
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 16000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 6600-23850
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 7350,8000,11025,12000,16000,22050,24000,32000,44100,48000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 8000-960000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000-48000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 64000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000-48000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 64000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000-96000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 32000-500000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 48000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 6000-510000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000-192000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-10000000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 1-655350
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-21000000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 6
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000,11025,12000,16000,22050,24000,32000,44100,48000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 8000-960000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 4750-12200
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = CBR
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 16000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 6600-23850
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = CBR
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 2
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 1-655350
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-21000000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: complexity-default = 5
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: complexity-range = 0-8
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = CQ
07-25 04:05:47.434    96    96 D MediaCodecsXmlParser: parsing /vendor/etc/media_codecs_google_telephony.xml...
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 13000
07-25 04:05:47.434    96    96 D MediaCodecsXmlParser: parsing /vendor/etc/media_codecs_google_video.xml...
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-352x288
07-25 04:05:47.434    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 12-11880
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-384000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-352x288
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-384000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-4080x4080
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-32768
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-1966080
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-48000000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-4096x4096
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-size = 8x8
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-196608
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-2000000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-10000000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-2048x2048
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-16384
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-1000000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-40000000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-2048x2048
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-16384
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-500000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-40000000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: size-range = 176x144-176x144
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: alignment = 16x16
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-128000
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: size-range = 16x16-2048x2048
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.435    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.439    64    64 D hwcomposer: Set vsync period = 15
07-25 04:05:47.439    64    64 W hwcomposer: unknown display attribute 6
07-25 04:05:47.440    64    64 I ServiceManagement: Registered [email protected]::IComposer/default (start delay of 580ms)
07-25 04:05:47.440    64    64 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.440    64    64 I [email protected]: Registration complete for [email protected]::IComposer/default.
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-8192
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-245760
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-12000000
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: feature-intra-refresh = 0
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: size-range = 16x16-176x144
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: alignment = 16x16
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 12-1485
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-64000
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-2048x2048
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-16384
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-40000000
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = VBR,CBR
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-2048x2048
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-3600
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-40000000
07-25 04:05:47.441    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = VBR,CBR
07-25 04:05:47.441    96    96 D MediaCodecsXmlParser: Cannot find
07-25 04:05:47.441    96    96 D MediaCodecsXmlParser: Cannot find /data/misc/media/media_codecs_profiling_results.xml
07-25 04:05:47.442    96    96 I ServiceManagement: Registered [email protected]::IOmx/default (start delay of 402ms)
07-25 04:05:47.442    96    96 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.442    96    96 I media.codec: IOmx HAL service created.
07-25 04:05:47.442    96    96 D MediaCodecsXmlParser: parsing /vendor/etc/media_codecs.xml...
07-25 04:05:47.442    96    96 D MediaCodecsXmlParser: parsing /vendor/etc/media_codecs_google_audio.xml...
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 2
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000,11025,12000,16000,22050,24000,32000,44100,48000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 8000-320000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 4750-12200
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 16000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 6600-23850
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 7350,8000,11025,12000,16000,22050,24000,32000,44100,48000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 8000-960000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000-48000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 64000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000-48000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 64000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000-96000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 32000-500000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 48000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 6000-510000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000-192000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-10000000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 8
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 1-655350
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-21000000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 6
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000,11025,12000,16000,22050,24000,32000,44100,48000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 8000-960000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 4750-12200
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = CBR
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 16000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 6600-23850
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = CBR
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 2
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 1-655350
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-21000000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: complexity-default = 5
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: complexity-range = 0-8
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = CQ
07-25 04:05:47.442    96    96 D MediaCodecsXmlParser: parsing /vendor/etc/media_codecs_google_telephony.xml...
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: max-channel-count = 1
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: sample-rate-ranges = 8000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 13000
07-25 04:05:47.442    96    96 D MediaCodecsXmlParser: parsing /vendor/etc/media_codecs_google_video.xml...
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-352x288
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 12-11880
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-384000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-352x288
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-384000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-4080x4080
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-32768
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-1966080
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-48000000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-4096x4096
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: block-size = 8x8
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-196608
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-2000000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-10000000
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-2048x2048
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-16384
07-25 04:05:47.442    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-1000000
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-40000000
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-2048x2048
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-16384
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-500000
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-40000000
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: feature-adaptive-playback = 0
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: size-range = 176x144-176x144
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: alignment = 16x16
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-128000
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: size-range = 16x16-2048x2048
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-8192
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 1-245760
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-12000000
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: feature-intra-refresh = 0
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: size-range = 16x16-176x144
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: alignment = 16x16
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: blocks-per-second-range = 12-1485
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-64000
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-2048x2048
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-16384
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-40000000
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = VBR,CBR
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: size-range = 2x2-2048x2048
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: alignment = 2x2
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: block-size = 16x16
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: block-count-range = 1-3600
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: bitrate-range = 1-40000000
07-25 04:05:47.443    96    96 I MediaCodecsXmlParser: limit: feature-bitrate-modes = VBR,CBR
07-25 04:05:47.443    96    96 D MediaCodecsXmlParser: Cannot find
07-25 04:05:47.443    96    96 D MediaCodecsXmlParser: Cannot find /data/misc/media/media_codecs_profiling_results.xml
07-25 04:05:47.443    96    96 I OmxStore: node [OMX.redroid.h264.encoder] not found in IOmx
07-25 04:05:47.445    57    57 I ServiceManagement: Registered [email protected]::IEffectsFactory/default (start delay of 586ms)
07-25 04:05:47.445    57    57 I audiohalservice: Registration complete for [email protected]::IEffectsFactory/default.
07-25 04:05:47.446    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::ISoundTriggerHw/default in either framework or device manifest.
07-25 04:05:47.448    57    57 E audiohalservice: Could not get passthrough implementation for [email protected]::ISoundTriggerHw/default.
07-25 04:05:47.448    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::ISoundTriggerHw/default in either framework or device manifest.
07-25 04:05:47.449    57    57 E audiohalservice: Could not get passthrough implementation for [email protected]::ISoundTriggerHw/default.
07-25 04:05:47.449    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::ISoundTriggerHw/default in either framework or device manifest.
07-25 04:05:47.449    57    57 E audiohalservice: Could not get passthrough implementation for [email protected]::ISoundTriggerHw/default.
07-25 04:05:47.449    57    57 W audiohalservice: Could not register soundtrigger API 2.0, 2.1 nor 2.2
07-25 04:05:47.449    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IBluetoothAudioProvidersFactory/default in either framework or device manifest.
07-25 04:05:47.453    57    57 E audiohalservice: Could not get passthrough implementation for [email protected]::IBluetoothAudioProvidersFactory/default.
07-25 04:05:47.453    57    57 W audiohalservice: Could not register Bluetooth Audio API 2.0
07-25 04:05:47.453    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IBluetoothAudioOffload/default in either framework or device manifest.
07-25 04:05:47.453    57    57 E audiohalservice: Could not get passthrough implementation for [email protected]::IBluetoothAudioOffload/default.
07-25 04:05:47.453    57    57 W audiohalservice: Could not register Bluetooth audio offload 1.0
07-25 04:05:47.455    96    96 I ServiceManagement: Registered [email protected]::IOmxStore/default (start delay of 416ms)
07-25 04:05:47.455    96    96 I ServiceManagement: Removing namespace from process name [email protected] to [email protected].
07-25 04:05:47.459    92    92 W IptablesRestoreController: iptables-restore process 134 terminated status=512
07-25 04:05:47.459    92    92 E IptablesRestoreController: iptables error:
07-25 04:05:47.459    92    92 E IptablesRestoreController: ------- COMMAND -------
07-25 04:05:47.459    92    92 E IptablesRestoreController: *filter
07-25 04:05:47.459    92    92 E IptablesRestoreController: :INPUT -
07-25 04:05:47.459    92    92 E IptablesRestoreController: -F INPUT
07-25 04:05:47.459    92    92 E IptablesRestoreController: :bw_INPUT -
07-25 04:05:47.459    92    92 E IptablesRestoreController: -A INPUT -j bw_INPUT
07-25 04:05:47.459    92    92 E IptablesRestoreController: :fw_INPUT -
07-25 04:05:47.459    92    92 E IptablesRestoreController: -A INPUT -j fw_INPUT
07-25 04:05:47.459    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.459    92    92 E IptablesRestoreController:
07-25 04:05:47.459    92    92 E IptablesRestoreController: -------  ERROR -------
07-25 04:05:47.459    92    92 E IptablesRestoreController: ip6tables-restore v1.6.1: ip6tables-restore: unable to initialize table 'filter'
07-25 04:05:47.459    92    92 E IptablesRestoreController:
07-25 04:05:47.459    92    92 E IptablesRestoreController: Error occurred at line: 1
07-25 04:05:47.459    92    92 E IptablesRestoreController: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
07-25 04:05:47.459    92    92 E IptablesRestoreController: ----------------------
07-25 04:05:47.463    99    99 I gatekeeperd: Starting gatekeeperd...
07-25 04:05:47.466    92    92 W IptablesRestoreController: iptables-restore process 149 terminated status=512
07-25 04:05:47.467    69    69 I FastMixerState: sMaxFastTracks = 8
07-25 04:05:47.468    69    69 V MediaUtils: physMem: 4294967295
07-25 04:05:47.468    69    69 V MediaUtils: requested limit: 536870912
07-25 04:05:47.468    69    69 I libc    : malloc_limit: Allocation limit enabled, max size 536870912 bytes
07-25 04:05:47.468    69    69 I audioserver: ServiceManager: 0xebe14320
07-25 04:05:47.468    69    69 W BatteryNotifier: batterystats service unavailable!
07-25 04:05:47.469    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IDevicesFactory/default in either framework or device manifest.
07-25 04:05:47.473    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IDevicesFactory/msd in either framework or device manifest.
07-25 04:05:47.473    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IEffectsFactory/default in either framework or device manifest.
07-25 04:05:47.475    69    69 I AudioFlinger: Using default 3000 mSec as standby time.
07-25 04:05:47.475    69    69 E APM::Serializer: deserialize: Could not parse /odm/etc/audio_policy_configuration.xml document.
07-25 04:05:47.477    69    69 E APM::AudioPolicyEngine/Config: parse: Could not parse document /vendor/etc/audio_policy_engine_configuration.xml
07-25 04:05:47.477    69    69 W APM::AudioPolicyEngine/Base: loadAudioPolicyEngineConfig: No configuration found, using default matching phone experience.
07-25 04:05:47.477    69    69 E APM::AudioPolicyEngine/Config: parseLegacyVolumeFile: Could not parse document /odm/etc/audio_policy_configuration.xml
07-25 04:05:47.483    92    92 W IptablesRestoreController: iptables-restore process 154 terminated status=512
07-25 04:05:47.483    92    92 E IptablesRestoreController: iptables error:
07-25 04:05:47.483    92    92 E IptablesRestoreController: ------- COMMAND -------
07-25 04:05:47.483    92    92 E IptablesRestoreController: *raw
07-25 04:05:47.483    92    92 E IptablesRestoreController: :PREROUTING -
07-25 04:05:47.483    92    92 E IptablesRestoreController: -F PREROUTING
07-25 04:05:47.483    92    92 E IptablesRestoreController: :clat_raw_PREROUTING -
07-25 04:05:47.483    92    92 E IptablesRestoreController: -A PREROUTING -j clat_raw_PREROUTING
07-25 04:05:47.483    92    92 E IptablesRestoreController: :bw_raw_PREROUTING -
07-25 04:05:47.483    92    92 E IptablesRestoreController: -A PREROUTING -j bw_raw_PREROUTING
07-25 04:05:47.483    92    92 E IptablesRestoreController: :idletimer_raw_PREROUTING -
07-25 04:05:47.483    92    92 E IptablesRestoreController: -A PREROUTING -j idletimer_raw_PREROUTING
07-25 04:05:47.483    92    92 E IptablesRestoreController: :tetherctrl_raw_PREROUTING -
07-25 04:05:47.483    92    92 E IptablesRestoreController: -A PREROUTING -j tetherctrl_raw_PREROUTING
07-25 04:05:47.483    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.483    92    92 E IptablesRestoreController:
07-25 04:05:47.483    92    92 E IptablesRestoreController: -------  ERROR -------
07-25 04:05:47.483    92    92 E IptablesRestoreController: ip6tables-restore v1.6.1: ip6tables-restore: unable to initialize table 'raw'
07-25 04:05:47.483    92    92 E IptablesRestoreController:
07-25 04:05:47.483    92    92 E IptablesRestoreController: Error occurred at line: 1
07-25 04:05:47.483    92    92 E IptablesRestoreController: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
07-25 04:05:47.483    92    92 E IptablesRestoreController: ----------------------
07-25 04:05:47.485    57    57 W DeviceHAL: Error from HAL Device in function get_master_volume: Function not implemented
07-25 04:05:47.485    57    57 W DeviceHAL: Error from HAL Device in function get_master_mute: Function not implemented
07-25 04:05:47.485    57    57 W DeviceHAL: Error from HAL Device in function set_master_volume: Function not implemented
07-25 04:05:47.485    57    57 W DeviceHAL: Error from HAL Device in function set_master_mute: Function not implemented
07-25 04:05:47.485    69    69 I AudioFlinger: loadHwModule() Loaded primary audio interface, handle 10
07-25 04:05:47.485    69    69 I AudioFlinger: openOutput() this 0xebe55000, module 10 Device 0x2, SamplingRate 44100, Format 0x000001, Channels 0x3, flags 0x2
07-25 04:05:47.486    69    69 W AudioFlinger: HAL output buffer size is 441 frames but AudioMixer requires multiples of 16 frames
07-25 04:05:47.486    69    69 I AudioFlinger: HAL output buffer size 441 frames, normal sink buffer size 896 frames
07-25 04:05:47.486    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::IEffectsFactory/default in either framework or device manifest.
07-25 04:05:47.489    69    69 I BufferProvider: found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
07-25 04:05:47.489    69   162 I AudioFlinger: AudioFlinger's thread 0xebea9680 tid=162 ready to run
07-25 04:05:47.489    69   162 W AudioFlinger: no wake lock to update, system not ready yet
07-25 04:05:47.489    69    69 I AudioFlinger: Using module 10 as the primary audio interface
07-25 04:05:47.491    69    69 V APM_AudioPolicyManager: checkAndSetVolume cannot set volume group 3 volume with force use = 0 for comm
07-25 04:05:47.492    69   162 W AudioFlinger: no wake lock to update, system not ready yet
07-25 04:05:47.492    57    57 W DeviceHAL: Error from HAL Device in function set_voice_volume: Function not implemented
07-25 04:05:47.492    69    69 W AudioFlinger: moveEffects() bad srcOutput 0
07-25 04:05:47.492    69    69 V APM_AudioPolicyManager: selectOutputForMusicEffects selected output 13
07-25 04:05:47.492    69    69 V APM_AudioPolicyManager: setOutputDevices device {type:0x2,@:} delayMs 0
07-25 04:05:47.492    69    69 V APM_AudioPolicyManager: setOutputDevices() prevDevice {type:0x2,@:}
07-25 04:05:47.492    69    69 V APM_AudioPolicyManager: setOutputDevices changing device to {type:0x2,@:}
07-25 04:05:47.493    69    69 V APM_AudioPolicyManager: setOutputDevices() AF::createAudioPatch returned 0 patchHandle 12 num_sources 1 num_sinks 1
07-25 04:05:47.494    69    69 V APM_AudioPolicyManager: checkAndSetVolume cannot set volume group 3 volume with force use = 0 for comm
07-25 04:05:47.496    69   163 I AudioFlinger: AudioFlinger's thread 0xe854c5c0 tid=163 ready to run
07-25 04:05:47.496    69   163 W AudioFlinger: no wake lock to update, system not ready yet
07-25 04:05:47.497    69   163 W AudioFlinger: no wake lock to update, system not ready yet
07-25 04:05:47.498    57    57 I r_submix: adev_open(name=audio_hw_if)
07-25 04:05:47.498    57    57 I r_submix: adev_init_check()
07-25 04:05:47.498    57    57 W DeviceHAL: Error from HAL Device in function set_master_volume: Function not implemented
07-25 04:05:47.498    57    57 W DeviceHAL: Error from HAL Device in function set_master_mute: Function not implemented
07-25 04:05:47.498    69    69 I AudioFlinger: loadHwModule() Loaded r_submix audio interface, handle 18
07-25 04:05:47.498    57    57 D r_submix: adev_open_input_stream(addr=0)
07-25 04:05:47.498    57    57 D r_submix: submix_audio_device_create_pipe_l(addr=0, idx=9)
07-25 04:05:47.498    57    57 D r_submix:   now using address 0 for route 9
07-25 04:05:47.501    69   165 I AudioFlinger: AudioFlinger's thread 0xe854c4c0 tid=165 ready to run
07-25 04:05:47.501    57    57 D r_submix: adev_close_input_stream()
07-25 04:05:47.501    57    57 D r_submix: submix_audio_device_release_pipe_l(idx=9) addr=0
07-25 04:05:47.501    57    57 D r_submix: submix_audio_device_destroy_pipe_l(): pipe destroyed
07-25 04:05:47.502    69    69 I         : Waiting for activity service
07-25 04:05:47.504    72    72 I SurfaceFlinger: Using HWComposer service: 'default'
07-25 04:05:47.504    72    72 I SurfaceFlinger: SurfaceFlinger is starting
07-25 04:05:47.505    19    19 I hwservicemanager: getTransport: Cannot find entry [email protected]::ISurfaceFlingerConfigs/default in either framework or device manifest.
07-25 04:05:47.505    72    72 I SurfaceFlinger: Treble testing override: 'false'
07-25 04:05:47.505    72    72 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
07-25 04:05:47.505    72    72 I SurfaceFlinger: Phase offset NS: 1000000
07-25 04:05:47.505    72   171 W SurfaceFlinger: Ignoring VSYNC request while display is disconnected
07-25 04:05:47.505    72   171 W SurfaceFlinger: Ignoring VSYNC request while display is disconnected
07-25 04:05:47.505    72   172 W SurfaceFlinger: Ignoring VSYNC request while display is disconnected
07-25 04:05:47.505    72   172 W SurfaceFlinger: Ignoring VSYNC request while display is disconnected
07-25 04:05:47.505    72    72 D RenderEngine: RenderEngine GLES Backend
07-25 04:05:47.505    72    72 D libEGL  : Emulator has vendor provided software renderer, qemu.gles is set to 2.
07-25 04:05:47.506    72    72 E vndksupport: Could not load /vendor/lib/egl/libEGL_angle.so from sphal namespace: dlopen failed: library "libGLESv2_angle.so" not found.
07-25 04:05:47.506    72    72 E libEGL  : load_driver(/vendor/lib/egl/libEGL_angle.so): unknown
07-25 04:05:47.506    72    72 F libEGL  : couldn't find an OpenGL ES implementation, make sure you set ro.hardware.egl or ro.board.platform
--------- beginning of crash
07-25 04:05:47.506    72    72 F libc    : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 72 (surfaceflinger), pid 72 (surfaceflinger)
07-25 04:05:47.513   177   177 I crash_dump32: obtaining output fd from tombstoned, type: kDebuggerdTombstone
07-25 04:05:47.513   100   100 I /system/bin/tombstoned: received crash request for pid 72
07-25 04:05:47.513   177   177 I crash_dump32: performing dump of process 72 (target tid = 72)
07-25 04:05:47.514   177   177 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
07-25 04:05:47.514   177   177 F DEBUG   : Build fingerprint: 'samsung/a01coreub/a01core:10/QP1A.190711.020/A013MUBS3AWC1:user/test-keys'
07-25 04:05:47.514   177   177 F DEBUG   : Revision: '0'
07-25 04:05:47.514   177   177 F DEBUG   : ABI: 'arm'
07-25 04:05:47.514   177   177 F DEBUG   : Timestamp: 2024-07-25 04:05:47+0000
07-25 04:05:47.514   177   177 F DEBUG   : pid: 72, tid: 72, name: surfaceflinger  >>> /system/bin/surfaceflinger <<<
07-25 04:05:47.514   177   177 F DEBUG   : uid: 1000
07-25 04:05:47.514   177   177 F DEBUG   : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
07-25 04:05:47.514   177   177 F DEBUG   : Abort message: 'couldn't find an OpenGL ES implementation, make sure you set ro.hardware.egl or ro.board.platform'
07-25 04:05:47.514   177   177 F DEBUG   :     r0  00000000  r1  00000048  r2  00000006  r3  ff9906f0
07-25 04:05:47.514   177   177 F DEBUG   :     r4  ff990704  r5  ff9906e8  r6  00000048  r7  0000016b
07-25 04:05:47.514   177   177 F DEBUG   :     r8  ff990700  r9  ff9906f0  r10 ff990720  r11 ff990710
07-25 04:05:47.514   177   177 F DEBUG   :     ip  00000048  sp  ff9906c0  lr  f2724c43  pc  f2724c56
07-25 04:05:47.525    92    92 W IptablesRestoreController: iptables-restore process 180 terminated status=512
07-25 04:05:47.531    92    92 W IptablesRestoreController: iptables-restore process 182 terminated status=512
07-25 04:05:47.536    92    92 W IptablesRestoreController: iptables-restore process 184 terminated status=512
07-25 04:05:47.541    92    92 W IptablesRestoreController: iptables-restore process 186 terminated status=512
07-25 04:05:47.542    92    92 E IptablesRestoreController: iptables error:
07-25 04:05:47.542    92    92 E IptablesRestoreController: ------- COMMAND -------
07-25 04:05:47.542    92    92 E IptablesRestoreController: *filter
07-25 04:05:47.542    92    92 E IptablesRestoreController: :oem_out -
07-25 04:05:47.542    92    92 E IptablesRestoreController: -A OUTPUT -j oem_out
07-25 04:05:47.542    92    92 E IptablesRestoreController: :fw_OUTPUT -
07-25 04:05:47.542    92    92 E IptablesRestoreController: -A OUTPUT -j fw_OUTPUT
07-25 04:05:47.542    92    92 E IptablesRestoreController: :st_OUTPUT -
07-25 04:05:47.542    92    92 E IptablesRestoreController: -A OUTPUT -j st_OUTPUT
07-25 04:05:47.542    92    92 E IptablesRestoreController: :bw_OUTPUT -
07-25 04:05:47.542    92    92 E IptablesRestoreController: -A OUTPUT -j bw_OUTPUT
07-25 04:05:47.542    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.542    92    92 E IptablesRestoreController:
07-25 04:05:47.542    92    92 E IptablesRestoreController: -------  ERROR -------
07-25 04:05:47.542    92    92 E IptablesRestoreController: ip6tables-restore v1.6.1: ip6tables-restore: unable to initialize table 'filter'
07-25 04:05:47.542    92    92 E IptablesRestoreController:
07-25 04:05:47.542    92    92 E IptablesRestoreController: Error occurred at line: 1
07-25 04:05:47.542    92    92 E IptablesRestoreController: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
07-25 04:05:47.542    92    92 E IptablesRestoreController: ----------------------
07-25 04:05:47.546    92    92 W IptablesRestoreController: iptables-restore process 188 terminated status=512
07-25 04:05:47.550    92    92 W IptablesRestoreController: iptables-restore process 190 terminated status=512
07-25 04:05:47.551    92    92 I netd    : Creating child chains: 122.8ms
07-25 04:05:47.551    92    92 I netd    : Setting up OEM hooks: 0.1ms
07-25 04:05:47.551    92    92 I netd    : Setting up FirewallController hooks: 0.0ms
07-25 04:05:47.555    92    92 W IptablesRestoreController: iptables-restore process 192 terminated status=512
07-25 04:05:47.555    92    92 E IptablesRestoreController: iptables error:
07-25 04:05:47.555    92    92 E IptablesRestoreController: ------- COMMAND -------
07-25 04:05:47.555    92    92 E IptablesRestoreController: *filter
07-25 04:05:47.555    92    92 E IptablesRestoreController: :tetherctrl_FORWARD -
07-25 04:05:47.555    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.555    92    92 E IptablesRestoreController: *raw
07-25 04:05:47.555    92    92 E IptablesRestoreController: :tetherctrl_raw_PREROUTING -
07-25 04:05:47.555    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.555    92    92 E IptablesRestoreController:
07-25 04:05:47.555    92    92 E IptablesRestoreController: -------  ERROR -------
07-25 04:05:47.555    92    92 E IptablesRestoreController: ip6tables-restore v1.6.1: ip6tables-restore: unable to initialize table 'filter'
07-25 04:05:47.555    92    92 E IptablesRestoreController:
07-25 04:05:47.555    92    92 E IptablesRestoreController: Error occurred at line: 1
07-25 04:05:47.555    92    92 E IptablesRestoreController: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
07-25 04:05:47.555    92    92 E IptablesRestoreController: ----------------------
07-25 04:05:47.564    92    92 W IptablesRestoreController: iptables-restore process 194 terminated status=512
07-25 04:05:47.564    92    92 I netd    : Setting up TetherController hooks: 13.2ms
07-25 04:05:47.567   177   177 F DEBUG   :
07-25 04:05:47.567   177   177 F DEBUG   : backtrace:
07-25 04:05:47.568   177   177 F DEBUG   :       #00 pc 0005ec56  /apex/com.android.runtime/lib/bionic/libc.so (abort+166) (BuildId: c64506b4d754b37c930d77c0aadcf0fa)
07-25 04:05:47.568   177   177 F DEBUG   :       #01 pc 00005a1d  /system/lib/liblog.so (__android_log_assert+176) (BuildId: 39c5c5ff515f7936fadc476e0d8e4872)
07-25 04:05:47.568   177   177 F DEBUG   :       #02 pc 000192ad  /system/lib/libEGL.so (android::Loader::open(android::egl_connection_t*)+772) (BuildId: 9c077f0f22a38f0ef41b19770721e8ec)
07-25 04:05:47.568   177   177 F DEBUG   :       #03 pc 000139ef  /system/lib/libEGL.so (android::egl_init_drivers()+46) (BuildId: 9c077f0f22a38f0ef41b19770721e8ec)
07-25 04:05:47.568   177   177 F DEBUG   :       #04 pc 00013c11  /system/lib/libEGL.so (eglGetDisplay+40) (BuildId: 9c077f0f22a38f0ef41b19770721e8ec)
07-25 04:05:47.568   177   177 F DEBUG   :       #05 pc 000bcf71  /system/lib/libsurfaceflinger.so (android::renderengine::gl::GLESRenderEngine::create(int, unsigned int, unsigned int)+32) (BuildId: 653450518fa38bf1a02f45ddabfb3774)
07-25 04:05:47.568   177   177 F DEBUG   :       #06 pc 000bce59  /system/lib/libsurfaceflinger.so (android::renderengine::RenderEngine::create(int, unsigned int, unsigned int)+92) (BuildId: 653450518fa38bf1a02f45ddabfb3774)
07-25 04:05:47.568   177   177 F DEBUG   :       #07 pc 0008901b  /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+810) (BuildId: 653450518fa38bf1a02f45ddabfb3774)
07-25 04:05:47.568   177   177 F DEBUG   :       #08 pc 00003149  /system/bin/surfaceflinger (main+256) (BuildId: 6ead6552cc57264408bb362727899337)
07-25 04:05:47.568   177   177 F DEBUG   :       #09 pc 00059213  /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+66) (BuildId: c64506b4d754b37c930d77c0aadcf0fa)
07-25 04:05:47.568   177   177 F DEBUG   :       #10 pc 00003033  /system/bin/surfaceflinger (_start_main+42) (BuildId: 6ead6552cc57264408bb362727899337)
07-25 04:05:47.568   177   177 F DEBUG   :       #11 pc 0002eea7  /apex/com.android.runtime/bin/linker (__dl__ZN6soinfoD1Ev+14) (BuildId: 5a8dae746406874f62cc0c3f6e7196b6)
07-25 04:05:47.568   177   177 F DEBUG   :       #12 pc 0002098e  [stack]
07-25 04:05:47.568    92    92 W IptablesRestoreController: iptables-restore process 196 terminated status=512
07-25 04:05:47.568    92    92 E IptablesRestoreController: iptables error:
07-25 04:05:47.568    92    92 E IptablesRestoreController: ------- COMMAND -------
07-25 04:05:47.568    92    92 E IptablesRestoreController: *filter
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_INPUT -
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_OUTPUT -
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_FORWARD -
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_happy_box -
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_penalty_box -
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_data_saver -
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_costly_shared -
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_global_alert -
07-25 04:05:47.568    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.568    92    92 E IptablesRestoreController: *raw
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_raw_PREROUTING -
07-25 04:05:47.568    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.568    92    92 E IptablesRestoreController: *mangle
07-25 04:05:47.568    92    92 E IptablesRestoreController: :bw_mangle_POSTROUTING -
07-25 04:05:47.568    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.568    92    92 E IptablesRestoreController:
07-25 04:05:47.568    92    92 E IptablesRestoreController: -------  ERROR -------
07-25 04:05:47.568    92    92 E IptablesRestoreController: ip6tables-restore v1.6.1: ip6tables-restore: unable to initialize table 'filter'
07-25 04:05:47.568    92    92 E IptablesRestoreController:
07-25 04:05:47.568    92    92 E IptablesRestoreController: Error occurred at line: 1
07-25 04:05:47.568    92    92 E IptablesRestoreController: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
07-25 04:05:47.568    92    92 E IptablesRestoreController: ----------------------
07-25 04:05:47.568    92    92 I netd    : Setting up BandwidthController hooks: 4.6ms
07-25 04:05:47.568    92    92 I netd    : Setting up IdletimerController hooks: 0.0ms
07-25 04:05:47.573    92    92 W IptablesRestoreController: iptables-restore process 198 terminated status=512
07-25 04:05:47.597   177   177 E crash_dump32: unable to connect to activity manager: No such file or directory
07-25 04:05:47.597   100   100 E /system/bin/tombstoned: Tombstone written to: /data/tombstones/tombstone_08
07-25 04:05:47.602    72    72 F libc    : failed to restore dumpable: Invalid argument
07-25 04:05:47.615    57   126 I r_submix: adev_close()
07-25 04:05:47.616    13    13 I ServiceManager: service 'media.audio_flinger' died
07-25 04:05:47.616    92    92 W IptablesRestoreController: iptables-restore process 200 terminated status=512
07-25 04:05:47.616    92    92 E IptablesRestoreController: iptables error:
07-25 04:05:47.616    92    92 E IptablesRestoreController: ------- COMMAND -------
07-25 04:05:47.616    92    92 E IptablesRestoreController: *filter
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_penalty_log -j CONNMARK --or-mark 0x1000000
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_penalty_log -j NFLOG --nflog-group 0
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_penalty_reject -j CONNMARK --or-mark 0x2000000
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_penalty_reject -j NFLOG --nflog-group 0
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_penalty_reject -j REJECT
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_clear_detect -m connmark --mark 0x2000000/0x2000000 -j REJECT
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_clear_detect -m connmark --mark 0x1000000/0x1000000 -j RETURN
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_clear_detect -p tcp -m u32 --u32 "52>>26&0x3C@ 40&0xFFFF0000=0x16030000 &&52>>26&0x3C@ 44&0x00FF0000=0x00010000" -j CONNMARK --or-mark 0x1000000
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_clear_detect -p udp -m u32 --u32 "48&0xFFFF0000=0x16FE0000 &&60&0x00FF0000=0x00010000" -j CONNMARK --or-mark 0x1000000
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_clear_detect -m connmark --mark 0x1000000/0x1000000 -j RETURN
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_clear_detect -p tcp -m state --state ESTABLISHED -m u32 --u32 "52>>26&0x3C@ 40&0x0=0x0" -j st_clear_caught
07-25 04:05:47.616    92    92 E IptablesRestoreController: -A st_clear_detect -p udp -j st_clear_caught
07-25 04:05:47.616    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.616    92    92 E IptablesRestoreController:
07-25 04:05:47.616    92    92 E IptablesRestoreController: -------  ERROR -------
07-25 04:05:47.616    92    92 E IptablesRestoreController: ip6tables-restore v1.6.1: ip6tables-restore: unable to initialize table 'filter'
07-25 04:05:47.616    92    92 E IptablesRestoreController:
07-25 04:05:47.616    92    92 E IptablesRestoreController: E
07-25 04:05:47.616    92    92 I netd    : Setting up StrictController hooks: 47.7ms
07-25 04:05:47.616    92    92 I ClatdController: 4.9+ kernel and device shipped with Q+ - clat ebpf should work.
07-25 04:05:47.616    92    92 I netd    : Initializing ClatdController: 0.1ms
07-25 04:05:47.620    92    92 I netd    : Initializing traffic control: 4.1ms
07-25 04:05:47.626    13    13 I ServiceManager: service 'media.player' died
07-25 04:05:47.626    13    13 I ServiceManager: service 'media.resource_manager' died
07-25 04:05:47.626    92    92 W IptablesRestoreController: iptables-restore process 204 terminated status=512
07-25 04:05:47.626    92    92 E IptablesRestoreController: iptables error:
07-25 04:05:47.626    92    92 E IptablesRestoreController: ------- COMMAND -------
07-25 04:05:47.626    92    92 E IptablesRestoreController: *filter
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_INPUT -
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_OUTPUT -
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_FORWARD -
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_happy_box -
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_penalty_box -
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_data_saver -
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_costly_shared -
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_global_alert -
07-25 04:05:47.626    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.626    92    92 E IptablesRestoreController: *raw
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_raw_PREROUTING -
07-25 04:05:47.626    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.626    92    92 E IptablesRestoreController: *mangle
07-25 04:05:47.626    92    92 E IptablesRestoreController: :bw_mangle_POSTROUTING -
07-25 04:05:47.626    92    92 E IptablesRestoreController: COMMIT
07-25 04:05:47.626    92    92 E IptablesRestoreController:
07-25 04:05:47.626    92    92 E IptablesRestoreController: -------  ERROR -------
07-25 04:05:47.626    92    92 E IptablesRestoreController: ip6tables-restore v1.6.1: ip6tables-restore: unable to initialize table 'filter'
07-25 04:05:47.626    92    92 E IptablesRestoreController:
07-25 04:05:47.626    92    92 E IptablesRestoreController: Error occurred at line: 1
07-25 04:05:47.626    92    92 E IptablesRestoreController: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
07-25 04:05:47.626    92    92 E IptablesRestoreController: ----------------------
07-25 04:05:47.665    13    13 I ServiceManager: service 'wificond' died

So, I edited ~/redroid/external/angle/Android.bp and added vendor: true, (same as > v12.0.0 code) to the 3 modules and vendor_available: true, to the dependencies

Now I get this

frameworks/native/libs/nativewindow/include/android/hardware_buffer.h:52:10: fatal error: 'android/rect.h' file not found

Seems it just gets more complicated everytime.
Any ideas @zhouziyang , do you think this can work?

from redroid-doc.

zhouziyang avatar zhouziyang commented on July 26, 2024

How about swiftshader in redroid 11 (not backport angle)?
Try run a 32bit apk in redroid 11 / 12, and make sure the software rendering (swiftshader / angle) working as expected.

BTW, modern apps are moving to 64bit. And possible to give up your legacy platform...

from redroid-doc.

brunoaduarte avatar brunoaduarte commented on July 26, 2024

How about swiftshader in redroid 11 (not backport angle)? Try run a 32bit apk in redroid 11 / 12, and make sure the software rendering (swiftshader / angle) working as expected.

BTW, modern apps are moving to 64bit. And possible to give up your legacy platform...

I need the Redroid 10 version specifically...

from redroid-doc.

Related Issues (20)

Recommend Projects

  • React photo React

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

  • Vue.js photo Vue.js

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

  • Typescript photo Typescript

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

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

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

Recommend Topics

  • javascript

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

  • web

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

  • server

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

  • Machine learning

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

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

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

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.