Home
last modified time | relevance | path

Searched refs:logc (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/bsddb/test/
Dtest_dbenv.py301 logc = self.env.log_cursor()
302 self.assertTrue(msg in (logc.last()[1]))
342 logc = self.env.log_cursor()
343 logc.last() # Skip the commit
344 self.assertTrue(msg in (logc.prev()[1]))
350 logc.last() # Skip the abort
351 self.assertTrue(msg not in (logc.prev()[1]))
357 logc.last() # Skip the commit
358 self.assertTrue(msg in (logc.prev()[1]))
439 logc = self.env.log_cursor()
[all …]
/external/python/cpython2/Lib/plat-mac/
Daetypes.py221 def __init__(self, logc, term): argument
222 self.logc = "%-4.4s" % str(logc)
226 return "Logical(%r, %r)" % (self.logc, self.term)
231 string.strip(self.logc),
234 return "%s(%s)" % (string.strip(self.logc), nice(self.term))
237 return pack({'logc': mkenum(self.logc), 'term': self.term}, 'logi')
/external/python/cpython2/Doc/library/
Daetypes.rst122 .. class:: Logical(logc, term)
124 The logical expression of applying operator ``logc`` to ``term``.
/external/python/cpython2/Modules/
Dbsddb.h209 DB_LOGC* logc; member
D_bsddb.c349 _CHECK_OBJECT_NOT_CLOSED(logcurs->logc, DBCursorClosedError, DBLogCursor)
1060 self->logc = dblogc; in newDBLogCursorObject()
1079 if (self->logc != NULL) { in DBLogCursor_dealloc()
3896 if (self->logc != NULL) { in DBLogCursor_close_internal()
3900 err = self->logc->close(self->logc, 0); in DBLogCursor_close_internal()
3902 self->logc = NULL; in DBLogCursor_close_internal()
3932 err = self->logc->get(self->logc, &lsn, &data, flag); in _DBLogCursor_get()