Esempio n. 1
0
			public MethodNode (ProfileStore store, Node parent, LoadedClass.AllocationsPerMethod instance) : base (store, parent)
			{
				this.instance = instance;
			}
Esempio n. 2
0
			public ClassNode (ProfileStore store, Node parent, LoadedClass instance) : base (store, parent)
			{
				this.instance = instance;
			}
Esempio n. 3
0
			public StatNode (ProfileStore store, Node parent, IStatisticalHitItem item) : base (store, parent)
			{
				this.item = item;
			}
Esempio n. 4
0
			public CallsNode (ProfileStore store, Node parent, StackTrace frame) : base (store, parent)
			{
				this.frame = frame;
			}
Esempio n. 5
0
		public Node (ProfileStore store, Node parent)
		{
			this.store = store;
			this.parent = parent;
			gch = GCHandle.Alloc (this, GCHandleType.Weak);
		}