QueryFunctionCallees() private method

private QueryFunctionCallees ( string fullName ) : void
fullName string
return void
        public static void Show(Rect r, string funcName)
        {
            ProfilerInstrumentationPopup windowContent = new ProfilerInstrumentationPopup(null, true, false);

            s_PendingPopup = windowContent;
            ProfilerDriver.QueryFunctionCallees(funcName);
            PopupWindow.Show(r, windowContent);
        }
Esempio n. 2
0
        public static void Show(Rect r, string funcName)
        {
            ProfilerInstrumentationPopup instrumentationPopup = new ProfilerInstrumentationPopup((Dictionary <string, int>)null, true, false);

            ProfilerInstrumentationPopup.s_PendingPopup = instrumentationPopup;
            ProfilerDriver.QueryFunctionCallees(funcName);
            PopupWindow.Show(r, (PopupWindowContent)instrumentationPopup);
        }
Esempio n. 3
0
        public static void Show(Rect r, string funcName)
        {
            var popup = new ProfilerInstrumentationPopup(null, true, false);

            s_PendingPopup = popup;
            ProfilerDriver.QueryFunctionCallees(funcName);

            PopupWindow.Show(r, popup);
        }