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/win/
pe_image.h
24
class
PEImage
{
29
typedef bool (*EnumSectionsFunction)(const
PEImage
&image,
39
typedef bool (*EnumExportsFunction)(const
PEImage
&image, DWORD ordinal,
47
typedef bool (*EnumImportChunksFunction)(const
PEImage
&image, LPCSTR module,
55
typedef bool (*EnumImportsFunction)(const
PEImage
&image, LPCSTR module,
63
typedef bool (*EnumDelayImportChunksFunction)(const
PEImage
&image,
75
typedef bool (*EnumRelocsFunction)(const
PEImage
&image, WORD type,
78
explicit
PEImage
(HMODULE module) : module_(module) {}
79
explicit
PEImage
(const void* module) {
226
// 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.
23
PEImage
::EnumImportsFunction callback;
47
bool ProcessImportChunk(const
PEImage
&image, LPCSTR module,
58
bool ProcessDelayImportChunk(const
PEImage
&image,
71
void
PEImage
::set_module(HMODULE module) {
75
PIMAGE_DOS_HEADER
PEImage
::GetDosHeader() const {
79
PIMAGE_NT_HEADERS
PEImage
::GetNTHeaders() const {
86
PIMAGE_SECTION_HEADER
PEImage
::GetSectionHeader(UINT section) const {
96
WORD
PEImage
::GetNumSections() const {
100
DWORD
PEImage
::GetImageDirectoryEntrySize(UINT directory) const
[
all
...]
pe_image_unittest.cc
5
// This file contains unit tests for
PEImage
.
15
bool ExportsCallback(const
PEImage
&image,
28
bool ImportsCallback(const
PEImage
&image,
41
bool SectionsCallback(const
PEImage
&image,
52
bool RelocsCallback(const
PEImage
&image,
62
bool ImportChunksCallback(const
PEImage
&image,
73
bool DelayImportChunksCallback(const
PEImage
&image,
158
PEImage
pe(module);
204
PEImage
pe(module);
/external/chromium/base/
file_util_win.cc
[
all
...]
Completed in 29 milliseconds