Searched defs:Map (Results 126 - 150 of 172) sorted by last modified time

1234567

/external/chromium_org/ppapi/c/dev/
H A Dppb_buffer_dev.h51 void* (*Map)(PP_Resource resource); member in struct:PPB_Buffer_Dev_0_4
/external/chromium_org/ppapi/c/
H A Dppb_file_mapping.h42 * The PP_FileMapFlags contain flag values for use with Map().
60 * Forces Map() to map the file contents at the provided |address|. If Map()
61 * can not comply, Map() will fail.
80 * Map() maps the contents from an offset of the file into memory.
91 * <code>PP_FileMapFlags</code>, providing options for the behavior of Map.
96 * Map page size as returned by GetMapPageSize().
100 * <code>address</code>. Upon Map() completing, <code>*address</code> will
105 * completion of Map().
109 int32_t (*Map)(PP_Instanc member in struct:PPB_FileMapping_0_1
[all...]
H A Dppb_image_data.h184 * Map() maps an image data into the module address space.
191 void* (*Map)(PP_Resource image_data); member in struct:PPB_ImageData_1_0
H A Dppb_var_array_buffer.h70 * Map() maps the <code>ArrayBuffer</code> in to the module's address space
76 * Note that calling Map() can be a relatively expensive operation. Use care
83 * char* data = (char*)(array_buffer_if.Map(array_buffer_var));
100 void* (*Map)(struct PP_Var array); member in struct:PPB_VarArrayBuffer_1_0
104 * Map() to map the buffer again later. The <code>PP_Var</code> remains valid
/external/chromium_org/ppapi/cpp/
H A Dvar_array_buffer.cc61 void* VarArrayBuffer::Map() { function in class:pp::VarArrayBuffer
63 return get_interface<PPB_VarArrayBuffer_1_0>()->Map(var_);
/external/chromium_org/ppapi/proxy/
H A Dfile_mapping_resource.cc31 int32_t FileMappingResource::Map(PP_Instance /* instance */, function in class:ppapi::proxy::FileMappingResource
142 // If the Map operation was successful, we need to Unmap to avoid leaks.
H A Dplugin_array_buffer_var.cc54 void* PluginArrayBufferVar::Map() { function in class:ppapi::PluginArrayBufferVar
59 if (!shmem_->Map(size_in_bytes_)) {
97 if (!s.Map(ByteLength()))
99 memcpy(s.memory(), Map(), ByteLength());
H A Dppb_buffer_proxy.cc51 void* Buffer::Map() { function in class:ppapi::proxy::Buffer
53 shm_.Map(size_);
H A Dppb_image_data_proxy.cc364 void* data = Map();
380 transport_dib_.reset(TransportDIB::Map(handle));
387 void* PlatformImageData::Map() { function in class:ppapi::proxy::PlatformImageData
447 void* SimpleImageData::Map() { function in class:ppapi::proxy::SimpleImageData
449 shm_.Map(size_);
/external/chromium_org/ppapi/shared_impl/
H A Dppb_var_shared.cc98 void* Map(PP_Var array) { function in namespace:ppapi::__anon10174
103 return buffer->Map();
114 &CreateArrayBufferVar, &ByteLength, &Map, &Unmap};
/external/chromium_org/ppapi/thunk/
H A Dppb_buffer_thunk.cc37 void* Map(PP_Resource resource) { function in namespace:ppapi::thunk::__anon10245
41 return enter.object()->Map();
54 &Map,
H A Dppb_file_mapping_thunk.cc20 int32_t Map(PP_Instance instance, function in namespace:ppapi::thunk::__anon10260
28 VLOG(4) << "PPB_FileMapping::Map()";
32 return enter.SetResult(enter.functions()->Map(instance,
65 &Map,
H A Dppb_image_data_thunk.cc62 void* Map(PP_Resource image_data) { function in namespace:ppapi::thunk::__anon10284
63 VLOG(4) << "PPB_ImageData::Map()";
67 return enter.object()->Map();
84 &Map,
/external/chromium_org/storage/browser/fileapi/
H A Dplugin_private_file_system_backend.cc35 Map::iterator found = map_.find(url.filesystem_id());
57 typedef std::map<std::string, std::string> Map; typedef in class:storage::PluginPrivateFileSystemBackend::FileSystemIDToPluginMap
59 Map map_;
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_system.cpp41 void* FileDescriptor::Map(void* address, function in class:crazy::FileDescriptor
H A Dcrazy_linker_system_mock.cpp226 void* Map(void* address, size_t length, int prot, int flags, off_t offset) { function in class:__anon11495::MockFileHandle
341 void* FileDescriptor::Map(void* address, function in class:crazy::FileDescriptor
351 return handle->Map(address, length, prot, flags, offset);
/external/chromium_org/extensions/common/permissions/
H A Dbase_set_operators.h31 typedef std::map<ElementIDType, linked_ptr<ElementType> > Map; typedef in class:extensions::BaseSetOperators
36 const_iterator(const typename Map::const_iterator& it) : it_(it) {}
66 typename Map::const_iterator it_;
270 const Map& map() const {
274 Map& map() {
283 Map map_;
/external/chromium_org/mojo/android/system/
H A Dcore_impl.cc309 static jobject Map(JNIEnv* env, function in namespace:mojo::android
/external/chromium_org/mojo/embedder/
H A Dsimple_platform_shared_buffer.cc51 scoped_ptr<PlatformSharedBufferMapping> SimplePlatformSharedBuffer::Map( function in class:mojo::embedder::SimplePlatformSharedBuffer
/external/chromium_org/mojo/public/python/mojo/
H A Dsystem.pyx569 def Map(self, offset, num_bytes, flags=MAP_BUFFER_FLAG_NONE): member in class:Handle
/external/chromium_org/content/renderer/pepper/
H A Dhost_array_buffer_var.cc36 valid_ = s.Map(size_in_bytes);
45 void* HostArrayBufferVar::Map() { function in class:content::HostArrayBufferVar
68 shm->Map(ByteLength());
69 memcpy(shm->memory(), Map(), ByteLength());
H A Dppb_buffer_impl.cc67 void* PPB_Buffer_Impl::Map() { function in class:content::PPB_Buffer_Impl
71 shared_memory_->Map(size_);
93 data_ = api->Map();
H A Dppb_image_data_impl.cc116 void* PPB_ImageData_Impl::Map() { return backend_->Map(); } function in class:content::PPB_ImageData_Impl
203 void* ImageDataPlatformBackend::Map() { function in class:content::ImageDataPlatformBackend
274 void* ImageDataSimpleBackend::Map() { function in class:content::ImageDataSimpleBackend
277 shared_memory_->Map(skia_bitmap_.getSize());
/external/chromium_org/components/invalidation/
H A Dsync_invalidation_listener_unittest.cc143 Map::const_iterator it = invalidations_.find(id);
152 Map::const_iterator it = invalidations_.find(id);
162 Map::const_iterator it = invalidations_.find(id);
172 Map::const_iterator it = invalidations_.find(id);
182 Map::const_iterator it = invalidations_.find(id);
242 typedef std::map<ObjectId, List, ObjectIdLessThan> Map; typedef in class:syncer::__anon6556::FakeDelegate
245 Map invalidations_;
/external/chromium_org/components/policy/core/browser/
H A Dconfiguration_policy_handler.cc216 scoped_ptr<base::Value> mapped_value = Map(entry_value);
232 scoped_ptr<base::Value> StringMappingListPolicyHandler::Map( function in class:policy::StringMappingListPolicyHandler

Completed in 430 milliseconds

1234567