Home
last modified time | relevance | path

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

/freebsd/crypto/krb5/src/windows/leash/
H A DLeash.cpp162 char* pPath = modulePath + strlen(modulePath) - 1; in InitInstance() local
163 while (*pPath != '\\') in InitInstance()
165 *pPath = 0; in InitInstance()
166 pPath--; in InitInstance()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c47091 DbPath *pPath, /* Path under construction, to which to append zName */ in appendOnePathElement() argument
47100 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 …]