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 328 void* remote_data = ::VirtualAllocEx(child, NULL, buffer_bytes, local
330 if (NULL == remote_data)
334 BOOL success = ::WriteProcessMemory(child, remote_data, local_buffer,
337 ::VirtualFreeEx(child, remote_data, 0, MEM_RELEASE);
341 *remote_buffer = remote_data;

Completed in 100 milliseconds