Lines Matching refs:instance
223 NPP instance = this->inst();
225 //LOG_ERROR(instance, " ------ %p Testing Log Error", instance);
226 gLogI.log(kError_ANPLogType, " ------ %p Testing Log Error", instance);
227 gLogI.log(kWarning_ANPLogType, " ------ %p Testing Log Warning", instance);
228 gLogI.log(kDebug_ANPLogType, " ------ %p Testing Log Debug", instance);
236 static void timer_oneshot(NPP instance, uint32_t timerID);
237 static void timer_repeat(NPP instance, uint32_t timerID);
238 static void timer_neverfires(NPP instance, uint32_t timerID);
239 static void timer_latency(NPP instance, uint32_t timerID);
242 NPP instance = this->inst();
249 browser->unscheduletimer(instance, 999999);
251 browser->scheduletimer(instance, 100, false, timer_oneshot);
253 browser->scheduletimer(instance, 50, true, timer_repeat);
255 browser->scheduletimer(instance, TIMER_INTERVAL, true, timer_latency);
258 uint32_t id = browser->scheduletimer(instance, 100, false, timer_neverfires);
259 browser->unscheduletimer(instance, id);
261 browser->unscheduletimer(instance, id);
265 static void timer_oneshot(NPP instance, uint32_t timerID) {
269 static void timer_repeat(NPP instance, uint32_t timerID) {
270 BackgroundPlugin *obj = ((BackgroundPlugin*) ((PluginObject*) instance->pdata)->activePlugin);
275 browser->unscheduletimer(instance, timerID);
279 static void timer_neverfires(NPP instance, uint32_t timerID) {
283 static void timer_latency(NPP instance, uint32_t timerID) {
284 BackgroundPlugin *obj = ((BackgroundPlugin*) ((PluginObject*) instance->pdata)->activePlugin);
303 browser->unscheduletimer(instance, timerID);
311 static void test_formats(NPP instance);
317 static void test_formats(NPP instance) {
348 NPP instance = this->inst();
362 NPError err = browser->setvalue(instance, NPPVpluginTransparentBool, &value);
368 browser->invalidaterect(instance, NULL);
379 NPError err = browser->setvalue(instance, NPPVpluginTransparentBool, NULL);
405 NPP instance = this->inst();
407 gLogI.log(kDebug_ANPLogType, " ------ %p Testing DOM Access", instance);
411 browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
414 gLogI.log(kError_ANPLogType, " ------ %p Unable to retrieve DOM Window", instance);
419 browser->getproperty(instance, windowObject, topIdentifier, &topObjectVariant);
422 gLogI.log(kError_ANPLogType, " ------ %p Invalid Variant type for DOM Property: %d,%d", instance, topObjectVariant.type, NPVariantType_Object);
432 NPP instance = this->inst();
434 gLogI.log(kDebug_ANPLogType, " ------ %p Testing JavaScript Access", instance);
438 browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
441 gLogI.log(kError_ANPLogType, " ------ %p Unable to retrieve DOM Window", instance);
451 if (!browser->evaluate(instance, windowObject, &script, &scriptVariant))
452 gLogI.log(kError_ANPLogType, " ------ %p Unable to eval the JS.", instance);
456 gLogI.log(kError_ANPLogType, " ------ %p Invalid Value for JS Return: %d,1234", instance, scriptVariant.value.intValue);
458 gLogI.log(kError_ANPLogType, " ------ %p Invalid Variant type for JS Return: %d,%d", instance, scriptVariant.type, NPVariantType_Int32);