Searched refs:pPath (Results 1 – 2 of 2) sorted by relevance
162 char* pPath = modulePath + strlen(modulePath) - 1; in InitInstance() local163 while (*pPath != '\\') in InitInstance()165 *pPath = 0; in InitInstance()166 pPath--; in InitInstance()
45468 DbPath *pPath, /* Path under construction, to which to append zName */ in appendOnePathElement() argument45477 if( pPath->nUsed>1 ){ in appendOnePathElement()45478 assert( pPath->zOut[0]=='/' ); in appendOnePathElement()45479 while( pPath->zOut[--pPath->nUsed]!='/' ){} in appendOnePathElement()45484 if( pPath->nUsed + nName + 2 >= pPath->nOut ){ in appendOnePathElement()45485 pPath->rc = SQLITE_ERROR; in appendOnePathElement()45488 pPath->zOut[pPath->nUsed++] = '/'; in appendOnePathElement()45489 memcpy(&pPath->zOut[pPath->nUsed], zName, nName); in appendOnePathElement()45490 pPath->nUsed += nName; in appendOnePathElement()45492 if( pPath->rc==SQLITE_OK ){ in appendOnePathElement()[all …]