The world's most popular open source database
#include <sql_list.h>
Inheritance diagram for Sql_alloc:

Public Member Functions | |
| Sql_alloc () | |
| ~Sql_alloc () | |
Static Public Member Functions | |
| static void * | operator new (size_t size) |
| static void * | operator new[] (size_t size) |
| static void * | operator new[] (size_t size, MEM_ROOT *mem_root) |
| static void * | operator new (size_t size, MEM_ROOT *mem_root) |
| static void | operator delete (void *ptr, size_t size) |
| static void | operator delete (void *ptr, MEM_ROOT *mem_root) |
| static void | operator delete[] (void *ptr, size_t size) |
Definition at line 24 of file sql_list.h.
| Sql_alloc::Sql_alloc | ( | ) | [inline] |
| Sql_alloc::~Sql_alloc | ( | ) | [inline] |
| static void Sql_alloc::operator delete | ( | void * | ptr, | |
| MEM_ROOT * | mem_root | |||
| ) | [inline, static] |
| static void Sql_alloc::operator delete | ( | void * | ptr, | |
| size_t | size | |||
| ) | [inline, static] |
Reimplemented in Server_side_cursor.
Definition at line 39 of file sql_list.h.
References TRASH.
00039 { TRASH(ptr, size); }
| static void Sql_alloc::operator delete[] | ( | void * | ptr, | |
| size_t | size | |||
| ) | [inline, static] |
Definition at line 37 of file sql_list.h.
References alloc_root().
00038 { return (void*) alloc_root(mem_root, (uint) size); }
Here is the call graph for this function:

| static void* Sql_alloc::operator new | ( | size_t | size | ) | [inline, static] |
Definition at line 27 of file sql_list.h.
References sql_alloc().
Here is the call graph for this function:

Definition at line 35 of file sql_list.h.
References alloc_root().
00036 { return (void*) alloc_root(mem_root, (uint) size); }
Here is the call graph for this function:

| static void* Sql_alloc::operator new[] | ( | size_t | size | ) | [inline, static] |
Definition at line 31 of file sql_list.h.
References sql_alloc().
Here is the call graph for this function:

1.4.7

