Package com.android.ddmlib.log
Class LogReceiver.LogEntry
- java.lang.Object
-
- com.android.ddmlib.log.LogReceiver.LogEntry
-
- Enclosing class:
- LogReceiver
public static final class LogReceiver.LogEntry extends java.lang.Object
Represents a log entry and its raw data.
-
-
Field Summary
Fields Modifier and Type Field Description byte[]
data
The entry's raw data.int
len
16bit unsigned: length of the payload.int
nsec
nanoseconds.int
pid
pid of the process that generated thisLogReceiver.LogEntry
int
sec
Seconds since epoch.int
tid
tid of the process that generated thisLogReceiver.LogEntry
-
Constructor Summary
Constructors Constructor Description LogEntry()
-
-
-
Field Detail
-
len
public int len
16bit unsigned: length of the payload.
-
pid
public int pid
pid of the process that generated thisLogReceiver.LogEntry
-
tid
public int tid
tid of the process that generated thisLogReceiver.LogEntry
-
sec
public int sec
Seconds since epoch.
-
nsec
public int nsec
nanoseconds.
-
data
public byte[] data
The entry's raw data.
-
-