Searched refs:npObjectID (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10.1/WebKit2-7600.1.25/Shared/Plugins/
H A DNPRemoteObjectMap.cpp79 uint64_t npObjectID = generateNPObjectID(); local
80 m_registeredNPObjects.set(npObjectID, std::make_unique<NPObjectMessageReceiver>(this, plugin, npObjectID, npObject).release());
82 return npObjectID;
85 void NPRemoteObjectMap::unregisterNPObject(uint64_t npObjectID) argument
87 m_registeredNPObjects.remove(npObjectID);
99 return npObjectProxy->npObjectID();
126 if (uint64_t npObjectID = remoteNPObjectID(plugin, npObject)) {
130 return NPVariantData::makeRemoteNPObjectID(npObjectID);
133 uint64_t npObjectID local
169 uint64_t npObjectID = npVariantData.localNPObjectIDValue(); local
[all...]
H A DNPObjectProxy.h43 static NPObjectProxy* create(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID);
54 uint64_t npObjectID() const { return m_npObjectID; } function in class:WebKit::NPObjectProxy
62 void initialize(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID);
H A DNPObjectMessageReceiver.h46 NPObjectMessageReceiver(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID, NPObject*);
H A DNPObjectProxy.cpp43 NPObjectProxy* NPObjectProxy::create(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID) argument
46 npObjectProxy->initialize(npRemoteObjectMap, plugin, npObjectID);
83 void NPObjectProxy::initialize(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID) argument
91 ASSERT(npObjectID);
95 m_npObjectID = npObjectID;
H A DNPObjectMessageReceiver.cpp38 NPObjectMessageReceiver::NPObjectMessageReceiver(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID, NPObject* npObject) argument
41 , m_npObjectID(npObjectID)

Completed in 180 milliseconds