HomeSort by relevance Sort by last modified time
    Searched refs:thunks (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/base/allocator/
allocator_extension.cc 13 thunks::GetAllocatorWasteSizeFunction get_allocator_waste_size_function =
14 thunks::GetGetAllocatorWasteSizeFunction();
21 thunks::GetStatsFunction get_stats_function = thunks::GetGetStatsFunction();
29 thunks::ReleaseFreeMemoryFunction release_free_memory_function =
30 thunks::GetReleaseFreeMemoryFunction();
36 thunks::GetAllocatorWasteSizeFunction get_allocator_waste_size_function) {
37 DCHECK_EQ(thunks::GetGetAllocatorWasteSizeFunction(),
38 reinterpret_cast<thunks::GetAllocatorWasteSizeFunction>(NULL));
39 thunks::SetGetAllocatorWasteSizeFunction(get_allocator_waste_size_function)
    [all...]
allocator_extension.h 48 thunks::GetAllocatorWasteSizeFunction get_allocator_waste_size_function);
51 thunks::GetStatsFunction get_stats_function);
54 thunks::ReleaseFreeMemoryFunction release_free_memory_function);
allocator_extension_thunks.h 12 namespace thunks { namespace in namespace:base::allocator
32 } // namespace thunks
allocator_extension_thunks.cc 11 namespace thunks { namespace in namespace:base::allocator
50 } // namespace thunks
allocator_shim.cc 273 base::allocator::thunks::SetGetAllocatorWasteSizeFunction(
275 base::allocator::thunks::SetGetStatsFunction(get_stats_thunk);
276 base::allocator::thunks::SetReleaseFreeMemoryFunction(
  /external/chromium_org/sandbox/win/src/
interception_agent.cc 109 size_t buffer_bytes = offsetof(DllInterceptionData, thunks) +
121 dlls_[i]->used_bytes = offsetof(DllInterceptionData, thunks);
149 DllInterceptionData* thunks) {
150 DCHECK_NT(NULL != thunks);
175 NTSTATUS ret = resolver->Setup(thunks->base,
180 &thunks->thunks[i],
189 g_originals[function->id] = &thunks->thunks[i];
191 thunks->num_thunks++
    [all...]
interception_agent.h 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_internal.h 69 ThunkData thunks[1]; member in struct:sandbox::DllInterceptionData
interception.cc 406 DllInterceptionData* thunks = reinterpret_cast<DllInterceptionData*>( local
412 dll_data.used_bytes = offsetof(DllInterceptionData, thunks);
417 // this should write all the individual thunks to the child's memory
418 if (!PatchClientFunctions(thunks, thunk_bytes, &dll_data))
423 bool ok = FALSE != ::WriteProcessMemory(child, thunks, &dll_data,
424 offsetof(DllInterceptionData, thunks),
427 if (!ok || (offsetof(DllInterceptionData, thunks) != written))
430 // Attempt to protect all the thunks, but ignore failure
432 ::VirtualProtectEx(child, thunks, thunk_bytes,
440 bool InterceptionManager::PatchClientFunctions(DllInterceptionData* thunks,
    [all...]
interception.h 201 // thunks is the memory to store all the thunks for this dll (on the child),
204 bool PatchClientFunctions(DllInterceptionData* thunks,

Completed in 67 milliseconds