QueryInstrumentableFunctions() private méthode

private QueryInstrumentableFunctions ( ) : void
Résultat void
        public static void Show(Rect r)
        {
            ProfilerInstrumentationPopup windowContent = new ProfilerInstrumentationPopup(s_InstrumentableFunctions, false, true);

            if (s_InstrumentableFunctions == null)
            {
                s_PendingPopup = windowContent;
                ProfilerDriver.QueryInstrumentableFunctions();
            }
            else
            {
                s_PendingPopup = null;
            }
            PopupWindow.Show(r, windowContent);
        }
Exemple #2
0
        public static void Show(Rect r)
        {
            ProfilerInstrumentationPopup instrumentationPopup = new ProfilerInstrumentationPopup(ProfilerInstrumentationPopup.s_InstrumentableFunctions, false, true);

            if (ProfilerInstrumentationPopup.s_InstrumentableFunctions == null)
            {
                ProfilerInstrumentationPopup.s_PendingPopup = instrumentationPopup;
                ProfilerDriver.QueryInstrumentableFunctions();
            }
            else
            {
                ProfilerInstrumentationPopup.s_PendingPopup = (ProfilerInstrumentationPopup)null;
            }
            PopupWindow.Show(r, (PopupWindowContent)instrumentationPopup);
        }
Exemple #3
0
 public static void UpdateInstrumentableFunctions()
 {
     ProfilerDriver.QueryInstrumentableFunctions();
 }