コード例 #1
0
			public MethodNode (ProfileStore store, Node parent, LoadedClass.AllocationsPerMethod instance) : base (store, parent)
			{
				this.instance = instance;
			}
コード例 #2
0
 public CallsNode(ProfileStore store, Node parent, StackTrace frame) : base(store, parent)
 {
     this.frame = frame;
 }
コード例 #3
0
			public ClassNode (ProfileStore store, Node parent, LoadedClass instance) : base (store, parent)
			{
				this.instance = instance;
			}
コード例 #4
0
 public MethodNode(ProfileStore store, Node parent, LoadedClass.AllocationsPerMethod instance) : base(store, parent)
 {
     this.instance = instance;
 }
コード例 #5
0
 public CallInfoNode(ProfileStore store, Node parent, StatisticalHitItemCallInformation info) : base(store, parent)
 {
     this.info = info;
 }
コード例 #6
0
 public StatNode(ProfileStore store, Node parent, IStatisticalHitItem item) : base(store, parent)
 {
     this.item = item;
 }
コード例 #7
0
 public ClassNode(ProfileStore store, Node parent, LoadedClass instance) : base(store, parent)
 {
     this.instance = instance;
 }
コード例 #8
0
			public CallsNode (ProfileStore store, Node parent, StackTrace frame) : base (store, parent)
			{
				this.frame = frame;
			}
コード例 #9
0
 public Node(ProfileStore store, Node parent)
 {
     this.store  = store;
     this.parent = parent;
     gch         = GCHandle.Alloc(this, GCHandleType.Weak);
 }
コード例 #10
0
			public StatNode (ProfileStore store, Node parent, IStatisticalHitItem item) : base (store, parent)
			{
				this.item = item;
			}
コード例 #11
0
ファイル: StatDetail.cs プロジェクト: col42dev/mono-tools
				public CallInfoNode (ProfileStore store, Node parent, StatisticalHitItemCallInformation info) : base (store, parent)
				{
					this.info = info;
				}
コード例 #12
0
ファイル: Node.cs プロジェクト: col42dev/mono-tools
		public Node (ProfileStore store, Node parent)
		{
			this.store = store;
			this.parent = parent;
			gch = GCHandle.Alloc (this, GCHandleType.Weak);
		}