415416417418419420421422423424425
try { autoStartTransaction(); return addStatement(subj, pred, obj, false, contexts); } finally { txnLock.release(); } } finally { conLock.release(); }
497498499500501502503504505506507
autoStartTransaction(); int removeCount = removeStatements(subj, pred, obj, false, contexts); return removeCount > 0; } finally { txnLock.release(); } } finally { conLock.release(); }
610611612613614615616617618619620
try { autoStartTransaction(); removeStatements(null, null, null, false, contexts); } finally { txnLock.release(); } } finally { conLock.release(); }
221222223224225226227228229230231
} catch (IOException e) { throw new SailException(e); } finally { writeLock.release(); } } finally { txnLock.release(); }
365366367368369370371372373374375
initBNodeParams(); setNewRevision(); } finally { writeLock.release(); } } catch (InterruptedException e) { IOException ioe = new IOException("Failed to acquire write lock"); ioe.initCause(e);
284285286287288289290291292293294
try { autoStartTransaction(); addStatement(subj, pred, obj, false, contexts); } finally { txnLock.release(); } } finally { conLock.release(); }
304305306307308309310311312313314
329330331332333334335336337338339