Home
last modified time | relevance | path

Searched refs:pBuffer (Results 126 – 150 of 230) sorted by relevance

12345678910

/trunk/main/cui/source/dialogs/
H A Dabout.cxx129 sal_Char *pBuffer = new sal_Char[nBytes]; in lcl_readTxtFile() local
131 while ( aFile.read( pBuffer + nPosition, in lcl_readTxtFile()
143 sText = rtl::OUString( pBuffer, in lcl_readTxtFile()
148 delete[] pBuffer; in lcl_readTxtFile()
/trunk/main/sal/inc/osl/
H A Dfile.hxx1171 inline RC read( void *pBuffer, sal_uInt64 uBytesRequested, sal_uInt64& rBytesRead ) in read() argument
1173 return (RC) osl_readFile( _pData, pBuffer, uBytesRequested, &rBytesRead ); in read()
1210 inline RC write(const void *pBuffer, sal_uInt64 uBytesToWrite, sal_uInt64& rBytesWritten) in write() argument
1212 return (RC) osl_writeFile( _pData, pBuffer, uBytesToWrite, &rBytesWritten ); in write()
/trunk/main/sal/osl/w32/
H A Dfile_dirvol.cxx776 const sal_Unicode *pBuffer = rtl_uString_getStr( strSysPath ); in osl_createDirectory() local
780 ( ( pBuffer[0] >= 'A' && pBuffer[0] <= 'Z' ) || in osl_createDirectory()
781 ( pBuffer[0] >= 'a' && pBuffer[0] <= 'z' ) ) && in osl_createDirectory()
782 pBuffer[1] == ':' && ( nLen ==2 || ( nLen == 3 && pBuffer[2] == '\\' ) ) in osl_createDirectory()
/trunk/main/sw/source/filter/ww1/
H A Dw1class.cxx1033 : rFib(_rFib), pBuffer(NULL), bOK(sal_False) in Ww1Assoc()
1040 if ((pBuffer = new sal_Char[cb]) != NULL in Ww1Assoc()
1043 && rFib.GetStream().Read(pBuffer, cb) == cb) in Ww1Assoc()
1046 DBG_ASSERT( cb == SVBT16ToShort( *(SVBT16*)pBuffer ), "size missmatch"); in Ww1Assoc()
1049 pStrTbl[i] = pBuffer+j; in Ww1Assoc()
1050 j += (*pBuffer + j) + 1; in Ww1Assoc()
/trunk/main/vcl/unx/generic/gdi/
H A Dsalprnpsp.cxx207 void* pBuffer = NULL; in copyJobDataToJobSetup() local
208 if( rData.getStreamBuffer( pBuffer, nBytes ) ) in copyJobDataToJobSetup()
211 pJobSetup->mpDriverData = (sal_uInt8*)pBuffer; in copyJobDataToJobSetup()
611 void* pBuffer = NULL; in Setup() local
612 aInfo.getStreamBuffer( pBuffer, nBytes ); in Setup()
614 pJobSetup->mpDriverData = (sal_uInt8*)pBuffer; in Setup()
/trunk/main/vcl/aqua/source/dtrans/
H A DDataFlavorMapping.cxx481 unichar* pBuffer = reinterpret_cast<unichar*>(oOOFileList.getArray()); in getOOoData() local
482 rtl_zeroMemory(pBuffer, lenSeqRequired); in getOOoData()
487 [fname getCharacters: pBuffer]; in getOOoData()
489 pBuffer += l + 1; in getOOoData()
/trunk/main/sfx2/source/bastyp/
H A Dsfxhtml.cxx325 sal_Char* pBuffer = sBuffer.AllocBuffer(nLen); in FinishFileDownload() local
327 aStream.Read((void*)pBuffer, nLen); in FinishFileDownload()
328 rStr = String( pBuffer, RTL_TEXTENCODING_UTF8); in FinishFileDownload()
/trunk/main/vos/inc/vos/
H A Distream.hxx49 virtual sal_Int32 SAL_CALL read(void* pBuffer,
57 virtual sal_Int32 SAL_CALL write(const void* pBuffer,
/trunk/main/canvas/source/tools/
H A Dsurfaceproxymanager.cxx60 … virtual ISurfaceProxySharedPtr createSurfaceProxy( const IColorBufferSharedPtr& pBuffer ) const in createSurfaceProxy()
65 return SurfaceProxySharedPtr(new SurfaceProxy(pBuffer,mpPageManager)); in createSurfaceProxy()
/trunk/main/automation/source/simplecm/
H A Dcommuniio.hxx46 virtual comm_USHORT TransferBytes( const void* pBuffer, comm_UINT32 nLen ) = 0;
58 virtual comm_USHORT ReceiveBytes( void* pBuffer, comm_UINT32 nLen ) = 0;
H A Dtcpio.hxx47 virtual comm_USHORT TransferBytes( const void* pBuffer, comm_UINT32 nLen );
50 virtual comm_USHORT ReceiveBytes( void* pBuffer, comm_UINT32 nLen );
/trunk/main/idlc/source/
H A Didlccompile.cxx196 char pBuffer[513]; in copyFile() local
200 if ( (readSize = fread(pBuffer, 1, totalSize, pSource)) > 0 && !ferror(pSource) ) in copyFile()
202 … if ( (writeSize = fwrite(pBuffer, 1, readSize, pTarget)) != readSize || ferror(pTarget) ) in copyFile()
/trunk/main/vcl/source/gdi/
H A Ddibtools.cxx289 void ImplDecodeRLE( sal_uInt8* pBuffer, DIBV5Header& rHeader, BitmapWriteAccess& rAcc, bool bRLE4 ) in ImplDecodeRLE() argument
291 Scanline pRLE = pBuffer; in ImplDecodeRLE()
450 sal_uInt8* pBuffer = (sal_uInt8*)rtl_allocateMemory(rHeader.nSizeImage); in ImplReadDIBBits() local
451 rIStm.Read((char*)pBuffer, rHeader.nSizeImage); in ImplReadDIBBits()
452 ImplDecodeRLE(pBuffer, rHeader, rAcc, RLE_4 == rHeader.nCompression); in ImplReadDIBBits()
453 rtl_freeMemory(pBuffer); in ImplReadDIBBits()
H A Dimpbmp.cxx123 void ImpBitmap::ImplReleaseBuffer( BitmapBuffer* pBuffer, sal_Bool bReadOnly ) in ImplReleaseBuffer() argument
125 mpSalBitmap->ReleaseBuffer( pBuffer, bReadOnly ); in ImplReleaseBuffer()
/trunk/main/tools/inc/tools/
H A Dsimplerm.hxx109 sal_uInt32 ReadBlob( sal_uInt32 nId, void** pBuffer );
110 void FreeBlob( void* pBuffer );
/trunk/main/vcl/inc/vcl/
H A Dstrhelper.hxx69 inline int VCL_DLLPUBLIC getValueOfDouble( char* pBuffer, double f, int nPrecision = 0) in getValueOfDouble() argument
73 std::strncpy( pBuffer, aStr.getStr(), nLen+1 ); // copy string including terminating zero in getValueOfDouble()
/trunk/main/ucb/source/ucp/file/
H A Dfilrec.hxx73 ::osl::FileBase::RC read( void *pBuffer, sal_uInt64 uBytesRequested, sal_uInt64& rBytesRead );
75 …::osl::FileBase::RC write(const void *pBuffer, sal_uInt64 uBytesToWrite, sal_uInt64& rBytesWritten…
/trunk/main/store/source/
H A Dstorlckb.hxx74 void *pBuffer,
87 const void *pBuffer,
/trunk/main/svl/source/misc/
H A Durihelper.cxx556 sal_Unicode const * pBuffer = rStr.GetBuffer(); in scanDomain() local
557 sal_Unicode const * p = pBuffer + *pPos; in scanDomain()
558 sal_uInt32 nLabels = INetURLObject::scanDomain(p, pBuffer + nEnd, false); in scanDomain()
559 *pPos = sal::static_int_cast< xub_StrLen >(p - pBuffer); in scanDomain()
/trunk/main/desktop/win32/source/guistdio/
H A Dguistdio.inc63 BYTE * pBuffer = aBuffer;
64 while ( ReadFile( hReadPipe, pBuffer, dwToRead, &dwRead, NULL ) )
87 pBuffer = aBuffer + 1;
95 pBuffer = aBuffer;
/trunk/main/svtools/source/inc/
H A Djpeg.hxx59 void* pBuffer; member in JPEGReader
92 sal_uInt8* pBuffer; member in JPEGWriter
/trunk/main/vcl/source/glyphs/
H A Dgcach_layout.cxx228 const unsigned char* pBuffer = mrServerFont.GetTable( pTagName, &nLength ); in getFontTable() local
230 fprintf(stderr,"IcuGetTable(\"%s\") => %p\n", pTagName, pBuffer); in getFontTable()
235 return (const void*)pBuffer; in getFontTable()
/trunk/main/vcl/unx/generic/printergfx/
H A Dglyphset.cxx923 sal_uChar pBuffer[0x2000]; in PSUploadFont() local
928 nIn = fread(pBuffer, 1, sizeof(pBuffer), pTmpFile); in PSUploadFont()
929 rOutFile.write (pBuffer, nIn, nOut); in PSUploadFont()
/trunk/main/filter/inc/filter/msfilter/
H A Dmscodec.hxx286 sal_uInt8* pBuffer, sal_Size nBufLen );
312 sal_uInt8* pBuffer, sal_Size nBufLen );
/trunk/main/svl/inc/svl/
H A Dstrmadpt.hxx52 virtual ErrCode WriteAt(sal_uLong nPos, const void * pBuffer, sal_uLong nCount,
61 virtual ErrCode FillAppend(const void * pBuffer, sal_uLong nCount,

Completed in 143 milliseconds

12345678910