OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dll_info
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/sandbox/win/src/
interception_agent.cc
65
const DllPatchInfo*
dll_info
) {
67
current_name.Length = static_cast<USHORT>(g_nt.wcslen(
dll_info
->dll_name) *
70
current_name.Buffer = const_cast<wchar_t*>(
dll_info
->dll_name);
87
DllPatchInfo*
dll_info
= interceptions_->dll_list;
local
90
if (DllMatch(full_path, name,
dll_info
))
93
dll_info
= reinterpret_cast<DllPatchInfo*>(
94
reinterpret_cast<char*>(
dll_info
) +
dll_info
->record_bytes);
102
if (
dll_info
->unload_module)
110
dll_info
->num_functions * sizeof(ThunkData)
[
all
...]
interception_agent.h
60
// Returns true if we are interested on this dll.
dll_info
is an entry of the
63
const DllPatchInfo*
dll_info
);
66
// The patches to perform are described on
dll_info
, and thunks is the thunk
69
bool PatchDll(const DllPatchInfo*
dll_info
, DllInterceptionData* thunks);
interception.cc
189
DllPatchInfo*
dll_info
= shared_memory->dll_list;
local
195
buffer =
dll_info
;
215
if (!SetupInterceptionInfo(*rest, &buffer, &buffer_bytes,
dll_info
))
224
dll_info
= reinterpret_cast<DllPatchInfo*>(buffer);
241
DllPatchInfo*
dll_info
= reinterpret_cast<DllPatchInfo*>(*buffer);
local
254
dll_info
->unload_module = (data.type == INTERCEPTION_UNLOAD_MODULE);
255
dll_info
->record_bytes = required;
256
dll_info
->offset_to_functions = required;
257
dll_info
->num_functions = 0;
258
data.dll._Copy_s(
dll_info
->dll_name, data.dll.size(), data.dll.size())
[
all
...]
interception.h
176
//
dll_info
points to the dll being updated with the interception stored on
181
DllPatchInfo*
dll_info
) const;
Completed in 3748 milliseconds