Home
last modified time | relevance | path

Searched refs:aAlloc (Results 1 – 10 of 10) sorted by relevance

/external/opencore/oscl/oscl/osclerror/src/
Doscl_error.cpp30 OSCL_EXPORT_REF int32 OsclErrorTrap::Init(Oscl_DefAlloc *aAlloc) in Init() argument
42 OsclAny *ptr = (aAlloc) ? aAlloc->ALLOCATE(sizeof(OsclErrorTrapImp)) in Init()
47 OsclErrorTrapImp* self = new(ptr) OsclErrorTrapImp(aAlloc, error); in Init()
51 (aAlloc) ? aAlloc->deallocate(ptr) : defalloc.deallocate(ptr); in Init()
Doscl_error_trapcleanup.h216 OsclErrorTrapImp(Oscl_DefAlloc *aAlloc, int32 &error);
Doscl_error.h64 OSCL_IMPORT_REF static int32 Init(Oscl_DefAlloc *aAlloc = NULL);
/external/opencore/oscl/oscl/osclutil/src/
Doscl_string_containers.cpp35 OSCL_EXPORT_REF void CHeapRep::set_rep(CHeapRep*& aRep, Oscl_DefAlloc& aAlloc, const char* cp, uint… in set_rep() argument
38 CHeapRep*newrep = New(aAlloc); in set_rep()
40 && newrep->set(len, cp, aAlloc)) in set_rep()
42 CHeapRep::assign(aRep, newrep, aAlloc); in set_rep()
48 aAlloc.deallocate(newrep); in set_rep()
54 OSCL_EXPORT_REF void CHeapRep::set_rep(CHeapRep*& aRep, Oscl_DefAlloc& aAlloc, const oscl_wchar* cp… in set_rep() argument
57 CHeapRep*newrep = New(aAlloc); in set_rep()
59 && newrep->set(len, cp, aAlloc)) in set_rep()
61 CHeapRep::assign(aRep, newrep, aAlloc); in set_rep()
67 aAlloc.deallocate(newrep); in set_rep()
[all …]
/external/opencore/pvmi/pvmf/src/
Dpvmi_config_and_capability_utils.cpp151 OSCL_EXPORT_REF PVMFStatus AllocateKvp(OsclMemAllocator& aAlloc, PvmiKvp*& aKvp, PvmiKeyType aKey, … in AllocateKvp() argument
158 buf = (uint8*)aAlloc.ALLOCATE(aNumParams * (sizeof(PvmiKvp) + keyLen)); in AllocateKvp()
/external/opencore/pvmi/pvmf/include/
Dpvmi_config_and_capability_utils.h53 OSCL_IMPORT_REF PVMFStatus AllocateKvp(OsclMemAllocator& aAlloc, PvmiKvp*& aKvp, PvmiKeyType aKey, …
/external/opencore/nodes/pvclientserversocketnode/include/
Dpvmf_clientserver_socket_node.h221 …void DoSetSocketPortMemAllocator(PVLogger*, OsclSharedPtr<PVMFSharedSocketDataBufferAlloc> aAlloc);
319 OsclSharedPtr<PVMFSharedSocketDataBufferAlloc> aAlloc);
/external/opencore/nodes/pvclientserversocketnode/src/
Dpvmf_clientserver_socket_node.cpp1256 …SetSocketPortMemAllocator(PVLogger* aLogger, OsclSharedPtr<PVMFSharedSocketDataBufferAlloc> aAlloc) in DoSetSocketPortMemAllocator() argument
1258 if (aAlloc.GetRep()) in DoSetSocketPortMemAllocator()
1269 iMemPool->iSocketAllocSharedPtr = aAlloc; in DoSetSocketPortMemAllocator()
1367 OsclSharedPtr<PVMFSharedSocketDataBufferAlloc> aAlloc) in setSocketPortMemAllocator() argument
1374 tmpSockConfig->DoSetSocketPortMemAllocator(iLogger, aAlloc); in setSocketPortMemAllocator()
/external/opencore/nodes/pvsocketnode/include/
Dpvmf_socket_node.h586 void CleanupMemPools(Oscl_DefAlloc& aAlloc);
/external/opencore/nodes/pvsocketnode/src/
Dpvmf_socket_node.cpp242 void SocketPortConfig::CleanupMemPools(Oscl_DefAlloc& aAlloc) in CleanupMemPools() argument
248 aAlloc.deallocate((OsclAny*)(iMemPool)); in CleanupMemPools()