ジャンプ先: 概要. 戻り値. キーワード. フラグ. MEL 例.
profilerTool [-categoryView] [-collapseSelectedEvents] [-collapseSelectedEventsRepetition] [-cpuView] [-destroy] [-exists] [-expandSelectedEvents] [-expandSelectedEventsRepetition] [-findNext] [-findPrevious] [-frameAll] [-frameSelected] [-isolateSegment int] [-make] [-matchWholeWord boolean] [-searchEvent string] [-segmentCount] [-showAllEvent boolean] [-showCriticalPath] [-showSelectedEvents boolean] [-showSelectedEventsRepetition boolean] [-threadView] [-unisolateSegment]
profilerTool は、取り消し不可能、照会可能、および編集可能です。
このスクリプトは、プロファイラ ツールのビュー(描画領域)と対話する profilerPanel によって使用されます。これは プロファイラ ツールの一部の動作をコントロールするために使用できます。なし
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
|---|---|---|---|---|
-categoryView(-cat)
|
|
|
||
|
||||
-collapseSelectedEvents(-cs)
|
|
|
||
|
||||
-collapseSelectedEventsRepetition(-csr)
|
|
|
||
|
||||
-cpuView(-cpu)
|
|
|
||
|
||||
-destroy(-dtr)
|
|
|
||
|
||||
-exists(-ex)
|
|
|
||
|
||||
-expandSelectedEvents(-es)
|
|
|
||
|
||||
-expandSelectedEventsRepetition(-esr)
|
|
|
||
|
||||
-findNext(-fn)
|
|
|
||
|
||||
-findPrevious(-fp)
|
|
|
||
|
||||
-frameAll(-fa)
|
|
|
||
|
||||
-frameSelected(-fs)
|
|
|
||
|
||||
-isolateSegment(-is)
|
int
|
|
||
|
||||
-make(-mk)
|
|
|
||
|
||||
-matchWholeWord(-mww)
|
boolean
|
|
||
|
||||
-searchEvent(-se)
|
string
|
|
||
|
||||
-segmentCount(-sc)
|
|
|
||
|
||||
-showAllEvent(-sa)
|
boolean
|
|
||
|
||||
-showCriticalPath(-scp)
|
|
|
||
|
||||
-showSelectedEvents(-ss)
|
boolean
|
|
||
|
||||
-showSelectedEventsRepetition(-ssr)
|
boolean
|
|
||
|
||||
-threadView(-thd)
|
|
|
||
|
||||
-unisolateSegment(-uis)
|
|
|
||
|
||||
//First record/load a profile //Frame the tool's view on all recorded events. profilerTool -e -frameAll; //Frame selected events profilerTool -e -frameSelected; //Change to cpu view profilerTool -e -cpuView; //Show only selected events profilerTool -e -showSelectedEvents true; //Show all events profilerTool -e -showAllEvent true; //Hide all events that have same comment as selected events profilerTool -e -showSelectedEventsRepetition false; //Find all events whose name contains "abc" profilerTool -q -searchEvent abc; //Find the first event, whose name exactly matches with "def", next to current selected event profilerTool -e -matchWholeWord true; profilerTool -q -searchEvent def -findNext; //Query segment count in buffer profilerTool -q -segmentCount; //Isolate the first segment profilerTool -e -isolateSegment 0; //Unisolate segment profilerTool -e -unisolateSegment;