Lines Matching defs:objectID

109     bool getWindowNPObject(uint32_t& objectID);
110 bool getPluginElementNPObject(uint32_t& objectID);
111 bool forgetBrowserObjectID(uint32_t objectID); // Will fail if the ID is being sent to plug-in right now (i.e., retain/release calls aren't balanced).
113 bool evaluate(uint32_t objectID, const WTF::String& script, data_t& resultData, mach_msg_type_number_t& resultLength, bool allowPopups);
114 bool invoke(uint32_t objectID, const JSC::Identifier& methodName, data_t argumentsData, mach_msg_type_number_t argumentsLength, data_t& resultData, mach_msg_type_number_t& resultLength);
115 bool invokeDefault(uint32_t objectID, data_t argumentsData, mach_msg_type_number_t argumentsLength, data_t& resultData, mach_msg_type_number_t& resultLength);
116 bool construct(uint32_t objectID, data_t argumentsData, mach_msg_type_number_t argumentsLength, data_t& resultData, mach_msg_type_number_t& resultLength);
117 bool enumerate(uint32_t objectID, data_t& resultData, mach_msg_type_number_t& resultLength);
119 bool getProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t &resultData, mach_msg_type_number_t& resultLength);
120 bool getProperty(uint32_t objectID, unsigned propertyName, data_t &resultData, mach_msg_type_number_t& resultLength);
121 bool setProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t valueData, mach_msg_type_number_t valueLength);
122 bool setProperty(uint32_t objectID, unsigned propertyName, data_t valueData, mach_msg_type_number_t valueLength);
123 bool removeProperty(uint32_t objectID, const JSC::Identifier& propertyName);
124 bool removeProperty(uint32_t objectID, unsigned propertyName);
125 bool hasProperty(uint32_t objectID, const JSC::Identifier& propertyName);
126 bool hasProperty(uint32_t objectID, unsigned propertyName);
127 bool hasMethod(uint32_t objectID, const JSC::Identifier& methodName);
212 GetScriptableNPObjectReply(uint32_t objectID)
214 , m_objectID(objectID)