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

  /external/chromium_org/sandbox/win/src/
interception_internal.h 30 size_t record_bytes; // rounded to sizeof(size_t) bytes member in struct:sandbox::FunctionInfo
40 size_t record_bytes; // rounded to sizeof(size_t) bytes member in struct:sandbox::DllPatchInfo
handle_closer.h 26 size_t record_bytes; // Rounded to sizeof(size_t) bytes. member in struct:sandbox::HandleListEntry
34 size_t record_bytes; // Rounded to sizeof(size_t) bytes. member in struct:sandbox::HandleCloserInfo
interception_agent.cc 94 reinterpret_cast<char*>(dll_info) + dll_info->record_bytes);
157 if (!IsWithinRange(dll_info, dll_info->record_bytes, function->function)) {
169 if (!IsWithinRange(function, function->record_bytes, interceptor) ||
170 !IsWithinRange(dll_info, dll_info->record_bytes, interceptor)) {
195 reinterpret_cast<const char*>(function) + function->record_bytes);
interception_unittest.cc 41 ASSERT_EQ(0u, dll->record_bytes % sizeof(size_t));
49 ASSERT_EQ(0u, function->record_bytes % sizeof(size_t));
69 reinterpret_cast<char*>(function) + function->record_bytes);
74 dll->record_bytes);
interception.cc 167 size_t record_bytes = offsetof(FunctionInfo, function) + strings_chars; local
168 record_bytes = RoundUpToMultiple(record_bytes, sizeof(size_t));
169 buffer_bytes += record_bytes;
255 dll_info->record_bytes = required;
294 function->record_bytes = required;
311 dll_info->record_bytes += required;
handle_closer.cc 119 handle_info->record_bytes = buffer_bytes;
148 list_entry->record_bytes = reinterpret_cast<char*>(output) -
handle_closer_agent.cc 66 + entry->record_bytes);

Completed in 69 milliseconds