/external/chromium_org/ppapi/proxy/ |
ppb_buffer_proxy.cc | 26 const base::SharedMemoryHandle& shm_handle, 29 shm_(shm_handle, false), 82 ppapi::proxy::SerializedHandle shm_handle; local 84 API_ID_PPB_BUFFER, instance, size, &result, &shm_handle)); 85 if (result.is_null() || !shm_handle.IsHandleValid() || 86 !shm_handle.is_shmem()) 89 return AddProxyResource(result, shm_handle.shmem(), size); 95 base::SharedMemoryHandle shm_handle, 97 return (new Buffer(resource, shm_handle, size))->GetReference();
|
ppb_buffer_proxy.h | 25 const base::SharedMemoryHandle& shm_handle, 57 base::SharedMemoryHandle shm_handle,
|
ppb_graphics_3d_proxy.cc | 32 int shm_handle) { 37 reinterpret_cast<HANDLE>(static_cast<intptr_t>(shm_handle)); 39 shm_handle; 100 int* shm_handle, 309 int shm_handle = 0; local 312 enter.object()->GetTransferBuffer(id, &shm_handle, &shm_size)) { 314 TransportSHMHandleFromInt(dispatcher(), shm_handle),
|
ppb_graphics_3d_proxy.h | 44 int* shm_handle,
|
ppb_audio_proxy.cc | 54 virtual int32_t GetSharedMemory(int* shm_handle, uint32_t* shm_size) OVERRIDE; 124 int32_t Audio::GetSharedMemory(int* shm_handle, uint32_t* shm_size) {
|
/external/chromium_org/content/renderer/pepper/ |
audio_helper.cc | 38 int32_t AudioHelper::GetSharedMemoryImpl(int* shm_handle, uint32_t* shm_size) { 41 *shm_handle = shared_memory_for_create_callback_->handle().fd; 43 *shm_handle = reinterpret_cast<int>(
|
ppb_buffer_impl.cc | 88 int32_t PPB_Buffer_Impl::GetSharedMemory(int* shm_handle) { 90 *shm_handle = shared_memory_->handle().fd; 92 *shm_handle = reinterpret_cast<int>(
|
ppb_graphics_3d_impl.cc | 43 int* shm_handle, 45 if (!shm || !shm_handle || !shm_size) 48 *shm_handle = shm->handle().fd; 50 *shm_handle = reinterpret_cast<int>(shm->handle()); 140 int* shm_handle, 143 return ShmToHandle(buffer.shared_memory, buffer.size, shm_handle, shm_size);
|
audio_helper.h | 37 int32_t GetSharedMemoryImpl(int* shm_handle, uint32_t* shm_size);
|
ppb_audio_impl.h | 59 virtual int32_t GetSharedMemory(int* shm_handle, uint32_t* shm_size) OVERRIDE;
|
ppb_graphics_3d_impl.h | 30 int* shm_handle,
|
ppb_audio_impl.cc | 152 int32_t PPB_Audio_Impl::GetSharedMemory(int* shm_handle, 154 return GetSharedMemoryImpl(shm_handle, shm_size);
|
/external/chromium_org/ppapi/thunk/ |
ppb_audio_api.h | 32 virtual int32_t GetSharedMemory(int* shm_handle, uint32_t* shm_size) = 0;
|
ppb_graphics_3d_api.h | 38 int* shm_handle,
|
/external/chromium_org/content/child/ |
resource_dispatcher.cc | 382 base::SharedMemoryHandle shm_handle, 390 bool shm_valid = base::SharedMemory::IsHandleValid(shm_handle); 394 new base::SharedMemory(shm_handle, true)); // read only 402 base::SharedMemoryHandle shm_handle_copy = shm_handle; 792 base::SharedMemoryHandle shm_handle; local 795 &shm_handle)) { 796 if (base::SharedMemory::IsHandleValid(shm_handle)) 797 base::SharedMemory::CloseHandle(shm_handle);
|
resource_dispatcher.h | 139 base::SharedMemoryHandle shm_handle,
|
/external/chromium_org/components/nacl/loader/ |
nacl_ipc_adapter.cc | 392 const base::SharedMemoryHandle& shm_handle = iter->shmem(); local 396 shm_handle, 398 shm_handle.fd,
|
/external/chromium_org/content/common/ |
resource_messages.h | 252 base::SharedMemoryHandle /* shm_handle */,
|
/external/chromium_org/content/browser/loader/ |
resource_dispatcher_host_unittest.cc | 840 base::SharedMemoryHandle shm_handle; local 841 ASSERT_TRUE(IPC::ReadParam(&messages[1], &iter, &shm_handle)); 857 base::SharedMemory shared_mem(shm_handle, true); // read only [all...] |