Lines Matching refs:pData

952     if (osl_getFileURLFromSystemPath (pFilename, &(aFileUrl.pData)) != osl_File_E_None)  in initialize()
955 rtl_uString_assign (&(aFileUrl.pData), pFilename); in initialize()
959 return osl_openFile (aFileUrl.pData, &m_handle, nFlags); in initialize()
1181 typedef void (*destructor_type)(sal_uInt8 * pData, sal_uInt32 nSize);
1186 static void freeMemory (sal_uInt8 * pData, sal_uInt32 nSize);
1192 …MemoryPageAccess (sal_uInt8 * pData, sal_uInt32 nSize, destructor_type destructor = MemoryPageAcce… in MemoryPageAccess() argument
1193 : m_pData (pData), m_nSize (nSize), m_destructor (destructor) in MemoryPageAccess()
1329 sal_uInt8 * pData = static_cast<sal_uInt8*>(rtl_reallocateMemory (m_pData, nSize)); in setSize_Impl() local
1330 if (pData != 0) in setSize_Impl()
1333 memset (pData + m_nSize, 0, sal::static_int_cast< size_t >(nSize - m_nSize)); in setSize_Impl()
1340 m_pData = pData, m_nSize = nSize; in setSize_Impl()
1344 void MemoryPageAccess::freeMemory (sal_uInt8 * pData, sal_uInt32 /*nSize*/) in freeMemory() argument
1346 rtl_freeMemory (pData); in freeMemory()
1355 static void unmapFile (sal_uInt8 * pData, sal_uInt32 nSize);
1358 MappedPageAccess (sal_uInt8 * pData, sal_uInt32 nSize);
1372 MappedPageAccess::MappedPageAccess (sal_uInt8 * pData, sal_uInt32 nSize) in MappedPageAccess() argument
1373 : MemoryPageAccess (pData, nSize, MappedPageAccess::unmapFile) in MappedPageAccess()
1393 void MappedPageAccess::unmapFile (sal_uInt8 * pData, sal_uInt32 nSize) in unmapFile() argument
1395 (void) osl_unmapFile (pData, nSize); in unmapFile()