adb操作遇到Permission denied和operation not permitted相关

解决ADB权限问题
本文介绍了解决使用ADB命令时遇到的权限拒绝问题的方法,包括如何通过adb root、adb remount等命令获取更高权限,以及如何使用chmod命令改变文件权限。

用adb 操作真机 经常遇到各种各样的

Permission denied

Operation not permitted

(手机已经root)


使用adb push 命令 提示Operation not permitted时

$ adb root

adbd is already running as root

(adb取得root权限,你发现adb shell 进去以后 直接时root权限#  而不是XXXX$)

$adb remount

$abd push XXXX /system/bin



给文件或文件夹赋予可读可写可执行权限:

chmod 777 xxxxx

chmod -R 777 /xxxxx


有时chmod 777失败时,重新挂载所有分区:

su

mount

mount -o remount,rw /

(或仅仅重新可读写挂载system分区,mount -o remount,rw /system)







01-01 13:02:33.162 863 863 D Zygote : Forked child process 7448 01-01 13:02:33.162 1664 1820 I ActivityManager: Start proc 7448:com.google.android.partnersetup/u0a117 for broadcast {com.google.android.partnersetup/com.google.android.partnersetup.PhoneStateReceiver} 01-01 13:02:33.162 1664 1820 I ActivityManager: mPidMap put ProcessRecord{24812d1 7448:com.google.android.partnersetup/u0a117} 01-01 13:02:33.162 1664 1778 I ActivityManager: ProcessObserver broadcast disabled 01-01 13:02:33.162 1664 1820 D OStatsManager_OplusBatteryStatsEventManager: onProcessStarted : pid = 7448processUid = 10117packageUid = 10117packageName = com.google.android.partnersetupprocessName = com.google.android.partnersetup 01-01 13:02:33.163 1664 5354 I OStatsManager_OplusBatteryStatsManager: updateStateTime: PkgName = com.google.android.partnersetup, uid = 10117, state to bg, mForegroundCnt = 0, isFg = false 01-01 13:02:33.163 1664 5354 D OStatsManager_OplusBatteryStatsManager: noteProcessCreate [7448], uid = 10117, pkgName = com.google.android.partnersetup, pid = 7448, processName = com.google.android.partnersetup 01-01 13:02:33.165 7448 7448 E libprocessgroup: Failed to write '10117' to /dev/memcg/apps/uid_10117//memory.app_uid: Permission denied 01-01 13:02:33.165 7448 7448 F app_process: jni_internal.cc:826] JNI FatalError called: (com.google.android.partnersetup) frameworks/base/core/jni/com_android_internal_os_Zygote.cpp:2025: createProcessGroup(10117, 0) failed: Permission denied 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] Runtime aborting... 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] Dumping all threads without mutator lock held 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] All threads: 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] DALVIK THREADS (1): 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] "main" prio=5 tid=1 Runnable 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | group="" sCount=0 ucsCount=0 flags=0 obj=0x751e8f88 self=0xb400007d5f8d0000 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | sysTid=863 nice=0 cgrp=default sched=0/0 handle=0x7e13039098 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | state=? schedstat=( 0 0 0 ) utm=0 stm=0 core=0 HZ=100 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | stack=0x7fc901e000-0x7fc9020000 stackSize=8188KB 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | held mutexes= "abort lock" "mutator lock"(shared held) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] native: (Unwind failed for thread 863: Thread Does Not Exist) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.nativeSpecializeAppProcess(Native method) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.specializeAppProcess(Zygote.java:538) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.childMain(Zygote.java:1000) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.forkSimpleApps(Zygote.java:854) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteConnection.processCommand(ZygoteConnection.java:294) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteServer.runSelectLoop(ZygoteServer.java:575) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1061) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] Aborting thread: 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] "main" prio=5 tid=1 Native 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | group="" sCount=0 ucsCount=0 flags=0 obj=0x751e8f88 self=0xb400007d5f8d0000 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | sysTid=863 nice=0 cgrp=default sched=0/0 handle=0x7e13039098 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | state=? schedstat=( 0 0 0 ) utm=0 stm=0 core=0 HZ=100 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | stack=0x7fc901e000-0x7fc9020000 stackSize=8188KB 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | held mutexes= "abort lock" "mutator lock"(shared held) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] native: (Unwind failed for thread 863: Thread Does Not Exist) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.nativeSpecializeAppProcess(Native method) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.specializeAppProcess(Zygote.java:538) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.childMain(Zygote.java:1000) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.forkSimpleApps(Zygote.java:854) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteConnection.processCommand(ZygoteConnection.java:294) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteServer.runSelectLoop(ZygoteServer.java:575) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1061) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] 01-01 13:02:33.178 7448 7448 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 7448 (main), pid 7448 (main) 01-01 13:02:33.186 7450 7450 E libc : capset failed: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 0: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 1: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 2: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 3: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 4: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 5: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 6: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 7: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 8: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 9: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 10: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 11: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 12: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 13: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 14: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 15: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 16: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 17: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 18: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 19: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 20: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 21: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 22: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 23: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 24: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 25: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 26: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 27: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 28: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 29: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 30: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 31: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 32: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 33: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 34: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 35: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 36: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 37: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 38: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 39: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 40: Operation not permitted 01-01 13:02:33.200 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/0: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/1: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/2: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/3: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/4: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/5: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/7: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/8: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/9: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/10: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/11: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/12: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/13: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/14: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/15: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/16: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/17: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/18: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/19: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/20: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/21: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/22: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/23: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/24: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/25: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/26: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/27: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/28: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/29: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/30: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/31: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/32: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/33: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/34: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/35: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/36: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/37: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/38: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/39: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/40: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/41: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/42: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/43: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/44: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/45: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/46: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/47: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/48: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/49: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/50: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/51: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/52: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/53: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/54: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/55: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/56: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/57: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/58: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/59: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/60: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/61: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/62: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/63: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/64: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/65: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/66: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/67: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/68: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/69: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/70: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/71: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/72: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/73: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/74: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/75: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/76: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/77: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/78: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/79: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/80: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/81: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/82: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/83: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/84: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/85: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/86: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/87: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/88: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/89: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/90: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/91: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/92: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/93: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/94: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/95: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/96: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/97: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/98: Permission denied 01-01 13:02:33.202 7451 7451 F crash_dump64: crash_dump.cpp:671] failed to attach to thread 7448: Operation not permitted 01-01 13:02:33.202 702 702 I tombstoned: received crash request for pid 7448 01-01 13:02:33.202 702 702 E tombstoned: unexpected dump type: kDebuggerdAnyIntercept 01-01 13:02:33.202 702 702 E tombstoned: failed to get crash output for type kDebuggerdAnyIntercept 01-01 13:02:33.203 7451 7451 E libc : failed to read response to DumpRequest packet: No message of desired type 01-01 13:02:33.203 7451 7451 E crash_dump64: failed to connected to tombstoned to report failure 01-01 13:02:33.204 7448 7448 F libc : Crash due to signal: crash_dump helper failed to exec, or was killed 01-01 13:02:33.212 863 863 I Zygote : Process 7448 exited due to signal 6 (Aborted)
最新发布
07-19
25-06-13 21:58:06.756 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.763 29781-29781 cmd cmd E BBinder_init Processname cmd 2025-06-13 21:58:06.763 29781-29781 cmd cmd E BBinder_init hasGetProcessName cmd 2025-06-13 21:58:06.768 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339476, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.769 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339482, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.769 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339486, BR_*: 29201, error: -1 (Operation not permitted) 1970-01-01 08:00:00.000 0-0 <no-tag> I ---------------------------- PROCESS ENDED (11034) for package com.example.kucun2 ---------------------------- 2025-06-13 21:58:06.770 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339490, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.770 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339494, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.771 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339498, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.771 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339502, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.772 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339510, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.773 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339521, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.773 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339529, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.774 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339543, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.774 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339553, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.763 29776-29776 service service W type=1400 audit(0.0:1569230): avc: denied { call } for scontext=u:r:shell:s0 tcontext=u:r:hal_audio_default:s0 tclass=binder permissive=0 2025-06-13 21:58:06.763 29776-29776 service service W type=1400 audit(0.0:1569231): avc: denied { call } for scontext=u:r:shell:s0 tcontext=u:r:hal_audio_default:s0 tclass=binder permissive=0 2025-06-13 21:58:06.763 29776-29776 service service W type=1400 audit(0.0:1569232): avc: denied { call } for scontext=u:r:shell:s0 tcontext=u:r:hal_audio_default:s0 tclass=binder permissive=0 2025-06-13 21:58:06.763 29776-29776 service service W type=1400 audit(0.0:1569233): avc: denied { call } for scontext=u:r:shell:s0 tcontext=u:r:hal_audio_default:s0 tclass=binder permissive=0 2025-06-13 21:58:06.767 29776-29776 service service W type=1400 audit(0.0:1569234): avc: denied { call } for scontext=u:r:shell:s0 tcontext=u:r:hal_audio_default:s0 tclass=binder permissive=0 2025-06-13 21:58:06.767 29776-29776 service service W type=1400 audit(0.0:1569235): avc: denied { call } for scontext=u:r:shell:s0 tcontext=u:r:hal_audio_default:s0 tclass=binder permissive=0 2025-06-13 21:58:06.767 29776-29776 service service W type=1400 audit(0.0:1569236): avc: denied { call } for scontext=u:r:shell:s0 tcontext=u:r:hal_faceunlock_native:s0 tclass=binder permissive=0 2025-06-13 21:58:06.767 29776-29776 service service W type=1400 audit(0.0:1569237): avc: denied { call } for scontext=u:r:shell:s0 tcontext=u:r:vivo_hal_fingerprint:s0 tclass=binder permissive=0 2025-06-13 21:58:06.781 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339634, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.781 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339638, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.781 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339642, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.783 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339676, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.783 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339681, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.784 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339707, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.785 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339711, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.785 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339727, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.786 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339746, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.787 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339752, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.787 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339756, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.795 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339918, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.795 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339929, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.796 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339946, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.796 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339951, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.796 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339959, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.796 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339963, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.797 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339967, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.797 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339971, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.798 29776-29776 IPCThreadState service E Binder transaction failure. id: 123339993, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.798 29776-29776 IPCThreadState service E Binder transaction failure. id: 123340002, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.798 29776-29776 IPCThreadState service E Binder transaction failure. id: 123340010, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.799 29776-29776 IPCThreadState service E Binder transaction failure. id: 123340022, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.799 29776-29776 IPCThreadState service E Binder transaction failure. id: 123340029, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.813 29776-29776 IPCThreadState service E Binder transaction failure. id: 123340249, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.813 29776-29776 IPCThreadState service E Binder transaction failure. id: 123340257, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.814 29776-29776 IPCThreadState service E Binder transaction failure. id: 123340275, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.815 29776-29776 IPCThreadState service E Binder transaction failure. id: 123340283, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.816 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.822 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.827 29776-29776 IPCThreadState service E Binder transaction failure. id: 123340436, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.827 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.828 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.843 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.854 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.855 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.859 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.860 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.863 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.873 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.885 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.907 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.913 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.918 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.932 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.936 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.963 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.964 29776-29776 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:06.973 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343305, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.974 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343310, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.974 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343314, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.974 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343319, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.975 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343334, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.976 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343338, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.976 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343342, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.976 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343346, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.976 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343350, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.977 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343354, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.977 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343359, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.977 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343363, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.977 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343367, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.978 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343371, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.978 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343375, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.978 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343379, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.979 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343383, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.979 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343387, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.980 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343402, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.980 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343406, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.980 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343410, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.983 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343460, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.983 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343470, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.984 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343474, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.984 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343485, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.984 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343489, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.985 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343493, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.985 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343497, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.985 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343502, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.985 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343506, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.986 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343510, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.986 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343514, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.986 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343518, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.986 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343523, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.987 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343528, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.992 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343650, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.992 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343654, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.992 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343658, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.993 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343662, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.993 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343666, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.993 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343670, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.993 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343674, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.993 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343679, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.994 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343683, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.994 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343687, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.994 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343691, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.994 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343695, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.995 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343699, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.995 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343703, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.995 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343707, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.995 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343711, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.996 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343715, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.996 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343722, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.996 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343729, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.997 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343739, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.997 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343743, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.998 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343747, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.998 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343751, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.998 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343757, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.998 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343762, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.999 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343767, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:06.999 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343778, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.000 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343782, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.000 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343786, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.001 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343795, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.001 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343800, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.001 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343804, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.001 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343808, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.002 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343823, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.003 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343827, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.003 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343831, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.003 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343835, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.003 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343839, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.004 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343843, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.004 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343847, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.004 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343851, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.004 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343859, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.005 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343865, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.005 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343869, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.005 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343873, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.005 29776-29776 IPCThreadState service E Binder transaction failure. id: 123343878, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.025 29776-29776 IPCThreadState service E Binder transaction failure. id: 123344162, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.201 29822-29822 cmd cmd E BBinder_init Processname cmd 2025-06-13 21:58:07.201 29822-29822 cmd cmd E BBinder_init hasGetProcessName cmd 2025-06-13 21:58:07.237 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.247 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344792, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.247 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344796, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.248 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344803, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.248 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344808, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.249 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344814, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.249 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344818, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.250 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344822, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.250 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344826, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.251 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344830, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.251 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344834, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.252 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344839, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.252 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344843, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.252 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344847, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.252 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344851, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.253 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344855, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.255 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344889, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.256 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344895, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.257 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344911, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.257 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344916, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.257 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344921, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.259 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344940, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.259 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344944, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.259 29825-29825 IPCThreadState service E Binder transaction failure. id: 123344948, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.264 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345047, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.265 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345053, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.266 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345069, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.266 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345073, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.266 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345077, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.267 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345081, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.267 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345085, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.267 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345089, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.267 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345093, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.268 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345097, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.268 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345101, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.268 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345111, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.268 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345115, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.273 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345169, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.273 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345174, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.274 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345179, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.274 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345183, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.274 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.277 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.279 29825-29825 IPCThreadState service E Binder transaction failure. id: 123345270, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.279 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.280 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.285 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.288 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.288 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.291 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.291 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.294 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.299 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.308 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.309 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.317 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.323 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.339 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.344 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.352 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.355 29825-29825 Parcel service E Reading a NULL string not supported here. 2025-06-13 21:58:07.363 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346554, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.363 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346558, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.364 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346562, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.364 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346568, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.365 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346586, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.366 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346590, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.366 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346594, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.367 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346598, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.367 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346602, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.367 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346606, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.368 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346611, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.368 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346615, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.369 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346619, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.369 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346623, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.369 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346627, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.370 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346631, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.370 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346636, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.371 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346643, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.372 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346653, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.372 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346659, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.372 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346664, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.375 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346706, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.376 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346716, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.376 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346720, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.377 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346729, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.378 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346733, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.378 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346737, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.378 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346741, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.379 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346750, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.379 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346754, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.380 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346759, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.380 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346763, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.381 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346770, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.381 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346774, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.381 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346780, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.387 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346886, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.387 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346890, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.388 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346895, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.388 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346899, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.388 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346903, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.389 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346909, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.389 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346914, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.389 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346919, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.390 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346924, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.390 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346930, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.390 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346934, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.390 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346940, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.391 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346945, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.391 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346949, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.391 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346954, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.391 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346958, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.392 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346963, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.392 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346967, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.392 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346971, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.393 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346981, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.393 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346985, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.393 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346989, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.393 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346993, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.394 29825-29825 IPCThreadState service E Binder transaction failure. id: 123346997, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.394 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347001, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.394 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347005, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.395 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347015, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.395 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347021, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.396 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347026, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.396 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347036, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.396 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347040, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.397 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347044, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.397 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347048, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.398 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347065, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.398 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347071, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.399 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347075, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.399 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347080, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.399 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347084, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.399 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347088, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.399 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347092, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.400 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347096, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.400 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347100, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.400 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347104, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.400 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347108, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.400 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347112, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.401 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347116, BR_*: 29201, error: -1 (Operation not permitted) 2025-06-13 21:58:07.418 29825-29825 IPCThreadState service E Binder transaction failure. id: 123347394, BR_*: 29201, error: -1 (Operation not permitted)每次项目重启都有大量
06-14
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值