當前位置: 首頁>>代碼示例>>C#>>正文


C# AprPool.CAlloc方法代碼示例

本文整理匯總了C#中Softec.AprSharp.AprPool.CAlloc方法的典型用法代碼示例。如果您正苦於以下問題:C# AprPool.CAlloc方法的具體用法?C# AprPool.CAlloc怎麽用?C# AprPool.CAlloc使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Softec.AprSharp.AprPool的用法示例。


在下文中一共展示了AprPool.CAlloc方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Alloc

 public static AprTimeExp Alloc(AprPool pool)
 {
     return(new AprTimeExp((apr_time_exp_t *)pool.CAlloc(sizeof(apr_time_exp_t))));
 }
開發者ID:softec,項目名稱:SubversionSharp,代碼行數:4,代碼來源:AprTimeExp.cs

示例2: CAllocLoop

        public void CAllocLoop()
        {
            AprPool p = new AprPool();
            Assert.IsTrue(p.IsNull,"#H000001");

            p = AprPool.Create();
            Assert.IsFalse(p.IsNull,"#H000002");

            for(int i=24;i<4096;i+=24)
            {
                IntPtr m = p.CAlloc(i);
                Assert.IsTrue(m.ToInt32() != 0,String.Format("#H{0,6}a",i));
                Assert.IsTrue(Marshal.ReadInt32(m) == 0,String.Format("#H{0,6}b",i));
                Assert.IsTrue(p.Alloc(i).ToInt32() != 0,String.Format("#H{0,6}c",i));
            }

            p.Destroy();
            Assert.IsTrue(p.IsNull,"#H000004");
        }
開發者ID:softec,項目名稱:SubversionSharp,代碼行數:19,代碼來源:AprPoolTest.cs

示例3: CAlloc

        public void CAlloc()
        {
            AprPool p = new AprPool();
            Assert.IsTrue(p.IsNull,"#F01");

            p = AprPool.Create();
            Assert.IsFalse(p.IsNull,"#F02");

            IntPtr m = p.CAlloc(256);
            Assert.IsTrue(m.ToInt32() != 0,"#F03");
            Assert.IsTrue(Marshal.ReadInt32(m) == 0,"#F04");

            p.Destroy();
            Assert.IsTrue(p.IsNull,"#F04");
        }
開發者ID:softec,項目名稱:SubversionSharp,代碼行數:15,代碼來源:AprPoolTest.cs

示例4: Alloc

 public static SvnAuthCredSslServerTrust Alloc(AprPool pool)
 {
     return(new SvnAuthCredSslServerTrust((svn_auth_cred_ssl_server_trust_t *)
                        pool.CAlloc(sizeof(svn_auth_cred_ssl_server_trust_t))));
 }
開發者ID:softec,項目名稱:SubversionSharp,代碼行數:5,代碼來源:SvnAuthCred.cs

示例5: SvnOptRevision

 public SvnOptRevision(SvnRevision rev, AprPool pool)
 {
     mOptRevision = (svn_opt_revision_t *) pool.CAlloc(sizeof(svn_opt_revision_t));
     Revision = rev;
 }
開發者ID:softec,項目名稱:SubversionSharp,代碼行數:5,代碼來源:SvnOptRevision.cs


注:本文中的Softec.AprSharp.AprPool.CAlloc方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。