Home | History | Annotate | Download | only in fxcrt

Lines Matching refs:pAllocator

1173 void CFX_ByteStringL::Empty(IFX_Allocator* pAllocator)

1176 FX_Allocator_Free(pAllocator, (FX_LPVOID)m_Ptr);
1180 FX_LPSTR CFX_ByteStringL::AllocBuffer(FX_STRSIZE length, IFX_Allocator* pAllocator)
1182 Empty(pAllocator);
1183 FX_LPSTR str = FX_Allocator_Alloc(pAllocator, FX_CHAR, length + 1);
1191 void CFX_ByteStringL::Set(FX_BSTR src, IFX_Allocator* pAllocator)
1193 Empty(pAllocator);
1195 FX_LPSTR str = FX_Allocator_Alloc(pAllocator, FX_CHAR, src.GetLength() + 1);