• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/crypto/heimdal/lib/sqlite/

Lines Matching defs:magic

617 ** These macros used to resolve to various kinds of compiler magic that
619 ** compiler magic ended up generating such a flurry of bug reports
9466 u32 magic; /* Magic number for detect library misuse */
9609 ** Possible values for the sqlite.magic field.
12832 u32 magic; /* Magic number for sanity checking */
12876 ** The following are allowed values for Vdbe.magic
17870 ** processing, the "interlocked" magic is probably not
21667 u32 magic;
21672 magic = db->magic;
21673 if( magic!=SQLITE_MAGIC_OPEN ){
21684 u32 magic;
21685 magic = db->magic;
21686 if( magic!=SQLITE_MAGIC_SICK &&
21687 magic!=SQLITE_MAGIC_OPEN &&
21688 magic!=SQLITE_MAGIC_BUSY ){
31717 u32 magic; /* Magic number to detect structure corruption. */
31735 #define winMemAssertMagic() assert( win_mem_data.magic==WINMEM_MAGIC )
31914 assert( pWinMemData->magic==WINMEM_MAGIC );
38245 ** Journal files begin with the following magic string. The data
38745 unsigned char aMagic[8]; /* A buffer to hold the magic header */
39000 unsigned char aMagic[8]; /* A buffer to hold the magic header */
39016 ** the magic string found at the start of each journal header, return
39166 ** and 8 bytes of magic data just written to the file. This is
44441 ** magic number in the first 4 bytes of the WAL is 0x377f0683 and it
44442 ** is computed using little-endian if the magic number is 0x377f0682.
44755 /* WAL magic value. Either this value, or the same value with the least
45463 u32 magic; /* Magic value read from WAL header */
45474 ** data. Similarly, if the 'magic' value is invalid, ignore the whole
45477 magic = sqlite3Get4byte(&aBuf[0]);
45479 if( (magic&0xFFFFFFFE)!=WAL_MAGIC
45486 pWal->hdr.bigEndCksum = (u8)(magic&0x00000001);
47577 ** This is a magic string that appears at the beginning of every
50115 /* If the magic name ":memory:" will create an in-memory database, then
58351 p->magic = VDBE_MAGIC_INIT;
58448 assert( p->magic==VDBE_MAGIC_INIT );
58549 assert( p->magic==VDBE_MAGIC_INIT );
58569 assert( p->magic==VDBE_MAGIC_INIT );
58764 assert( p->magic==VDBE_MAGIC_INIT );
58798 assert( p->magic==VDBE_MAGIC_INIT );
59020 assert( p->magic==VDBE_MAGIC_INIT );
59143 assert( p->magic==VDBE_MAGIC_INIT );
59453 assert( p->magic==VDBE_MAGIC_RUN );
59718 assert( p->magic==VDBE_MAGIC_INIT );
59724 /* Set the magic to VDBE_MAGIC_RUN sooner rather than later. */
59725 p->magic = VDBE_MAGIC_RUN;
59735 p->magic = VDBE_MAGIC_RUN;
59784 assert( p->magic==VDBE_MAGIC_INIT );
60272 if( p->magic==VDBE_MAGIC_RUN && p->pc>=0 ){
60435 if( p->magic!=VDBE_MAGIC_RUN ){
60590 p->magic = VDBE_MAGIC_HALT;
60696 p->magic = VDBE_MAGIC_INIT;
60706 if( p->magic==VDBE_MAGIC_RUN || p->magic==VDBE_MAGIC_HALT ){
60776 p->magic = VDBE_MAGIC_DEAD;
61890 if( p->magic!=VDBE_MAGIC_RUN ){
62538 if( p->magic!=VDBE_MAGIC_RUN || p->pc>=0 ){
64095 assert( p->magic==VDBE_MAGIC_RUN ); /* sqlite3_step() verifies this */
68278 if( u.bu.pVdbe->magic==VDBE_MAGIC_RUN && u.bu.pVdbe->inVtabMethod<2 && u.bu.pVdbe->pc>=0 ){
69694 ** The magic Explain opcode are only inserted when explain==2 (which
79977 /* If this is the magic sqlite_sequence table used by autoincrement,
91831 /* Black magic: If the SQLITE_RecoveryMode flag is set, then consider
110942 db->magic = SQLITE_MAGIC_ERROR;
110952 db->magic = SQLITE_MAGIC_CLOSED;
112270 db->magic = SQLITE_MAGIC_BUSY;
112351 db->magic = SQLITE_MAGIC_OPEN;
112433 db->magic = SQLITE_MAGIC_SICK;
127318 u32 magic; /* Always RTREE_GEOMETRY_MAGIC */
128243 if( p->magic!=RTREE_GEOMETRY_MAGIC
130263 pBlob->magic = RTREE_GEOMETRY_MAGIC;