Example #1
0
 public static TssSdtUint NewTssSdtUint()
 {
     return(new TssSdtUint
     {
         m_slot = TssSdtUintSlot.NewSlot(null)
     });
 }
Example #2
0
 private void SetValue(uint v)
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtUintSlot.NewSlot(null);
     }
     this.m_slot.SetValue(v);
 }
Example #3
0
 private uint GetValue()
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtUintSlot.NewSlot(null);
     }
     return(this.m_slot.GetValue());
 }
Example #4
0
 public static TssSdtUintSlot NewSlot(TssSdtUintSlot slot)
 {
     CollectSlot(slot);
     return(new TssSdtUintSlot());
 }
Example #5
0
 private static void CollectSlot(TssSdtUintSlot slot)
 {
 }
Example #6
0
File: TssSdt.cs Project: fengqk/Art
 private void SetValue(uint v)
 {
     if (m_slot == null)
     {
         m_slot = TssSdtUintSlot.NewSlot(null);
     }
     m_slot.SetValue(v);
 }
Example #7
0
File: TssSdt.cs Project: fengqk/Art
 private uint GetValue()
 {
     if (m_slot == null)
     {
         m_slot = TssSdtUintSlot.NewSlot(null);
     }
     return m_slot.GetValue();
 }
Example #8
0
File: TssSdt.cs Project: fengqk/Art
 //reserver for custom memory pool imp
 private static void CollectSlot(TssSdtUintSlot slot)
 {
 }
Example #9
0
File: TssSdt.cs Project: fengqk/Art
 //reserver for custom memory pool imp
 public static TssSdtUintSlot NewSlot(TssSdtUintSlot slot)
 {
     CollectSlot(slot);
     TssSdtUintSlot new_slot = new TssSdtUintSlot();
     return new_slot;
 }