thunks             13 base/allocator/allocator_extension.cc   thunks::GetAllocatorWasteSizeFunction get_allocator_waste_size_function =
thunks             14 base/allocator/allocator_extension.cc       thunks::GetGetAllocatorWasteSizeFunction();
thunks             21 base/allocator/allocator_extension.cc   thunks::GetStatsFunction get_stats_function = thunks::GetGetStatsFunction();
thunks             29 base/allocator/allocator_extension.cc   thunks::ReleaseFreeMemoryFunction release_free_memory_function =
thunks             30 base/allocator/allocator_extension.cc       thunks::GetReleaseFreeMemoryFunction();
thunks             36 base/allocator/allocator_extension.cc     thunks::GetAllocatorWasteSizeFunction get_allocator_waste_size_function) {
thunks             37 base/allocator/allocator_extension.cc   DCHECK_EQ(thunks::GetGetAllocatorWasteSizeFunction(),
thunks             38 base/allocator/allocator_extension.cc             reinterpret_cast<thunks::GetAllocatorWasteSizeFunction>(NULL));
thunks             39 base/allocator/allocator_extension.cc   thunks::SetGetAllocatorWasteSizeFunction(get_allocator_waste_size_function);
thunks             42 base/allocator/allocator_extension.cc void SetGetStatsFunction(thunks::GetStatsFunction get_stats_function) {
thunks             43 base/allocator/allocator_extension.cc   DCHECK_EQ(thunks::GetGetStatsFunction(),
thunks             44 base/allocator/allocator_extension.cc             reinterpret_cast<thunks::GetStatsFunction>(NULL));
thunks             45 base/allocator/allocator_extension.cc   thunks::SetGetStatsFunction(get_stats_function);
thunks             49 base/allocator/allocator_extension.cc     thunks::ReleaseFreeMemoryFunction release_free_memory_function) {
thunks             50 base/allocator/allocator_extension.cc   DCHECK_EQ(thunks::GetReleaseFreeMemoryFunction(),
thunks             51 base/allocator/allocator_extension.cc             reinterpret_cast<thunks::ReleaseFreeMemoryFunction>(NULL));
thunks             52 base/allocator/allocator_extension.cc   thunks::SetReleaseFreeMemoryFunction(release_free_memory_function);
thunks             48 base/allocator/allocator_extension.h     thunks::GetAllocatorWasteSizeFunction get_allocator_waste_size_function);
thunks             51 base/allocator/allocator_extension.h     thunks::GetStatsFunction get_stats_function);
thunks             54 base/allocator/allocator_extension.h     thunks::ReleaseFreeMemoryFunction release_free_memory_function);
thunks             12 base/allocator/allocator_extension_thunks.h namespace thunks {
thunks            273 base/allocator/allocator_shim.cc   base::allocator::thunks::SetGetAllocatorWasteSizeFunction(
thunks            275 base/allocator/allocator_shim.cc   base::allocator::thunks::SetGetStatsFunction(get_stats_thunk);
thunks            276 base/allocator/allocator_shim.cc   base::allocator::thunks::SetReleaseFreeMemoryFunction(
thunks            407 sandbox/win/src/interception.cc   DllInterceptionData* thunks = reinterpret_cast<DllInterceptionData*>(
thunks            413 sandbox/win/src/interception.cc   dll_data.used_bytes = offsetof(DllInterceptionData, thunks);
thunks            419 sandbox/win/src/interception.cc   if (!PatchClientFunctions(thunks, thunk_bytes, &dll_data))
thunks            424 sandbox/win/src/interception.cc   bool ok = FALSE != ::WriteProcessMemory(child, thunks, &dll_data,
thunks            425 sandbox/win/src/interception.cc                                           offsetof(DllInterceptionData, thunks),
thunks            428 sandbox/win/src/interception.cc   if (!ok || (offsetof(DllInterceptionData, thunks) != written))
thunks            433 sandbox/win/src/interception.cc   ::VirtualProtectEx(child, thunks, thunk_bytes,
thunks            441 sandbox/win/src/interception.cc bool InterceptionManager::PatchClientFunctions(DllInterceptionData* thunks,
thunks            444 sandbox/win/src/interception.cc   DCHECK(NULL != thunks);
thunks            525 sandbox/win/src/interception.cc                                 &thunks->thunks[dll_data->num_thunks],
thunks            532 sandbox/win/src/interception.cc     g_originals[it->id] = &thunks->thunks[dll_data->num_thunks];
thunks            204 sandbox/win/src/interception.h   bool PatchClientFunctions(DllInterceptionData* thunks,
thunks            109 sandbox/win/src/interception_agent.cc   size_t buffer_bytes = offsetof(DllInterceptionData, thunks) +
thunks            121 sandbox/win/src/interception_agent.cc   dlls_[i]->used_bytes = offsetof(DllInterceptionData, thunks);
thunks            149 sandbox/win/src/interception_agent.cc                                  DllInterceptionData* thunks) {
thunks            150 sandbox/win/src/interception_agent.cc   DCHECK_NT(NULL != thunks);
thunks            175 sandbox/win/src/interception_agent.cc     NTSTATUS ret = resolver->Setup(thunks->base,
thunks            180 sandbox/win/src/interception_agent.cc                                    &thunks->thunks[i],
thunks            189 sandbox/win/src/interception_agent.cc     g_originals[function->id] = &thunks->thunks[i];
thunks            191 sandbox/win/src/interception_agent.cc     thunks->num_thunks++;
thunks            192 sandbox/win/src/interception_agent.cc     thunks->used_bytes += sizeof(ThunkData);
thunks             69 sandbox/win/src/interception_agent.h   bool PatchDll(const DllPatchInfo* dll_info, DllInterceptionData* thunks);
thunks             69 sandbox/win/src/interception_internal.h   ThunkData thunks[1];