OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PEImage
(Results
1 - 4
of
4
) sorted by null
/external/chromium/base/
pe_image.h
20
class
PEImage
{
25
typedef bool (*EnumSectionsFunction)(const
PEImage
&image,
35
typedef bool (*EnumExportsFunction)(const
PEImage
&image, DWORD ordinal,
43
typedef bool (*EnumImportChunksFunction)(const
PEImage
&image, LPCSTR module,
51
typedef bool (*EnumImportsFunction)(const
PEImage
&image, LPCSTR module,
59
typedef bool (*EnumDelayImportChunksFunction)(const
PEImage
&image,
71
typedef bool (*EnumRelocsFunction)(const
PEImage
&image, WORD type,
74
explicit
PEImage
(HMODULE module) : module_(module) {}
75
explicit
PEImage
(const void* module) {
222
// This class is an extension to the
PEImage
class that allows working with P
[
all
...]
pe_image.cc
5
// This file implements
PEImage
, a generic class to manipulate PE files.
19
PEImage
::EnumImportsFunction callback;
24
bool ProcessImportChunk(const
PEImage
&image, LPCSTR module,
35
bool ProcessDelayImportChunk(const
PEImage
&image,
48
void
PEImage
::set_module(HMODULE module) {
52
PIMAGE_DOS_HEADER
PEImage
::GetDosHeader() const {
56
PIMAGE_NT_HEADERS
PEImage
::GetNTHeaders() const {
63
PIMAGE_SECTION_HEADER
PEImage
::GetSectionHeader(UINT section) const {
73
WORD
PEImage
::GetNumSections() const {
77
DWORD
PEImage
::GetImageDirectoryEntrySize(UINT directory) const
[
all
...]
pe_image_unittest.cc
5
// This file contains unit tests for
PEImage
.
12
bool ExportsCallback(const
PEImage
&image,
25
bool ImportsCallback(const
PEImage
&image,
38
bool SectionsCallback(const
PEImage
&image,
49
bool RelocsCallback(const
PEImage
&image,
59
bool ImportChunksCallback(const
PEImage
&image,
70
bool DelayImportChunksCallback(const
PEImage
&image,
155
PEImage
pe(module);
201
PEImage
pe(module);
iat_patch.cc
39
static bool InterceptEnumCallback(const
PEImage
&image, const char* module,
93
PEImage
target_image(module_handle);
Completed in 691 milliseconds