Lines Matching refs:pJNIEnv
1251 JNIEnv * pJNIEnv = aAttachGuard.getEnvironment(); in elementReplaced() local
1255 jclass jcSystem= pJNIEnv->FindClass("java/lang/System"); in elementReplaced()
1256 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1257 …jmethodID jmSetProps= pJNIEnv->GetStaticMethodID( jcSystem, "setProperty","(Ljava/lang/String;Ljav… in elementReplaced()
1258 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1260 … jstring jsPropName= pJNIEnv->NewString( aPropertyName.getStr(), aPropertyName.getLength()); in elementReplaced()
1261 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1279 …jmethodID jmGetProps= pJNIEnv->GetStaticMethodID( jcSystem, "getProperties","()Ljava/util/Properti… in elementReplaced()
1280 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1281 jobject joProperties= pJNIEnv->CallStaticObjectMethod( jcSystem, jmGetProps); in elementReplaced()
1282 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1284 jclass jcProperties= pJNIEnv->FindClass("java/util/Properties"); in elementReplaced()
1285 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1286 …jmethodID jmRemove= pJNIEnv->GetMethodID( jcProperties, "remove", "(Ljava/lang/Object;)Ljava/lang/… in elementReplaced()
1287 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1288 pJNIEnv->CallObjectMethod( joProperties, jmRemove, jsPropName); in elementReplaced()
1294 … jstring jsPropName2= pJNIEnv->NewString( aPropertyName2.getStr(), aPropertyName2.getLength()); in elementReplaced()
1295 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1296 pJNIEnv->CallObjectMethod( joProperties, jmRemove, jsPropName2); in elementReplaced()
1302 … jstring jsPropValue= pJNIEnv->NewString( aPropertyValue.getStr(), aPropertyValue.getLength()); in elementReplaced()
1303 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1304 pJNIEnv->CallStaticObjectMethod( jcSystem, jmSetProps, jsPropName, jsPropValue); in elementReplaced()
1305 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1311 … jstring jsPropName2= pJNIEnv->NewString( aPropertyName2.getStr(), aPropertyName2.getLength()); in elementReplaced()
1312 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1313 … jsPropValue= pJNIEnv->NewString( aPropertyValue.getStr(), aPropertyValue.getLength()); in elementReplaced()
1314 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1315 … pJNIEnv->CallStaticObjectMethod( jcSystem, jmSetProps, jsPropName2, jsPropValue); in elementReplaced()
1316 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1325 …jmethodID jmGetSecur= pJNIEnv->GetStaticMethodID( jcSystem,"getSecurityManager","()Ljava/lang/Secu… in elementReplaced()
1326 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1327 jobject joSecur= pJNIEnv->CallStaticObjectMethod( jcSystem, jmGetSecur); in elementReplaced()
1338 jclass jcSec= pJNIEnv->GetObjectClass( joSecur); in elementReplaced()
1339 jclass jcClass= pJNIEnv->FindClass("java/lang/Class"); in elementReplaced()
1340 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1341 … jmethodID jmName= pJNIEnv->GetMethodID( jcClass,"getName","()Ljava/lang/String;"); in elementReplaced()
1342 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1343 jstring jsClass= (jstring) pJNIEnv->CallObjectMethod( jcSec, jmName); in elementReplaced()
1344 const jchar* jcharName= pJNIEnv->GetStringChars( jsClass, NULL); in elementReplaced()
1351 pJNIEnv->ReleaseStringChars( jsClass, jcharName); in elementReplaced()
1356 jmethodID jmReset= pJNIEnv->GetMethodID( jcSec,"reset","()V"); in elementReplaced()
1357 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1358 pJNIEnv->CallVoidMethod( joSecur, jmReset); in elementReplaced()
1359 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in elementReplaced()
1508 JNIEnv * pJNIEnv = aAttachGuard.getEnvironment(); in setINetSettingsInVM() local
1519 … jstring jsFtpProxyHost= pJNIEnv->NewString( sFtpProxyHost.getStr(), sFtpProxyHost.getLength()); in setINetSettingsInVM()
1520 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1521 … jstring jsFtpProxyPort= pJNIEnv->NewString( sFtpProxyPort.getStr(), sFtpProxyPort.getLength()); in setINetSettingsInVM()
1522 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1523 …jstring jsFtpNonProxyHosts= pJNIEnv->NewString( sFtpNonProxyHosts.getStr(), sFtpNonProxyHosts.getL… in setINetSettingsInVM()
1524 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1525 … jstring jsHttpProxyHost= pJNIEnv->NewString( sHttpProxyHost.getStr(), sHttpProxyHost.getLength()); in setINetSettingsInVM()
1526 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1527 … jstring jsHttpProxyPort= pJNIEnv->NewString( sHttpProxyPort.getStr(), sHttpProxyPort.getLength()); in setINetSettingsInVM()
1528 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1529 …jstring jsHttpNonProxyHosts= pJNIEnv->NewString( sHttpNonProxyHosts.getStr(), sHttpNonProxyHosts.g… in setINetSettingsInVM()
1530 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1533 jclass jcSystem= pJNIEnv->FindClass("java/lang/System"); in setINetSettingsInVM()
1534 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1535 …jmethodID jmSetProps= pJNIEnv->GetStaticMethodID( jcSystem, "setProperty","(Ljava/lang/String;Ljav… in setINetSettingsInVM()
1536 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1539 …jmethodID jmGetProps= pJNIEnv->GetStaticMethodID( jcSystem, "getProperties","()Ljava/util/Properti… in setINetSettingsInVM()
1540 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1541 jobject joProperties= pJNIEnv->CallStaticObjectMethod( jcSystem, jmGetProps); in setINetSettingsInVM()
1542 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1544 jclass jcProperties= pJNIEnv->FindClass("java/util/Properties"); in setINetSettingsInVM()
1545 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1564 … jstring jsVal= pJNIEnv->NewString( propValue.getStr(), propValue.getLength()); in setINetSettingsInVM()
1565 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1566 … pJNIEnv->CallStaticObjectMethod( jcSystem, jmSetProps, jsFtpProxyHost, jsVal); in setINetSettingsInVM()
1567 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1571 … jstring jsVal= pJNIEnv->NewString( propValue.getStr(), propValue.getLength()); in setINetSettingsInVM()
1572 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1573 … pJNIEnv->CallStaticObjectMethod( jcSystem, jmSetProps, jsFtpProxyPort, jsVal); in setINetSettingsInVM()
1574 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1578 … jstring jsVal= pJNIEnv->NewString( propValue.getStr(), propValue.getLength()); in setINetSettingsInVM()
1579 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1580 … pJNIEnv->CallStaticObjectMethod( jcSystem, jmSetProps, jsFtpNonProxyHosts, jsVal); in setINetSettingsInVM()
1581 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1585 … jstring jsVal= pJNIEnv->NewString( propValue.getStr(), propValue.getLength()); in setINetSettingsInVM()
1586 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1587 … pJNIEnv->CallStaticObjectMethod( jcSystem, jmSetProps, jsHttpProxyHost, jsVal); in setINetSettingsInVM()
1588 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1592 … jstring jsVal= pJNIEnv->NewString( propValue.getStr(), propValue.getLength()); in setINetSettingsInVM()
1593 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1594 … pJNIEnv->CallStaticObjectMethod( jcSystem, jmSetProps, jsHttpProxyPort, jsVal); in setINetSettingsInVM()
1595 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1599 … jstring jsVal= pJNIEnv->NewString( propValue.getStr(), propValue.getLength()); in setINetSettingsInVM()
1600 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1601 … pJNIEnv->CallStaticObjectMethod( jcSystem, jmSetProps, jsHttpNonProxyHosts, jsVal); in setINetSettingsInVM()
1602 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1609 …jmethodID jmRemove= pJNIEnv->GetMethodID( jcProperties, "remove", "(Ljava/lang/Object;)Ljava/lang/… in setINetSettingsInVM()
1610 …if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException(rtl::OUString(RTL_CONSTASCII_UST… in setINetSettingsInVM()
1611 pJNIEnv->CallObjectMethod( joProperties, jmRemove, jsFtpProxyHost); in setINetSettingsInVM()
1612 pJNIEnv->CallObjectMethod( joProperties, jmRemove, jsFtpProxyPort); in setINetSettingsInVM()
1613 pJNIEnv->CallObjectMethod( joProperties, jmRemove, jsFtpNonProxyHosts); in setINetSettingsInVM()
1614 pJNIEnv->CallObjectMethod( joProperties, jmRemove, jsHttpProxyHost); in setINetSettingsInVM()
1615 pJNIEnv->CallObjectMethod( joProperties, jmRemove, jsHttpProxyPort); in setINetSettingsInVM()
1616 pJNIEnv->CallObjectMethod( joProperties, jmRemove, jsHttpNonProxyHosts); in setINetSettingsInVM()