Lines Matching refs:zOut

3850 static int apndFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
3855 static int apndRandomness(sqlite3_vfs*, int nByte, char *zOut);
4280 char *zOut in apndFullPathname() argument
4282 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
15663 char *zOut = (char*)sqlite3_malloc64(nAlloc); in shellEscapeCrnl() local
15664 if( zOut==0 ){ in shellEscapeCrnl()
15670 memcpy(&zOut[iOut], "replace(replace(", 16); in shellEscapeCrnl()
15673 memcpy(&zOut[iOut], "replace(", 8); in shellEscapeCrnl()
15678 memcpy(&zOut[iOut], zNL, nNL); in shellEscapeCrnl()
15681 memcpy(&zOut[iOut], zCR, nCR); in shellEscapeCrnl()
15684 zOut[iOut] = zText[i]; in shellEscapeCrnl()
15690 memcpy(&zOut[iOut], ",'", 2); iOut += 2; in shellEscapeCrnl()
15691 memcpy(&zOut[iOut], zNL, nNL); iOut += nNL; in shellEscapeCrnl()
15692 memcpy(&zOut[iOut], "', char(10))", 12); iOut += 12; in shellEscapeCrnl()
15695 memcpy(&zOut[iOut], ",'", 2); iOut += 2; in shellEscapeCrnl()
15696 memcpy(&zOut[iOut], zCR, nCR); iOut += nCR; in shellEscapeCrnl()
15697 memcpy(&zOut[iOut], "', char(13))", 12); iOut += 12; in shellEscapeCrnl()
15700 sqlite3_result_text(context, zOut, iOut, SQLITE_TRANSIENT); in shellEscapeCrnl()
15701 sqlite3_free(zOut); in shellEscapeCrnl()
21084 const char *zOut; in do_meta_command() local
21110 case 0: zOut = "off"; break; in do_meta_command()
21111 default: zOut = "on"; break; in do_meta_command()
21112 case 2: zOut = "stmt"; break; in do_meta_command()
21113 case 3: zOut = "vmstep"; break; in do_meta_command()
21115 utf8_printf(p->out, "%12.12s: %s\n","stats", zOut); in do_meta_command()