Exemplo n.º 1
0
			public MethodNode (ProfileStore store, Node parent, LoadedClass.AllocationsPerMethod instance) : base (store, parent)
			{
				this.instance = instance;
			}
Exemplo n.º 2
0
 public CallsNode(ProfileStore store, Node parent, StackTrace frame) : base(store, parent)
 {
     this.frame = frame;
 }
Exemplo n.º 3
0
			public ClassNode (ProfileStore store, Node parent, LoadedClass instance) : base (store, parent)
			{
				this.instance = instance;
			}
Exemplo n.º 4
0
 public MethodNode(ProfileStore store, Node parent, LoadedClass.AllocationsPerMethod instance) : base(store, parent)
 {
     this.instance = instance;
 }
 public CallInfoNode(ProfileStore store, Node parent, StatisticalHitItemCallInformation info) : base(store, parent)
 {
     this.info = info;
 }
Exemplo n.º 6
0
 public StatNode(ProfileStore store, Node parent, IStatisticalHitItem item) : base(store, parent)
 {
     this.item = item;
 }
Exemplo n.º 7
0
 public ClassNode(ProfileStore store, Node parent, LoadedClass instance) : base(store, parent)
 {
     this.instance = instance;
 }
Exemplo n.º 8
0
			public CallsNode (ProfileStore store, Node parent, StackTrace frame) : base (store, parent)
			{
				this.frame = frame;
			}
Exemplo n.º 9
0
 public Node(ProfileStore store, Node parent)
 {
     this.store  = store;
     this.parent = parent;
     gch         = GCHandle.Alloc(this, GCHandleType.Weak);
 }
Exemplo n.º 10
0
			public StatNode (ProfileStore store, Node parent, IStatisticalHitItem item) : base (store, parent)
			{
				this.item = item;
			}
Exemplo n.º 11
0
				public CallInfoNode (ProfileStore store, Node parent, StatisticalHitItemCallInformation info) : base (store, parent)
				{
					this.info = info;
				}
Exemplo n.º 12
0
		public Node (ProfileStore store, Node parent)
		{
			this.store = store;
			this.parent = parent;
			gch = GCHandle.Alloc (this, GCHandleType.Weak);
		}