Home
last modified time | relevance | path

Searched refs:pPath (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A Dos_unix.c6462 if( pPath->nUsed<=1 ){ in appendOnePathElement()
6467 while( pPath->zOut[--pPath->nUsed]!='/' ){} in appendOnePathElement()
6471 if( pPath->nUsed + nName + 2 >= pPath->nOut ){ in appendOnePathElement()
6472 pPath->rc = SQLITE_ERROR; in appendOnePathElement()
6475 pPath->zOut[pPath->nUsed++] = '/'; in appendOnePathElement()
6476 memcpy(&pPath->zOut[pPath->nUsed], zName, nName); in appendOnePathElement()
6477 pPath->nUsed += nName; in appendOnePathElement()
6479 if( pPath->rc==SQLITE_OK ){ in appendOnePathElement()
6482 pPath->zOut[pPath->nUsed] = 0; in appendOnePathElement()
6483 zIn = pPath->zOut; in appendOnePathElement()
[all …]
H A Dwhere.c4357 WherePath *pPath, /* The WherePath to check */ in wherePathSatisfiesOrderBy() argument
4427 pLoop = pPath->aLoop[iLoop]; in wherePathSatisfiesOrderBy()
4711 static const char *wherePathName(WherePath *pPath, int nLoop, WhereLoop *pLast){ in wherePathName() argument
4714 for(i=0; i<nLoop; i++){ zName[i] = pPath->aLoop[i]->cId; } in wherePathName()