HomeSort by relevance Sort by last modified time
    Searched defs:thunk_bytes (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/sandbox/win/src/
interception.cc 392 size_t thunk_bytes = interceptions_.size() * sizeof(ThunkData) + local
394 size_t thunk_offset = GetGranularAlignedRandomOffset(thunk_bytes);
401 size_t thunk_bytes_padded = (thunk_bytes + kPageSize - 1) & ~(kPageSize - 1);
410 dll_data.data_bytes = thunk_bytes;
418 if (!PatchClientFunctions(thunks, thunk_bytes, &dll_data))
432 ::VirtualProtectEx(child, thunks, thunk_bytes,
441 size_t thunk_bytes,
523 thunk_bytes - dll_data->used_bytes,
service_resolver_32.cc 161 size_t thunk_bytes = GetThunkSize(); local
162 scoped_ptr<char[]> thunk_buffer(new char[thunk_bytes]);
173 *storage_used = thunk_bytes;
191 size_t thunk_bytes = GetThunkSize();
192 if (storage_bytes < thunk_bytes)
203 *storage_used = thunk_bytes;

Completed in 1582 milliseconds