OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DllInterceptionData
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/sandbox/win/src/
interception_agent.h
19
struct
DllInterceptionData
;
69
bool PatchDll(const DllPatchInfo* dll_info,
DllInterceptionData
* thunks);
80
DllInterceptionData
* dlls_[1];
interception_internal.h
61
struct
DllInterceptionData
{
interception.h
27
struct
DllInterceptionData
;
204
bool PatchClientFunctions(
DllInterceptionData
* thunks,
206
DllInterceptionData
* dll_data);
interception.cc
394
sizeof(
DllInterceptionData
);
407
DllInterceptionData
* thunks = reinterpret_cast<
DllInterceptionData
*>(
410
DllInterceptionData
dll_data;
413
dll_data.used_bytes = offsetof(
DllInterceptionData
, thunks);
425
offsetof(
DllInterceptionData
, thunks),
428
if (!ok || (offsetof(
DllInterceptionData
, thunks) != written))
441
bool InterceptionManager::PatchClientFunctions(
DllInterceptionData
* thunks,
443
DllInterceptionData
* dll_data) {
interception_agent.cc
109
size_t buffer_bytes = offsetof(
DllInterceptionData
, thunks) +
111
dlls_[i] = reinterpret_cast<
DllInterceptionData
*>(
121
dlls_[i]->used_bytes = offsetof(
DllInterceptionData
, thunks);
149
DllInterceptionData
* thunks) {
Completed in 686 milliseconds