Methods Summary |
---|
public long | getStackCallTime()Returns the approximate time of the stacktrace data.
return mTraceTime;
|
public java.lang.StackTraceElement[] | getStackTrace()
return mTrace;
|
public int | getStatus()Returns the VM thread status.
return mStatus;
|
public int | getStime()Returns the cumulative system time.
return mStime;
|
public int | getThreadId()Returns the thread's ID.
return mThreadId;
|
public java.lang.String | getThreadName()Returns the thread's name.
return mThreadName;
|
public int | getTid()Returns the system tid.
return mTid;
|
public int | getUtime()Returns the cumulative user time.
return mUtime;
|
public boolean | isDaemon()Returns whether this is a daemon thread.
return mIsDaemon;
|
void | setStackCall(java.lang.StackTraceElement[] trace)Sets the stack call of the thread.
mTrace = trace;
mTraceTime = System.currentTimeMillis();
|
void | setThreadName(java.lang.String name)
mThreadName = name;
|
void | updateThread(int status, int tid, int utime, int stime, boolean isDaemon)Set with the values we get from a THST chunk.
mStatus = status;
mTid = tid;
mUtime = utime;
mStime = stime;
mIsDaemon = isDaemon;
|