Home | History | Annotate | Download | only in Plugins

Lines Matching full:get

445                     // Get list of dirty rects from the opaque ancestor -- WebKit does some tricks with invalidation and
521 // Get list of dirty rects from the opaque ancestor -- WebKit does some tricks with invalidation and
616 ASSERT([_pluginPackage.get() pluginFuncs]->event);
664 acceptedEvent = [_pluginPackage.get() pluginFuncs]->event(plugin, event);
767 // Set cursor back to arrow cursor. Because NSCursor doesn't know about changes that the plugin made, we could get confused about what we think the
843 if ([_pluginPackage.get() pluginFuncs]->setvalue)
844 [_pluginPackage.get() pluginFuncs]->setvalue(plugin, NPNVprivateModeBool, &value);
984 npErr = [_pluginPackage.get() pluginFuncs]->setwindow(plugin, &window);
1033 [_pluginPackage.get() open];
1045 [_pluginPackage.get() close];
1070 LOG(Plugins, "Plugin can't use use Cocoa event model with QuickDraw drawing model: %@", _pluginPackage.get());
1072 [_pluginPackage.get() close];
1081 if ([_pluginPackage.get() pluginFuncs]->getvalue(plugin, NPPVpluginCoreAnimationLayer, &value) == NPERR_NO_ERROR && value) {
1094 LOG(Plugins, "%@ is using Core Animation drawing model with layer %@", _pluginPackage.get(), _pluginLayer.get());
1111 return _pluginLayer.get();
1119 _pluginLayer.get().frame = [newLayer frame];
1120 _pluginLayer.get().autoresizingMask = kCALayerWidthSizable | kCALayerHeightSizable;
1121 [newLayer addSublayer:_pluginLayer.get()];
1138 if (_sourceURL && ![_sourceURL.get() _web_isEmpty]) {
1139 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:_sourceURL.get()];
1169 [[_pendingFrameLoads.get() allKeys] makeObjectsPerformSelector:@selector(_setInternalLoadDelegate:) withObject:nil];
1180 [_pluginPackage.get() close];
1204 if ([_MIMEType.get() isEqualToString:@"application/x-java-applet"]) {
1208 cValues[0] = strdup([_baseURL.get() _web_URLCString]);
1215 BOOL isWMP = [[[_pluginPackage.get() bundle] bundleIdentifier] isEqualToString:@"com.microsoft.WMP.defaultplugin"];
1425 if (![_pluginPackage.get() pluginFuncs]->getvalue || !_isStarted)
1433 error = [_pluginPackage.get() pluginFuncs]->getvalue(plugin, NPPVpluginScriptableNPObject, &value);
1489 pluginName:nil // FIXME: Get this from somewhere
1564 [_pluginPackage.get() pluginFuncs]->urlnotify(plugin, [URL _web_URLCString], NPRES_DONE, [JSPluginRequest notifyData]);
1579 stream->startStreamWithResponse(response.get());
1589 WebPluginRequest *pluginRequest = [_pendingFrameLoads.get() objectForKey:webFrame];
1596 [_pluginPackage.get() pluginFuncs]->urlnotify(plugin, [[[pluginRequest request] URL] _web_URLCString], reason, [pluginRequest notifyData]);
1600 [_pendingFrameLoads.get() removeObjectForKey:webFrame];
1624 // FIXME - need to get rid of this window creation which
1640 [_pluginPackage.get() pluginFuncs]->urlnotify(plugin, [[[pluginRequest request] URL] _web_URLCString], NPERR_GENERIC_ERROR, [pluginRequest notifyData]);
1666 [_pendingFrameLoads.get() _webkit_setObject:pluginRequest forUncopiedKey:frame];
1735 streams.add(stream.get());
1895 NSString *userAgent = [[self webView] userAgentForURL:_baseURL.get()];
2105 LOG(Plugins, "Plugin %@ uses unsupported drawing model: %d", _eventHandler.get(), drawingModel);
2129 LOG(Plugins, "Plugin %@ uses unsupported event model: %d", _eventHandler.get(), eventModel);
2305 if ([_pluginPackage.get() pluginFuncs]->getvalue &&
2306 [_pluginPackage.get() pluginFuncs]->getvalue(plugin, NPPVpluginCancelSrcStream, &cancelSrcStream) == NPERR_NO_ERROR && cancelSrcStream)
2322 NPPluginFuncs *pluginFuncs = [_pluginPackage.get() pluginFuncs];
2350 ASSERT([_pluginPackage.get() pluginFuncs]->newp);
2357 _isFlash = [[[_pluginPackage.get() bundle] bundleIdentifier] isEqualToString:@"com.macromedia.Flash Player.plugin"];
2358 _isSilverlight = [[[_pluginPackage.get() bundle] bundleIdentifier] isEqualToString:@"com.microsoft.SilverlightPlugin"];
2361 NPError npErr = [_pluginPackage.get() pluginFuncs]->newp((char *)[_MIMEType.get() cString], plugin, _mode, argsCount, cAttributes, cValues, NULL);
2377 npErr = ![_pluginPackage.get() pluginFuncs]->destroy(plugin, NULL);
2393 if (![_pluginPackage.get() pluginFuncs]->print)
2450 [_pluginPackage.get() pluginFuncs]->print(plugin, &npPrint);
2471 [self pluginView:self receivedError:_error.get()];