Searched refs:zOut (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 8862 static int apndFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut); 8867 static int apndRandomness(sqlite3_vfs*, int nByte, char *zOut); 9292 char *zOut in apndFullPathname() argument 9294 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname() 17262 char *zOut = (char*)sqlite3_malloc64(nAlloc); in recoverEscapeCrnl() local 17263 if( zOut==0 ){ in recoverEscapeCrnl() 17269 memcpy(&zOut[iOut], "replace(replace(", 16); in recoverEscapeCrnl() 17272 memcpy(&zOut[iOut], "replace(", 8); in recoverEscapeCrnl() 17277 memcpy(&zOut[iOut], zNL, nNL); in recoverEscapeCrnl() 17280 memcpy(&zOut[iOut], zCR, nCR); in recoverEscapeCrnl() [all …]
|
H A D | sqlite3.c | 1791 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); 1796 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); 31339 char *zOut; /* Rendering buffer */ in sqlite3_str_vappendf() local 31563 zOut = buf; in sqlite3_str_vappendf() 31568 zOut = zExtra = printfTempBuf(pAccum, n); in sqlite3_str_vappendf() 31569 if( zOut==0 ) return; in sqlite3_str_vappendf() 31572 bufpt = &zOut[nOut-1]; in sqlite3_str_vappendf() 31590 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf() 31616 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf() 31708 zOut = bufpt; in sqlite3_str_vappendf() [all …]
|
H A D | sqlite3.h | 1478 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); 1483 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
|