HomeSort by relevance Sort by last modified time
    Searched refs:HandleTable (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/sandbox/win/src/
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...]
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...]
  /external/chromium_org/content/common/
handle_enumerator_win.cc 26 handle_types[sandbox::HandleTable::kTypeProcess] = ProcessHandle;
27 handle_types[sandbox::HandleTable::kTypeThread] = ThreadHandle;
28 handle_types[sandbox::HandleTable::kTypeFile] = FileHandle;
29 handle_types[sandbox::HandleTable::kTypeDirectory] = DirectoryHandle;
30 handle_types[sandbox::HandleTable::kTypeKey] = KeyHandle;
31 handle_types[sandbox::HandleTable::kTypeWindowStation] = WindowStationHandle;
32 handle_types[sandbox::HandleTable::kTypeDesktop] = DesktopHandle;
33 handle_types[sandbox::HandleTable::kTypeService] = ServiceHandle;
34 handle_types[sandbox::HandleTable::kTypeMutex] = MutexHandle;
35 handle_types[sandbox::HandleTable::kTypeSemaphore] = SemaphoreHandle
    [all...]
  /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_;

Completed in 62 milliseconds