Home | History | Annotate | Download | only in Hosted

Lines Matching refs:resultData

475 kern_return_t WKPCBooleanAndDataReply(mach_port_t clientPort, uint32_t pluginID, uint32_t requestID, boolean_t returnValue, data_t resultData, mach_msg_type_number_t resultLength)
477 DataDeallocator deallocator(resultData, resultLength);
487 resultData), resultLength));
572 data_t resultData = 0;
574 boolean_t returnValue = instanceProxy->evaluate(objectID, script, resultData, resultLength, allowPopups);
580 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
581 if (resultData)
582 mig_deallocate(reinterpret_cast<vm_address_t>(resultData), resultLength);
635 data_t resultData = 0;
637 boolean_t returnValue = instanceProxy->invoke(objectID, methodNameIdentifier, argumentsData, argumentsLength, resultData, resultLength);
643 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
644 if (resultData)
645 mig_deallocate(reinterpret_cast<vm_address_t>(resultData), resultLength);
665 data_t resultData = 0;
667 boolean_t returnValue = instanceProxy->invokeDefault(objectID, argumentsData, argumentsLength, resultData, resultLength);
673 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
674 if (resultData)
675 mig_deallocate(reinterpret_cast<vm_address_t>(resultData), resultLength);
682 boolean_t* returnValue, data_t* resultData, mach_msg_type_number_t* resultLength)
696 *returnValue = instanceProxy->construct(objectID, argumentsData, argumentsLength, *resultData, *resultLength);
717 data_t resultData = 0;
723 returnValue = instanceProxy->getProperty(objectID, propertyNameIdentifier, resultData, resultLength);
725 returnValue = instanceProxy->setProperty(objectID, identifier->number(), resultData, resultLength);
731 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
732 if (resultData)
733 mig_deallocate(reinterpret_cast<vm_address_t>(resultData), resultLength);
898 data_t resultData = 0;
900 boolean_t returnValue = instanceProxy->enumerate(objectID, resultData, resultLength);
906 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
908 if (resultData)
909 mig_deallocate(reinterpret_cast<vm_address_t>(resultData), resultLength);