Home
last modified time | relevance | path

Searched refs:DllInterceptionData (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/sandbox/win/src/
Dinterception_agent.h19 struct DllInterceptionData;
69 bool PatchDll(const DllPatchInfo* dll_info, DllInterceptionData* thunks);
80 DllInterceptionData* dlls_[1];
Dinterception.cc393 sizeof(DllInterceptionData); in PatchNtdll()
406 DllInterceptionData* thunks = reinterpret_cast<DllInterceptionData*>( in PatchNtdll()
409 DllInterceptionData dll_data; in PatchNtdll()
412 dll_data.used_bytes = offsetof(DllInterceptionData, thunks); in PatchNtdll()
424 offsetof(DllInterceptionData, thunks), in PatchNtdll()
427 if (!ok || (offsetof(DllInterceptionData, thunks) != written)) in PatchNtdll()
440 bool InterceptionManager::PatchClientFunctions(DllInterceptionData* thunks, in PatchClientFunctions()
442 DllInterceptionData* dll_data) { in PatchClientFunctions()
Dinterception_agent.cc109 size_t buffer_bytes = offsetof(DllInterceptionData, thunks) + in OnDllLoad()
111 dlls_[i] = reinterpret_cast<DllInterceptionData*>( in OnDllLoad()
121 dlls_[i]->used_bytes = offsetof(DllInterceptionData, thunks); in OnDllLoad()
149 DllInterceptionData* thunks) { in PatchDll()
Dinterception.h27 struct DllInterceptionData;
204 bool PatchClientFunctions(DllInterceptionData* thunks,
206 DllInterceptionData* dll_data);
Dinterception_internal.h61 struct DllInterceptionData { struct