OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HandleTable
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/leveldatabase/src/util/
cache.cc
53
class
HandleTable
{
55
HandleTable
() : length_(0), elems_(0), list_(NULL) { Resize(); }
56
~
HandleTable
() { delete[] list_; }
167
HandleTable
table_;
/external/chromium_org/sandbox/win/src/
handle_table.cc
25
const char16*
HandleTable
::kTypeProcess = L"Process";
26
const char16*
HandleTable
::kTypeThread = L"Thread";
27
const char16*
HandleTable
::kTypeFile = L"File";
28
const char16*
HandleTable
::kTypeDirectory = L"Directory";
29
const char16*
HandleTable
::kTypeKey = L"Key";
30
const char16*
HandleTable
::kTypeWindowStation = L"WindowStation";
31
const char16*
HandleTable
::kTypeDesktop = L"Desktop";
32
const char16*
HandleTable
::kTypeService = L"Service";
33
const char16*
HandleTable
::kTypeMutex = L"Mutex";
34
const char16*
HandleTable
::kTypeSemaphore = L"Semaphore"
[
all
...]
handle_table.h
17
//
HandleTable
retrieves the global handle table and provides helper classes
19
class
HandleTable
{
21
static const char16*
HandleTable
::kTypeProcess;
22
static const char16*
HandleTable
::kTypeThread;
23
static const char16*
HandleTable
::kTypeFile;
24
static const char16*
HandleTable
::kTypeDirectory;
25
static const char16*
HandleTable
::kTypeKey;
26
static const char16*
HandleTable
::kTypeWindowStation;
27
static const char16*
HandleTable
::kTypeDesktop;
28
static const char16*
HandleTable
::kTypeService
[
all
...]
Completed in 180 milliseconds