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

  /external/chromium_org/sandbox/win/src/
handle_closer.cc 93 void* remote_data = ::VirtualAllocEx(child, NULL, bytes_needed, local
95 if (NULL == remote_data)
100 BOOL result = ::WriteProcessMemory(child, remote_data, local_buffer.get(),
103 ::VirtualFreeEx(child, remote_data, 0, MEM_RELEASE);
107 g_handles_to_close = reinterpret_cast<HandleCloserInfo*>(remote_data);
interception.cc 329 void* remote_data = ::VirtualAllocEx(child, NULL, buffer_bytes, local
331 if (NULL == remote_data)
335 BOOL success = ::WriteProcessMemory(child, remote_data, local_buffer,
338 ::VirtualFreeEx(child, remote_data, 0, MEM_RELEASE);
342 *remote_buffer = remote_data;

Completed in 43 milliseconds