Lines Matching refs:t

63     SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");  in length()  local
71 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in length()
72 out = t.pEnv->CallLongMethod( object, mID ); in length()
73 ThrowSQLException(t.pEnv,*this); in length()
80 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getBytes() local
88 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in getBytes()
89 jbyteArray out = (jbyteArray)t.pEnv->CallObjectMethod( object, mID,pos,count); in getBytes()
90 ThrowSQLException(t.pEnv,*this); in getBytes()
94 aSeq.realloc(t.pEnv->GetArrayLength(out)); in getBytes()
95 memcpy(aSeq.getArray(),t.pEnv->GetByteArrayElements(out,&p),aSeq.getLength()); in getBytes()
96 t.pEnv->DeleteLocalRef(out); in getBytes()
105 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getBinaryStream() local
107 jobject out = callObjectMethod(t.pEnv,"getBinaryStream","()Ljava/io/InputStream;", mID); in getBinaryStream()
109 return out==0 ? 0 : new java_io_InputStream( t.pEnv, out ); in getBinaryStream()
115 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in position() local
123 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in position()
125 jbyteArray pByteArray = t.pEnv->NewByteArray(pattern.getLength()); in position()
126 t.pEnv->SetByteArrayRegion(pByteArray,0,pattern.getLength(),(jbyte*)pattern.getConstArray()); in position()
127 out = t.pEnv->CallLongMethod( object, mID, pByteArray,start ); in position()
128 t.pEnv->DeleteLocalRef(pByteArray); in position()
129 ThrowSQLException(t.pEnv,*this); in position()