Home | History | Annotate | Download | only in src

Lines Matching refs:HANDLE

679     // standard output handle is invalid or its file type is unknown.
998 Win32MemoryMappedFile(HANDLE file,
999 HANDLE file_mapping,
1010 HANDLE file_;
1011 HANDLE file_mapping_;
1019 HANDLE file = CreateFileA(name, GENERIC_READ | GENERIC_WRITE,
1026 HANDLE file_mapping = CreateFileMapping(file, NULL,
1039 HANDLE file = CreateFileA(name, GENERIC_READ | GENERIC_WRITE,
1043 HANDLE file_mapping = CreateFileMapping(file, NULL,
1105 typedef BOOL (__stdcall *DLL_FUNC_TYPE(SymInitialize))(IN HANDLE hProcess,
1111 IN HANDLE hProcess,
1115 IN HANDLE hProcess,
1116 IN HANDLE hFile,
1123 HANDLE hProcess,
1124 HANDLE hThread,
1132 IN HANDLE hProcess,
1137 IN HANDLE hProcess,
1143 HANDLE hProcess,
1146 HANDLE hProcess,
1150 typedef HANDLE (__stdcall *DLL_FUNC_TYPE(CreateToolhelp32Snapshot))(
1153 typedef BOOL (__stdcall *DLL_FUNC_TYPE(Module32FirstW))(HANDLE hSnapshot,
1155 typedef BOOL (__stdcall *DLL_FUNC_TYPE(Module32NextW))(HANDLE hSnapshot,
1224 static bool LoadSymbols(HANDLE process_handle) {
1250 HANDLE snapshot = _CreateToolhelp32Snapshot(
1294 HANDLE process_handle = GetCurrentProcess();
1317 HANDLE process_handle = GetCurrentProcess();
1318 HANDLE thread_handle = GetCurrentThread();
1572 // Definition of invalid thread handle and id.
1573 static const HANDLE kNoThread = INVALID_HANDLE_VALUE;
1588 explicit PlatformData(HANDLE thread) : thread_(thread) {}
1589 HANDLE thread_;
1595 // handle until it is started.
1610 // Close our own handle for the thread.
1621 data_->thread_ = reinterpret_cast<HANDLE>(
1745 HANDLE sem;
1939 // Get a handle to the calling thread. This is the thread that we are
1940 // going to profile. We need to make a copy of the handle because we are
1957 HANDLE profiled_thread() { return profiled_thread_; }
1960 HANDLE profiled_thread_;
2034 HANDLE profiled_thread = sampler->platform_data()->profiled_thread();