Lines Matching defs:pChanged
65679 ** and *pChanged is set to 1.
65684 static SQLITE_NO_TSAN int walIndexTryHdr(Wal *pWal, int *pChanged){
65725 *pChanged = 1;
65747 ** Set *pChanged to 1 if the wal-index header value in pWal->hdr is
65748 ** changed by this operation. If pWal->hdr is unchanged, set *pChanged
65754 static int walIndexReadHdr(Wal *pWal, int *pChanged){
65762 assert( pChanged );
65778 *pChanged = 1;
65794 badHdr = (page0 ? walIndexTryHdr(pWal, pChanged) : 1);
65810 badHdr = walIndexTryHdr(pWal, pChanged);
65817 *pChanged = 1;
65869 ** been successfully opened. In this case output variable (*pChanged)
65878 static int walBeginShmUnreliable(Wal *pWal, int *pChanged){
65952 *pChanged = 1;
66020 *pChanged = 1;
66038 ** wal-index header has changed, *pChanged is set to 1 (as an indication
66041 ** be loaded and the pChanged parameter is unused.
66076 static int walTryBeginRead(Wal *pWal, int *pChanged, int useWal, int cnt){
66122 rc = walIndexReadHdr(pWal, pChanged);
66153 return walBeginShmUnreliable(pWal, pChanged);
66376 ** transaction, then *pChanged is set to 1 before returning. The
66380 SQLITE_PRIVATE int sqlite3WalBeginReadTransaction(Wal *pWal, int *pChanged){
66416 rc = walTryBeginRead(pWal, pChanged, 0, ++cnt);
66448 ** with *pSnapshot and set *pChanged as appropriate for opening the
66455 *pChanged = bChanged;