HomeSort by relevance Sort by last modified time
    Searched defs:Unmap (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/ppapi/thunk/
ppb_file_mapping_thunk.cc 42 int32_t Unmap(PP_Instance instance,
46 VLOG(4) << "PPB_FileMapping::Unmap()";
50 return enter.SetResult(enter.functions()->Unmap(instance,
66 &Unmap,
ppb_buffer_thunk.cc 44 void Unmap(PP_Resource resource) {
47 enter.object()->Unmap();
55 &Unmap,
ppb_image_data_thunk.cc 70 void Unmap(PP_Resource image_data) {
71 VLOG(4) << "PPB_ImageData::Unmap()";
75 enter.object()->Unmap();
85 &Unmap
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_var_array_buffer_interface.cc 40 void FakeVarArrayBufferInterface::Unmap(struct PP_Var var) {
  /external/chromium_org/ppapi/c/dev/
ppb_buffer_dev.h 55 void (*Unmap)(PP_Resource resource);
  /external/chromium_org/ppapi/c/
ppb_var_array_buffer.h 102 * Unmap() unmaps the given <code>ArrayBuffer</code> var from the module
110 void (*Unmap)(struct PP_Var array);
ppb_file_mapping.h 49 * file may not actually be updated until Unmap() is called. This is only
118 * Unmap() deletes the mapping of the specified address. The specified
123 * @param[in] length The length of the region to unmap.
125 * completion of Unmap().
129 int32_t (*Unmap)(PP_Instance instance,
ppb_image_data.h 193 * Unmap is a pointer to a function that unmaps an image data from the module
199 void (*Unmap)(PP_Resource image_data);
  /external/chromium_org/ppapi/cpp/
var_array_buffer.cc 68 void VarArrayBuffer::Unmap() {
70 get_interface<PPB_VarArrayBuffer_1_0>()->Unmap(var_);
  /external/chromium_org/ppapi/proxy/
plugin_array_buffer_var.cc 42 Unmap();
70 void PluginArrayBufferVar::Unmap() {
72 shmem_->Unmap();
100 s.Unmap();
file_mapping_resource.cc 106 int32_t FileMappingResource::Unmap(PP_Instance /* instance */,
142 // If the Map operation was successful, we need to Unmap to avoid leaks.
144 // Unmap.
ppb_buffer_proxy.cc 35 Unmap();
57 void Buffer::Unmap() {
59 shm_.Unmap();
  /external/chromium_org/content/common/gpu/client/
gpu_memory_buffer_impl_io_surface.cc 76 void GpuMemoryBufferImplIOSurface::Unmap() {
gpu_memory_buffer_impl_surface_texture.cc 105 void GpuMemoryBufferImplSurfaceTexture::Unmap() {
106 TRACE_EVENT0("gpu", "GpuMemoryBufferImplSurfaceTexture::Unmap");
gpu_memory_buffer_impl_shm.cc 92 void GpuMemoryBufferImplShm::Unmap() {
94 shared_memory_->Unmap();
  /external/chromium_org/content/renderer/pepper/
host_array_buffer_var.cc 39 s.Unmap();
51 void HostArrayBufferVar::Unmap() {
70 shm->Unmap();
ppb_buffer_impl.cc 75 void PPB_Buffer_Impl::Unmap() {
77 shared_memory_->Unmap();
99 api_->Unmap();
ppb_image_data_impl.cc 119 void PPB_ImageData_Impl::Unmap() { backend_->Unmap(); }
220 void ImageDataPlatformBackend::Unmap() {
288 void ImageDataSimpleBackend::Unmap() {
290 shared_memory_->Unmap();
  /external/chromium_org/mojo/system/
raw_shared_buffer_win.cc 82 void RawSharedBufferMapping::Unmap() {
raw_shared_buffer_posix.cc 145 void RawSharedBufferMapping::Unmap() {
  /art/runtime/base/unix_file/
mapped_file.cc 34 Unmap();
88 bool MappedFile::Unmap() {
92 PLOG(WARNING) << "Failed unmap file '" << GetPath() << "' of size "
  /external/chromium_org/base/memory/
shared_memory_nacl.cc 112 bool SharedMemory::Unmap() {
128 Unmap();
shared_memory_win.cc 185 bool SharedMemory::Unmap() {
209 Unmap();
  /frameworks/webview/chromium/plat_support/
graphic_buffer_impl.cpp 62 return buffer->Unmap();
96 status_t GraphicBufferImpl::Unmap() {
  /external/chromium_org/ppapi/shared_impl/
ppb_var_shared.cc 106 void Unmap(PP_Var array) {
110 buffer->Unmap();
114 &CreateArrayBufferVar, &ByteLength, &Map, &Unmap};

Completed in 498 milliseconds

1 2