Home
last modified time | relevance | path

Searched refs:dwProcessId (Results 1 – 11 of 11) sorted by relevance

/trunk/main/setup_native/source/win32/customactions/quickstarter/
H A Dquickstarter.cxx165 static std::string GetProcessImagePath_9x( DWORD dwProcessId ) in GetProcessImagePath_9x() argument
182 if ( pe32.th32ProcessID == dwProcessId ) in GetProcessImagePath_9x()
219 static std::string GetProcessImagePath_NT( DWORD dwProcessId ) in GetProcessImagePath_NT() argument
223 … HANDLE hProcess = OpenProcess( PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, dwProcessId ); in GetProcessImagePath_NT()
238 std::string GetProcessImagePath( DWORD dwProcessId ) in GetProcessImagePath() argument
240 …n (LONG)GetVersion() < 0 ? GetProcessImagePath_9x( dwProcessId ) : GetProcessImagePath_NT( dwProce… in GetProcessImagePath()
H A Dshutdown_quickstart.cxx36 DWORD dwProcessId; in EnumWindowsProc() local
38 if ( GetWindowThreadProcessId( hWnd, &dwProcessId ) ) in EnumWindowsProc()
40 std::string sImagePath = GetProcessImagePath( dwProcessId ); in EnumWindowsProc()
51 HANDLE hProcess = OpenProcess( SYNCHRONIZE, FALSE, dwProcessId ); in EnumWindowsProc()
H A Dquickstarter.hxx39 std::string GetProcessImagePath( DWORD dwProcessId );
/trunk/main/crashrep/source/win32/
H A Dsoreport.cpp1698 static bool WriteStackFile( FILE *fout, hash_map< string, string >& rLibraries, DWORD dwProcessId, … in WriteStackFile() argument
1702 if ( fout && dwProcessId && pExceptionPointers ) in WriteStackFile()
1704 … HANDLE hProcess = OpenProcess( PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, dwProcessId ); in WriteStackFile()
1889 BOOL WriteDumpFile( DWORD dwProcessId, PEXCEPTION_POINTERS pExceptionPointers, DWORD dwThreadId ) in WriteDumpFile() argument
1912 … HANDLE hProcess = OpenProcess( PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, dwProcessId ); in WriteDumpFile()
1966 …fSuccess = pMiniDumpWriteDump( hProcess, dwProcessId, hFile, MiniDumpNormal, lpExceptionParam, NUL… in WriteDumpFile()
1991 DWORD dwProcessId = 0; in FindProcessForImage() local
2001 for ( unsigned i = 0; !dwProcessId && i < nProcesses; i++ ) in FindProcessForImage()
2016 dwProcessId = aProcesses[i]; in FindProcessForImage()
2025 return dwProcessId; in FindProcessForImage()
[all …]
/trunk/main/sal/systools/win32/uwinapi/
H A DGetModuleFileNameExA.cpp34 DWORD dwProcessId = 0; variable
37 …if ( !hProcess || hProcess == GetCurrentProcess() || GetCurrentProcessId() == (dwProcessId = GetPr…
40 HANDLE hSnapshot = CreateToolhelp32Snapshot( TH32CS_SNAPMODULE, dwProcessId );
H A DGetProcessId.cpp115 DWORD dwProcessId = 0; in GetProcessId_WINDOWS() local
128 dwProcessId = Obfuscate( (DWORD)pPDB->pHandleTable->array[dwHandleNumber].pObject ); in GetProcessId_WINDOWS()
134 return dwProcessId; in GetProcessId_WINDOWS()
/trunk/main/sal/systools/win32/kill/
H A Dkill.cxx82 DWORD dwProcessId = GetProcessId( hProcess ); in GetProcAddressEx() local
84 if ( GetCurrentProcessId() != dwProcessId ) in GetProcAddressEx()
150 DWORD dwProcessId = GetProcessId( hProcess ); in RaiseSignalEx() local
164 if ( te.th32OwnerProcessID == dwProcessId ) in RaiseSignalEx()
/trunk/main/sal/osl/os2/
H A Dpipeimpl.cxx48 DWORD dwProcessId; member
461 HANDLE hSourceProcess = OpenProcess( PROCESS_DUP_HANDLE, FALSE, pData->dwProcessId ); in Create()
647 pData->dwProcessId = 0; in Create()
667 pData->dwProcessId = GetCurrentProcessId(); in Create()
/trunk/main/sal/osl/w32/
H A Dpipeimpl.cxx53 DWORD dwProcessId; member
466 HANDLE hSourceProcess = OpenProcess( PROCESS_DUP_HANDLE, FALSE, pData->dwProcessId ); in Create()
652 pData->dwProcessId = 0; in Create()
672 pData->dwProcessId = GetCurrentProcessId(); in Create()
H A Dmodule.cxx233 DWORD dwProcessId = GetCurrentProcessId(); in _osl_addressGetModuleURL_Windows() local
237 hModuleSnap = lpfnCreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwProcessId ); in _osl_addressGetModuleURL_Windows()
H A Dprocimpl.cxx603 pProcImpl->m_IdProcess = process_info.dwProcessId; in osl_executeProcess_WithRedirectedIO()