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

1 2 3 4 5

  /external/chromium_org/ppapi/thunk/
ppb_buffer_api.h 22 virtual void Unmap() = 0;
ppb_image_data_api.h 22 virtual void Unmap() = 0;
ppb_buffer_thunk.cc 44 void Unmap(PP_Resource resource) {
47 enter.object()->Unmap();
55 &Unmap,
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_image_data_thunk.cc 70 void Unmap(PP_Resource image_data) {
71 VLOG(4) << "PPB_ImageData::Unmap()";
75 enter.object()->Unmap();
85 &Unmap
ppb_file_mapping_api.h 33 virtual int32_t Unmap(PP_Instance instance,
  /external/chromium_org/ppapi/api/
ppb_var_array_buffer.idl 91 * Unmap() unmaps the given <code>ArrayBuffer</code> var from the module
99 void Unmap([in] PP_Var array);
ppb_image_data.idl 179 * Unmap is a pointer to a function that unmaps an image data from the module
185 void Unmap(
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_var_array_buffer_interface.h 20 virtual void 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/api/dev/
ppb_buffer_dev.idl 49 void Unmap(
  /external/chromium_org/ppapi/cpp/
var_array_buffer.h 93 /// Unmap() unmaps this <code>ArrayBuffer</code> var from the module address
96 void Unmap();
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();
plugin_array_buffer_var.h 30 virtual void Unmap() OVERRIDE;
ppb_buffer_proxy.cc 35 Unmap();
57 void Buffer::Unmap() {
59 shm_.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();
host_array_buffer_var.h 26 virtual void Unmap() OVERRIDE;
ppb_image_data_impl.h 47 virtual void Unmap() = 0;
92 virtual void Unmap() OVERRIDE;
127 virtual void Unmap() OVERRIDE;
162 virtual void Unmap() OVERRIDE;
202 image_data_->Unmap();
  /frameworks/webview/chromium/plat_support/
graphic_buffer_impl.h 42 status_t 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 327 milliseconds

1 2 3 4 5