OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PEImage
(Results
1 - 21
of
21
) sorted by null
/external/chromium_org/base/win/
pe_image.h
28
class
PEImage
{
33
typedef bool (*EnumSectionsFunction)(const
PEImage
&image,
43
typedef bool (*EnumExportsFunction)(const
PEImage
&image, DWORD ordinal,
51
typedef bool (*EnumImportChunksFunction)(const
PEImage
&image, LPCSTR module,
59
typedef bool (*EnumImportsFunction)(const
PEImage
&image, LPCSTR module,
67
typedef bool (*EnumDelayImportChunksFunction)(const
PEImage
&image,
79
typedef bool (*EnumRelocsFunction)(const
PEImage
&image, WORD type,
82
explicit
PEImage
(HMODULE module) : module_(module) {}
83
explicit
PEImage
(const void* module) {
230
// 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.
24
PEImage
::EnumImportsFunction callback;
48
bool ProcessImportChunk(const
PEImage
&image, LPCSTR module,
59
bool ProcessDelayImportChunk(const
PEImage
&image,
72
void
PEImage
::set_module(HMODULE module) {
76
PIMAGE_DOS_HEADER
PEImage
::GetDosHeader() const {
80
PIMAGE_NT_HEADERS
PEImage
::GetNTHeaders() const {
87
PIMAGE_SECTION_HEADER
PEImage
::GetSectionHeader(UINT section) const {
97
WORD
PEImage
::GetNumSections() const {
101
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,
206
PEImage
pe(module);
256
PEImage
pe(module);
iat_patch_function.cc
44
bool InterceptEnumCallback(const base::win::
PEImage
& image, const char* module,
112
base::win::
PEImage
target_image(module_handle);
/external/chromium_org/chrome/installer/test/
pe_image_resources.h
19
namespace base { namespace win { class
PEImage
; } }
57
bool EnumResources(const base::win::
PEImage
& image, EnumResource_Fn callback,
pe_image_resources.cc
29
const base::win::
PEImage
& image, const uint8* tree_base, DWORD tree_size,
110
bool EnumResources(const base::win::
PEImage
& image, EnumResource_Fn callback,
/external/chromium_org/sandbox/win/src/
service_resolver.cc
31
base::win::
PEImage
module_image(module);
resolver.cc
50
base::win::
PEImage
pe(interceptor_module);
eat_resolver.cc
69
base::win::
PEImage
pe(module);
policy_broker.cc
43
base::win::
PEImage
ntdll_image(ntdll);
sidestep_resolver.cc
196
base::win::
PEImage
pe(base);
target_process.cc
53
base::win::
PEImage
pe(exe);
win_utils.cc
308
// Use
PEImage
to sanity-check that we have a valid ntdll handle.
309
base::win::
PEImage
ntdll_peimage(ntdll_local);
interception.cc
450
base::win::
PEImage
ntdll_image(ntdll_base);
sandbox_nt_util.cc
368
base::win::
PEImage
pe(module);
/external/chromium_org/chrome_elf/
ntdll_cache.cc
29
bool EnumExportsCallback(const base::win::
PEImage
& image,
49
base::win::
PEImage
ntdll_image(ntdll_handle);
elf_imports_unittest.cc
25
static bool ImportsCallback(const base::win::
PEImage
&image,
/external/chromium_org/base/debug/
profiler.cc
115
base::win::
PEImage
image(this_module);
142
// Callback function to
PEImage
::EnumImportChunks.
144
const base::win::
PEImage
&image, const char* module_name,
186
base::win::
PEImage
image(this_module);
/external/chromium_org/chrome/app/
image_pre_reader_win.cc
249
// Now we have all of the headers. This is enough to let us use the
PEImage
251
base::win::
PEImage
pe_image(reinterpret_cast<HMODULE>(&headers[0]));
297
base::win::
PEImage
pe_image(dll_module);
380
base::win::
PEImage
pe_image(dll_module);
/external/chromium_org/chrome_elf/blacklist/
blacklist_interceptions.cc
125
void SafeGetImageInfo(const base::win::
PEImage
& pe,
162
base::win::
PEImage
pe(module);
/external/chromium_org/content/common/
plugin_list_win.cc
214
base::win::
PEImage
image(plugin_image.data());
Completed in 807 milliseconds