Lines Matching refs:got

23819     /* We got the time */
36337 int got, n;
36356 got = sqlite3KvvfsMethods.xRead(pFile->zClass, zKey, aData, sizeof(aData)-1);
36357 if( got<0 ){
36360 aData[got] = 0;
39143 /* got it, set the type and return ok */
39265 /* got the lock, unlock it */
39349 /* got it, set the type and return ok */
39522 /* got it, set the type and return ok */
40118 int got;
40128 got = osPread(id->h, pBuf, cnt, offset);
40129 SimulateIOError( got = -1 );
40131 got = osPread64(id->h, pBuf, cnt, offset);
40132 SimulateIOError( got = -1 );
40140 got = osRead(id->h, pBuf, cnt);
40142 if( got==cnt ) break;
40143 if( got<0 ){
40144 if( errno==EINTR ){ got = 1; continue; }
40148 }else if( got>0 ){
40149 cnt -= got;
40150 offset += got;
40151 prior += got;
40152 pBuf = (void*)(got + (char*)pBuf);
40154 }while( got>0 );
40157 id->h, got+prior, offset-prior, TIMER_ELAPSED));
40158 return got+prior;
40173 int got;
40204 got = seekAndRead(pFile, offset, pBuf, amt);
40205 if( got==amt ){
40207 }else if( got<0 ){
40225 sqlite3_log(SQLITE_IOERR_CORRUPTFS, "unixRead-EDEVERR, fd:[%d], amt[%d], got[%d], offset[%lld]", pFile->h, amt, got, offset);
40230 sqlite3_log(SQLITE_IOERR_READ, "unixRead-got<0, fd: [%d], amt[%d], got[%d], offset[%lld]", pFile->h, amt, got, offset);
40236 memset(&((char*)pBuf)[got], 0, amt-got);
41933 OSTRACE(("SHM-LOCK shmid-%d, pid-%d got %03x,%03x\n",
43599 int fd, got;
43609 do{ got = osRead(fd, zBuf, nBuf); }while( got<0 && errno==EINTR );
48445 OSTRACE(("LOCK-FAIL file=%p, wanted=%d, got=%d\n",
78884 "Bad ptr map entry key=%d expected=(%d,%d) got=(%d,%d)",
120688 ** in order to be certain that we got the right one.
145057 sqlite3ErrorMsg(pParse, "expected %d columns for '%s' but got %d",
228310 pParse, "expected integer, got \"%.*s\"", p->n, p->p