Lines Matching refs:_inout_MethodID

228 …d(JNIEnv* _pEnv,const char* _pMethodName, const char* _pSignature,jmethodID& _inout_MethodID) const  in obtainMethodId()
230 if ( !_inout_MethodID ) in obtainMethodId()
232 _inout_MethodID = _pEnv->GetMethodID( getMyClass(), _pMethodName, _pSignature ); in obtainMethodId()
233 OSL_ENSURE( _inout_MethodID, _pSignature ); in obtainMethodId()
234 if ( !_inout_MethodID ) in obtainMethodId()
239 sal_Bool java_lang_Object::callBooleanMethod( const char* _pMethodName, jmethodID& _inout_MethodID in callBooleanMethod()
245 obtainMethodId(t.pEnv, _pMethodName,"()Z", _inout_MethodID); in callBooleanMethod()
247 out = t.pEnv->CallBooleanMethod( object, _inout_MethodID ); in callBooleanMethod()
253 …t::callBooleanMethodWithIntArg( const char* _pMethodName, jmethodID& _inout_MethodID, sal_Int32 _n… in callBooleanMethodWithIntArg() argument
258 obtainMethodId(t.pEnv, _pMethodName,"(I)Z", _inout_MethodID); in callBooleanMethodWithIntArg()
260 out = t.pEnv->CallBooleanMethod( object, _inout_MethodID, _nArgument ); in callBooleanMethodWithIntArg()
266 …ct::callResultSetMethod( JNIEnv& _rEnv,const char* _pMethodName, jmethodID& _inout_MethodID ) const in callResultSetMethod()
269 jobject out = callObjectMethod(&_rEnv,_pMethodName,"()Ljava/sql/ResultSet;", _inout_MethodID); in callResultSetMethod()
273 sal_Int32 java_lang_Object::callIntMethod( const char* _pMethodName, jmethodID& _inout_MethodID,boo… in callIntMethod() argument
277 obtainMethodId(t.pEnv, _pMethodName,"()I", _inout_MethodID); in callIntMethod()
280 jint out( t.pEnv->CallIntMethod( object, _inout_MethodID ) ); in callIntMethod()
289 …bject::callIntMethodWithIntArg( const char* _pMethodName, jmethodID& _inout_MethodID,sal_Int32 _nA… in callIntMethodWithIntArg() argument
293 obtainMethodId(t.pEnv, _pMethodName,"(I)I", _inout_MethodID); in callIntMethodWithIntArg()
295 jint out( t.pEnv->CallIntMethod( object, _inout_MethodID , _nArgument) ); in callIntMethodWithIntArg()
301 void java_lang_Object::callVoidMethod( const char* _pMethodName, jmethodID& _inout_MethodID) const in callVoidMethod()
305 obtainMethodId(t.pEnv, _pMethodName,"()V", _inout_MethodID); in callVoidMethod()
308 t.pEnv->CallVoidMethod( object, _inout_MethodID ); in callVoidMethod()
312 …ject::callVoidMethodWithIntArg( const char* _pMethodName, jmethodID& _inout_MethodID, sal_Int32 _n… in callVoidMethodWithIntArg() argument
316 obtainMethodId(t.pEnv, _pMethodName,"(I)V", _inout_MethodID); in callVoidMethodWithIntArg()
319 t.pEnv->CallVoidMethod( object, _inout_MethodID,_nArgument ); in callVoidMethodWithIntArg()
326 …ect::callVoidMethodWithBoolArg( const char* _pMethodName, jmethodID& _inout_MethodID, sal_Int32 _n… in callVoidMethodWithBoolArg() argument
330 obtainMethodId(t.pEnv, _pMethodName,"(Z)V", _inout_MethodID); in callVoidMethodWithBoolArg()
332 t.pEnv->CallVoidMethod( object, _inout_MethodID,_nArgument ); in callVoidMethodWithBoolArg()
339 …ng java_lang_Object::callStringMethod( const char* _pMethodName, jmethodID& _inout_MethodID ) const in callStringMethod()
345 …tring out = (jstring)callObjectMethod(t.pEnv,_pMethodName,"()Ljava/lang/String;", _inout_MethodID); in callStringMethod()
349 …JNIEnv * _pEnv,const char* _pMethodName,const char* _pSignature, jmethodID& _inout_MethodID ) const in callObjectMethod()
352 obtainMethodId(_pEnv, _pMethodName,_pSignature, _inout_MethodID); in callObjectMethod()
354 jobject out = _pEnv->CallObjectMethod( object, _inout_MethodID); in callObjectMethod()
360 …* _pEnv,const char* _pMethodName,const char* _pSignature, jmethodID& _inout_MethodID , sal_Int32 _… in callObjectMethodWithIntArg() argument
362 obtainMethodId(_pEnv, _pMethodName,_pSignature, _inout_MethodID); in callObjectMethodWithIntArg()
364 jobject out = _pEnv->CallObjectMethod( object, _inout_MethodID,_nArgument ); in callObjectMethodWithIntArg()
369 …ct::callStringMethodWithIntArg( const char* _pMethodName, jmethodID& _inout_MethodID , sal_Int32 _… in callStringMethodWithIntArg() argument
373 …callObjectMethodWithIntArg(t.pEnv,_pMethodName,"(I)Ljava/lang/String;",_inout_MethodID,_nArgument); in callStringMethodWithIntArg()
377 …t::callVoidMethodWithStringArg( const char* _pMethodName, jmethodID& _inout_MethodID,const ::rtl::… in callVoidMethodWithStringArg() argument
381 obtainMethodId(t.pEnv, _pMethodName,"(Ljava/lang/String;)V", _inout_MethodID); in callVoidMethodWithStringArg()
385 t.pEnv->CallVoidMethod( object, _inout_MethodID , str.get()); in callVoidMethodWithStringArg()
389 …ct::callIntMethodWithStringArg( const char* _pMethodName, jmethodID& _inout_MethodID,const ::rtl::… in callIntMethodWithStringArg() argument
393 obtainMethodId(t.pEnv, _pMethodName,"(Ljava/lang/String;)I", _inout_MethodID); in callIntMethodWithStringArg()
406 jint out = t.pEnv->CallIntMethod( object, _inout_MethodID , str.get()); in callIntMethodWithStringArg()