OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pe32
(Results
1 - 2
of
2
) sorted by null
/external/qemu/android/utils/
filelock.c
139
PROCESSENTRY32
pe32
;
local
157
pe32
.dwSize = sizeof( PROCESSENTRY32 );
164
else if ( !Process32First( processSnapshot, &
pe32
) )
173
if (
pe32
.th32ProcessID == lockpid) {
177
} while (Process32Next( processSnapshot, &
pe32
) );
/external/webkit/Tools/Scripts/webkitpy/common/system/
executive.py
249
pe32
= PROCESSENTRY32()
250
pe32
.dwSize = ctypes.sizeof(PROCESSENTRY32)
252
if not Process32First(hProcessSnap, ctypes.byref(
pe32
)):
257
if
pe32
.th32ProcessID == pid:
260
if not Process32Next(hProcessSnap, ctypes.byref(
pe32
)):
Completed in 106 milliseconds