Lines Matching refs:xDriver
119 Reference< XDriver > xDriver; in getConnectionWithInfo() local
122 if(isPoolingEnabledByUrl(_rURL,xDriver,sImplName,xDriverNode) && xDriver.is()) in getConnectionWithInfo()
124 OConnectionPool* pConnectionPool = getConnectionPool(sImplName,xDriver,xDriverNode); in getConnectionWithInfo()
129 else if(xDriver.is()) in getConnectionWithInfo()
130 xConnection = xDriver->connect(_rURL,_rInfo); in getConnectionWithInfo()
196 Reference< XDriver > xDriver; in getDriverByURL() local
199 if(isPoolingEnabledByUrl(_rURL,xDriver,sImplName,xDriverNode)) in getDriverByURL()
211 if (xExistentProxy.is() && (aLookup->first.get() == xDriver.get())) in getDriverByURL()
217 xDriver = xExistentProxy; in getDriverByURL()
224 Reference< XAggregation > xDriverProxy = m_xProxyFactory->createProxy(xDriver.get()); in getDriverByURL()
227 OConnectionPool* pConnectionPool = getConnectionPool(sImplName,xDriver,xDriverNode); in getDriverByURL()
228 xDriver = new ODriverWrapper(xDriverProxy, pConnectionPool); in getDriverByURL()
235 return xDriver; in getDriverByURL()