Searched refs:logc (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/bsddb/test/ |
D | test_dbenv.py | 301 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/ |
D | aetypes.py | 221 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/ |
D | aetypes.rst | 122 .. class:: Logical(logc, term) 124 The logical expression of applying operator ``logc`` to ``term``.
|
/external/python/cpython2/Modules/ |
D | bsddb.h | 209 DB_LOGC* logc; member
|
D | _bsddb.c | 349 _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()
|