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()
47091 DbPath *pPath, /* Path under construction, to which to append zName */ in appendOnePathElement() argument47100 if( pPath->nUsed>1 ){ in appendOnePathElement()47101 assert( pPath->zOut[0]=='/' ); in appendOnePathElement()47102 while( pPath->zOut[--pPath->nUsed]!='/' ){} in appendOnePathElement()47107 if( pPath->nUsed + nName + 2 >= pPath->nOut ){ in appendOnePathElement()47108 pPath->rc = SQLITE_ERROR; in appendOnePathElement()47111 pPath->zOut[pPath->nUsed++] = '/'; in appendOnePathElement()47112 memcpy(&pPath->zOut[pPath->nUsed], zName, nName); in appendOnePathElement()47113 pPath->nUsed += nName; in appendOnePathElement()47115 if( pPath->rc==SQLITE_OK ){ in appendOnePathElement()[all …]