当前位置: 首页>>代码示例>>C++>>正文


C++ TPtr8::AppendFill方法代码示例

本文整理汇总了C++中TPtr8::AppendFill方法的典型用法代码示例。如果您正苦于以下问题:C++ TPtr8::AppendFill方法的具体用法?C++ TPtr8::AppendFill怎么用?C++ TPtr8::AppendFill使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TPtr8的用法示例。


在下文中一共展示了TPtr8::AppendFill方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: TestCRImportL

// -----------------------------------------------------------------------------
// CTestDomCdl::TestCRImportL
// -----------------------------------------------------------------------------
//
TInt CTestDomCdl::TestCRImportL( CStifItemParser& /*aItem*/ ) 
    {
    CCdlRefs* cdlRefs = CCdlRefs::NewL();
    CleanupStack::PushL( cdlRefs );//push
    STIF_ASSERT_NOT_NULL( cdlRefs );
    HBufC8* buf8 = HBufC8::NewMaxLC( 32 );//push
    TPtr8 ptr = buf8->Des();
    TChar theChar = 0;
    ptr.Zero();
    ptr.AppendFill( theChar, 8 );
    cdlRefs->ImportL( *buf8 );
    CleanupStack::PopAndDestroy( 2 );
    return KErrNone;
    }
开发者ID:cdaffara,项目名称:symbiandump-mw4,代码行数:18,代码来源:testdomcdlblockscdlrefs.cpp

示例2: TestStepResult

TVerdict CLoopbackTestStep7::doTestStepL()
/**
Test issuing write with too large of a buffer
*/
	{
	TestErrorCodeL( iCommPort1.Open(iCommServer, KPortName1, ECommExclusive, ECommRoleDCE), _L("Opening comm port 1") );
	TestErrorCodeL( iCommPort2.Open(iCommServer, KPortName2, ECommExclusive, ECommRoleDCE), _L("Opening comm port 2") );
	
	// Create the large buffer
	HBufC8 *hugeHeapDescriptor = HBufC8::NewLC(KHugeBufferSize);
	TPtr8 hugeDescriptor = hugeHeapDescriptor->Des();
	hugeDescriptor.AppendFill('a', KHugeBufferSize);
	
	// Issue the write with the buffer that is too large
	TRequestStatus writeStatus1, readStatus1;
	iCommPort2.Write(writeStatus1, hugeDescriptor);
	User::WaitForRequest(writeStatus1);
	TestErrorCodeL(writeStatus1.Int(), KErrArgument, _L("Writing to comm port 1"));

	// Make sure write still works with normal sized buffer
	iCommPort2.Write(writeStatus1, KWriteBuf1);
	User::WaitForRequest(writeStatus1);
	TestErrorCodeL(writeStatus1.Int(), _L("Writing to comm port 1"));
		
	TBuf8<KRegularBufferSize> readBuf;
	iCommPort1.ReadOneOrMore(readStatus1, readBuf);
	User::WaitForRequest(readStatus1);
	if (readStatus1 != KErrNone)
		{
		INFO_PRINTF1(_L("Failed read"));
		SetTestStepResult(EFail);
		}

	CleanupStack::PopAndDestroy(hugeHeapDescriptor);

	return TestStepResult();
	}
开发者ID:cdaffara,项目名称:symbiandump-os1,代码行数:37,代码来源:LoopbackTestStep.cpp


注:本文中的TPtr8::AppendFill方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。