|
Bitdefender Hypervisor Memory Introspection
|
#include "introtypes.h"Go to the source code of this file.
Data Structures | |
| struct | _QUEUE |
Typedefs | |
| typedef struct _QUEUE | QUEUE_ENTRY |
| typedef struct _QUEUE * | PQUEUE_ENTRY |
| typedef struct _QUEUE | QUEUE_HEAD |
| typedef struct _QUEUE * | PQUEUE_HEAD |
Functions | |
| void | QueueInitialize (QUEUE_HEAD *QueueHead) |
| BOOLEAN | QueueIsEmpty (QUEUE_HEAD *QueueHead) |
| QUEUE_ENTRY * | QueueRemove (QUEUE_HEAD *QueueHead) |
| void | QueueInsert (QUEUE_HEAD *QueueHead, QUEUE_ENTRY *Element) |
| typedef struct _QUEUE * PQUEUE_ENTRY |
| typedef struct _QUEUE * PQUEUE_HEAD |
| typedef struct _QUEUE QUEUE_ENTRY |
| typedef struct _QUEUE QUEUE_HEAD |
| void QueueInitialize | ( | QUEUE_HEAD * | QueueHead | ) |
Definition at line 21 of file queue.h.
Referenced by IntHookGpaInit().
| void QueueInsert | ( | QUEUE_HEAD * | QueueHead, |
| QUEUE_ENTRY * | Element | ||
| ) |
Definition at line 52 of file queue.h.
Referenced by IntHookGpaRemoveHookInternal().
| BOOLEAN QueueIsEmpty | ( | QUEUE_HEAD * | QueueHead | ) |
| QUEUE_ENTRY* QueueRemove | ( | QUEUE_HEAD * | QueueHead | ) |
Definition at line 39 of file queue.h.
Referenced by IntHookGpaCommitHooks().