Bash string operation

11. Tables

11.1 String comparison operators

(1) s1 = s2

(2) s1 != s2

(3) s1 < s2

(4) s1 > s2

(5) -n s1

(6) -z s1

(1) s1 matches s2

(2) s1 does not match s2

(3) __TO-DO__

(4) __TO-DO__

(5) s1 is not null (contains one or more characters)

(6) s1 is null

11.2 String comparison examples

Comparing two strings.

        #!/bin/bash
        S1='string'
        S2='String'
        if [ $S1=$S2 ];
        then
                echo "S1('$S1') is not equal to S2('$S2')"
        fi
        if [ $S1=$S1 ];
        then
                echo "S1('$S1') is equal to S1('$S1')"
        fi
        

I quote here a note from a mail, sent buy Andreas Beck, refering to use if [ $1 = $2 ].

This is not quite a good idea, as if either $S1 or $S2 is empty, you will get a parse error. x$1=x$2 or "$1"="$2" is better.

11.3 Arithmetic operators

+

-

*

/

% (remainder)

11.4 Arithmetic relational operators

-lt (<)

-gt (>)

-le (<=)

-ge (>=)

-eq (==)

-ne (!=)

C programmer's should simple map the operator to its corresponding parenthesis.

11.5 Useful commands

This section was re-written by Kees (see thank to...)

Some of these command's almost contain complete programming languages. From those commands only the basics will be explained. For a more detailed description, have a closer look at the man pages of each command.

sed (stream editor)

Sed is a non-interactive editor. Instead of altering a file by moving the cursor on the screen, you use a script of editing instructions to sed, plus the name of the file to edit. You can also describe sed as a filter. Let's have a look at some examples:

        $sed 's/to_be_replaced/replaced/g' /tmp/dummy
        

Sed replaces the string 'to_be_replaced' with the string 'replaced' and reads from the /tmp/dummy file. The result will be sent to stdout (normally the console) but you can also add '> capture' to the end of the line above so that sed sends the output to the file 'capture'.

        $sed 12, 18d /tmp/dummy
        

Sed shows all lines except lines 12 to 18. The original file is not altered by this command.

awk (manipulation of datafiles, text retrieval and processing)

Many implementations of the AWK programming language exist (most known interpreters are GNU's gawk and 'new awk' mawk.) The principle is simple: AWK scans for a pattern, and for every matching pattern a action will be performed.

Again, I've created a dummy file containing the following lines:

"test123

test

tteesstt"

        $awk '/test/ {print}' /tmp/dummy
        

test123

test

The pattern AWK looks for is 'test' and the action it performs when it found a line in the file /tmp/dummy with the string 'test' is 'print'.

        $awk '/test/ {i=i+1} END {print i}' /tmp/dummy
        

3

When you're searching for many patterns, you should replace the text between the quotes with '-f file.awk' so you can put all patterns and actions in 'file.awk'.

grep (print lines matching a search pattern)

We've already seen quite a few grep commands in the previous chapters, that display the lines matching a pattern. But grep can do more.

        $grep "look for this" /var/log/messages -c
        

12

The string "look for this" has been found 12 times in the file /var/log/messages.

[ok, this example was a fake, the /var/log/messages was tweaked :-)]

wc (counts lines, words and bytes)

In the following example, we see that the output is not what we expected. The dummy file, as used in this example, contains the following text: "bash introduction howto test file"

        $wc --words --lines --bytes /tmp/dummy
        

2 5 34 /tmp/dummy

Wc doesn't care about the parameter order. Wc always prints them in a standard order, which is, as you can see: .

sort (sort lines of text files)

This time the dummy file contains the following text:

"b

c

a"

        $sort /tmp/dummy
        

This is what the output looks like:

a

b

c

Commands shouldn't be that easy :-) bc (a calculator programming language)

Bc is accepting calculations from command line (input from file. not from redirector or pipe), but also from a user interface. The following demonstration shows some of the commands. Note that

I start bc using the -q parameter to avoid a welcome message.

   $bc -q
        

1 == 5

0

0.05 == 0.05

1

5 != 5

0

2 ^ 8

256

sqrt(9)

3

while (i != 9) {

i = i + 1;

print i

}

123456789

quit

tput (initialize a terminal or query terminfo database)

A little demonstration of tput's capabilities:

        $tput cup 10 4
        

The prompt appears at (y10,x4).

        $tput reset
        

Clears screen and prompt appears at (y1,x1). Note that (y0,x0) is the upper left corner.

        $tput cols
        
80

Shows the number of characters possible in x direction.

It it higly recommended to be familiarized with these programs (at least). There are tons of little programs that will let you do real magic on the command line.

[some samples are taken from man pages or FAQs]


Next   Previous   Contents
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、付费专栏及课程。

余额充值