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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive.py
239
pe32
= PROCESSENTRY32()
240
pe32
.dwSize = ctypes.sizeof(PROCESSENTRY32)
242
if not Process32First(hProcessSnap, ctypes.byref(
pe32
)):
247
if
pe32
.th32ProcessID == pid:
250
if not Process32Next(hProcessSnap, ctypes.byref(
pe32
)):
Completed in 331 milliseconds