Searched refs:m_pMemory (Results 1 – 2 of 2) sorted by relevance
/aoo4110/main/sal/qa/rtl/alloc/ |
H A D | rtl_alloc.cxx | 54 char *m_pMemory; member in rtl_alloc::Memory 59 :m_pMemory(NULL), in Memory() 68 m_pMemory = (char*) rtl_allocateMemory( m_nSizeOfMemory ); in setUp() 74 rtl_freeMemory(m_pMemory); in tearDown() 75 m_pMemory = NULL; in tearDown() 84 CPPUNIT_ASSERT_MESSAGE( "Can get zero memory.", m_pMemory != NULL); in rtl_allocateMemory_001() 85 memset(m_pMemory, 1, m_nSizeOfMemory); in rtl_allocateMemory_001() 93 m_pMemory = (char*)rtl_reallocateMemory(m_pMemory, nSize); in rtl_reallocateMemory_001() 95 CPPUNIT_ASSERT_MESSAGE( "Can reallocate memory.", m_pMemory != NULL); in rtl_reallocateMemory_001() 96 memset(m_pMemory, 2, nSize); in rtl_reallocateMemory_001() [all …]
|
/aoo4110/main/vcl/unx/generic/fontmanager/ |
H A D | parseAFM.cxx | 104 char* m_pMemory; member in psp::FileInputStream 111 int getChar() { return (m_nPos < m_nLen) ? int(m_pMemory[m_nPos++]) : -1; } in getChar() 125 m_pMemory( NULL ), in FileInputStream() 138 m_pMemory = (char*)rtl_allocateMemory( aStat.st_size ); in FileInputStream() 139 m_nLen = (unsigned int)fread( m_pMemory, 1, aStat.st_size, fp ); in FileInputStream() 147 rtl_freeMemory( m_pMemory ); in ~FileInputStream()
|
Completed in 14 milliseconds