| java.lang.Object org.netbeans.lib.profiler.results.cpu.PrestimeCPUCCTNode
All known Subclasses: org.netbeans.lib.profiler.results.cpu.PrestimeCPUCCTNodeBacked, org.netbeans.lib.profiler.results.cpu.PrestimeCPUCCTNodeFree,
PrestimeCPUCCTNode | abstract public class PrestimeCPUCCTNode implements CCTNode,Cloneable(Code) | | Base Presentation-Time CPU Profiling Calling Context Tree (CCT) Node class.
Subclasses provide an implementation that is backed by the flattened tree data array in CPUCCTContainer
(PrestimeCPUCCTNodeBacked) and the one that contains all the data in the node itself (PrestimeCPUCCTNodeFree).
author: Misha Dmitriev |
MASK_CONTEXT_CALLS_NODE | final protected static char MASK_CONTEXT_CALLS_NODE(Code) | | |
MASK_SELF_TIME_NODE | final protected static char MASK_SELF_TIME_NODE(Code) | | |
MASK_THREAD_NODE | final protected static char MASK_THREAD_NODE(Code) | | |
SORT_BY_INVOCATIONS | final public static int SORT_BY_INVOCATIONS(Code) | | |
SORT_BY_NAME | final public static int SORT_BY_NAME(Code) | | |
SORT_BY_TIME_0 | final public static int SORT_BY_TIME_0(Code) | | |
SORT_BY_TIME_1 | final public static int SORT_BY_TIME_1(Code) | | |
flags | protected char flags(Code) | | |
PrestimeCPUCCTNode | protected PrestimeCPUCCTNode()(Code) | | |
doSortChildren | protected void doSortChildren(int sortBy, boolean sortOrder)(Code) | | |
getIndexOfChild | public int getIndexOfChild(Object child)(Code) | | |
getMethodClassNameAndSig | public String[] getMethodClassNameAndSig()(Code) | | |
getMethodId | abstract public int getMethodId()(Code) | | |
getNCalls | abstract public int getNCalls()(Code) | | |
getNChildren | abstract public int getNChildren()(Code) | | |
getSleepTime0 | abstract public long getSleepTime0()(Code) | | |
getThreadId | abstract public int getThreadId()(Code) | | |
getTotalTime0 | abstract public long getTotalTime0()(Code) | | |
getTotalTime0InPerCent | abstract public float getTotalTime0InPerCent()(Code) | | |
getTotalTime1 | abstract public long getTotalTime1()(Code) | | |
getTotalTime1InPerCent | abstract public float getTotalTime1InPerCent()(Code) | | |
getWaitTime0 | abstract public long getWaitTime0()(Code) | | |
isContextCallsNode | public boolean isContextCallsNode()(Code) | | |
isSelfTimeNode | public boolean isSelfTimeNode()(Code) | | |
isThreadNode | public boolean isThreadNode()(Code) | | |
setContextCallsNode | public void setContextCallsNode()(Code) | | |
setSelfTimeNode | public void setSelfTimeNode()(Code) | | |
setThreadNode | public void setThreadNode()(Code) | | |
sortChildren | abstract public void sortChildren(int sortBy, boolean sortOrder)(Code) | | This is not equal to doSortChildren below, because the real implementation of sortChildren may need to do some
more things, such as generating the children, or deciding to return immediately.
|
sortChildrenByInvocations | protected void sortChildrenByInvocations(boolean sortOrder)(Code) | | |
sortChildrenByName | protected void sortChildrenByName(boolean sortOrder)(Code) | | |
sortChildrenByTime0 | protected void sortChildrenByTime0(boolean sortOrder)(Code) | | |
sortChildrenByTime1 | protected void sortChildrenByTime1(boolean sortOrder)(Code) | | |
sortInts | protected void sortInts(int[] values, boolean sortOrder)(Code) | | |
sortLongs | protected void sortLongs(long[] values, boolean sortOrder)(Code) | | |
sortStrings | protected void sortStrings(String[] values, boolean sortOrder)(Code) | | |
|
|