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()
47121 DbPath *pPath, /* Path under construction, to which to append zName */ in appendOnePathElement() argument47130 if( pPath->nUsed>1 ){ in appendOnePathElement()47131 assert( pPath->zOut[0]=='/' ); in appendOnePathElement()47132 while( pPath->zOut[--pPath->nUsed]!='/' ){} in appendOnePathElement()47137 if( pPath->nUsed + nName + 2 >= pPath->nOut ){ in appendOnePathElement()47138 pPath->rc = SQLITE_ERROR; in appendOnePathElement()47141 pPath->zOut[pPath->nUsed++] = '/'; in appendOnePathElement()47142 memcpy(&pPath->zOut[pPath->nUsed], zName, nName); in appendOnePathElement()47143 pPath->nUsed += nName; in appendOnePathElement()47145 if( pPath->rc==SQLITE_OK ){ in appendOnePathElement()[all …]