Searched refs:InterceptionAgent (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/sandbox/win/src/
H A Dinterception_agent.h5 // Defines InterceptionAgent, the class in charge of setting up interceptions
25 // The InterceptionAgent executes on the target application, and it is in charge
36 class InterceptionAgent { class in namespace:sandbox
38 // Returns the single InterceptionAgent object for this process.
39 static InterceptionAgent* GetInterceptionAgent();
55 ~InterceptionAgent() {}
82 DISALLOW_IMPLICIT_CONSTRUCTORS(InterceptionAgent);
H A Dtarget_interceptions.cc57 InterceptionAgent* agent = InterceptionAgent::GetInterceptionAgent();
92 InterceptionAgent* agent = InterceptionAgent::GetInterceptionAgent();
H A Dinterception_agent.cc37 InterceptionAgent* InterceptionAgent::GetInterceptionAgent() {
38 static InterceptionAgent* s_singleton = NULL;
44 s_singleton = reinterpret_cast<InterceptionAgent*>(
45 new(NT_ALLOC) char[array_bytes + sizeof(InterceptionAgent)]);
56 bool InterceptionAgent::Init(SharedMemory* shared_memory) {
63 bool InterceptionAgent::DllMatch(const UNICODE_STRING* full_path,
84 bool InterceptionAgent::OnDllLoad(const UNICODE_STRING* full_path,
134 void InterceptionAgent::OnDllUnload(void* base_address) {
148 bool InterceptionAgent
[all...]

Completed in 100 milliseconds