Home
last modified time | relevance | path

Searched refs:_pListHead (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/audio_conference_mixer/source/
Dmemory_pool_win.h67 PSLIST_HEADER _pListHead; variable
76 : _pListHead(NULL), in MemoryPoolImpl()
86 if(_pListHead != NULL) in ~MemoryPoolImpl()
88 AlignedFree(reinterpret_cast<void*>(_pListHead)); in ~MemoryPoolImpl()
89 _pListHead = NULL; in ~MemoryPoolImpl()
99 PSLIST_ENTRY pListEntry = InterlockedPopEntrySList(_pListHead); in PopMemory()
142 InterlockedPushEntrySList(_pListHead,&(item->itemEntry)); in PushMemory()
149 _pListHead = (PSLIST_HEADER)AlignedMalloc(sizeof(SLIST_HEADER), in Initialize()
151 if(_pListHead == NULL) in Initialize()
155 InitializeSListHead(_pListHead); in Initialize()
[all …]
/external/webrtc/webrtc/test/channel_transport/
Dudp_socket2_manager_win.cc411 : _pListHead(NULL), in IoContextPool()
422 AlignedFree(_pListHead); in ~IoContextPool()
432 _pListHead = (PSLIST_HEADER)AlignedMalloc(sizeof(SLIST_HEADER), in Init()
434 if(_pListHead == NULL) in Init()
438 InitializeSListHead(_pListHead); in Init()
450 PSLIST_ENTRY pListEntry = InterlockedPopEntrySList(_pListHead); in PopIoContext()
495 InterlockedPushEntrySList(_pListHead, &(item->itemEntry)); in PushIoContext()
507 PSLIST_ENTRY pListEntry = InterlockedPopEntrySList(_pListHead); in Free()
514 pListEntry = InterlockedPopEntrySList(_pListHead); in Free()
Dudp_socket2_manager_win.h87 PSLIST_HEADER _pListHead;