Lines Matching refs:zOut

3387   char *zOut,               /* Store hex or binary hash here */  in hash_finish()  argument
3408 memcpy(zOut, digest, 20); in hash_finish()
3411 zOut[i*2] = zEncode[(digest[i]>>4)&0xf]; in hash_finish()
3412 zOut[i*2+1] = zEncode[digest[i] & 0xf]; in hash_finish()
3414 zOut[i*2]= 0; in hash_finish()
3437 char zOut[44]; in sha1Func() local
3448 hash_finish(&cx, zOut, 1); in sha1Func()
3449 sqlite3_result_blob(context, zOut, 20, SQLITE_TRANSIENT); in sha1Func()
3451 hash_finish(&cx, zOut, 0); in sha1Func()
3452 sqlite3_result_blob(context, zOut, 40, SQLITE_TRANSIENT); in sha1Func()
3482 char zOut[44]; in sha1QueryFunc() local
3566 hash_finish(&cx, zOut, 0); in sha1QueryFunc()
3567 sqlite3_result_text(context, zOut, 40, SQLITE_TRANSIENT); in sha1QueryFunc()
9691 static int apndFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
9696 static int apndRandomness(sqlite3_vfs*, int nByte, char *zOut);
10121 char *zOut in apndFullPathname() argument
10123 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
16433 static int vfstraceRandomness(sqlite3_vfs*, int nByte, char *zOut);
17189 char *zOut in vfstraceFullPathname() argument
17197 rc = pRoot->xFullPathname(pRoot, zPath, nOut, zOut); in vfstraceFullPathname()
17199 vfstrace_printf(pInfo, ", out=\"%.*s\"\n", nOut, zOut); in vfstraceFullPathname()
19512 char *zOut = (char*)sqlite3_malloc64(nAlloc); in recoverEscapeCrlf() local
19513 if( zOut==0 ){ in recoverEscapeCrlf()
19519 memcpy(&zOut[iOut], "replace(replace(", 16); in recoverEscapeCrlf()
19522 memcpy(&zOut[iOut], "replace(", 8); in recoverEscapeCrlf()
19527 memcpy(&zOut[iOut], zNL, nNL); in recoverEscapeCrlf()
19530 memcpy(&zOut[iOut], zCR, nCR); in recoverEscapeCrlf()
19533 zOut[iOut] = zText[i]; in recoverEscapeCrlf()
19539 memcpy(&zOut[iOut], ",'", 2); iOut += 2; in recoverEscapeCrlf()
19540 memcpy(&zOut[iOut], zNL, nNL); iOut += nNL; in recoverEscapeCrlf()
19541 memcpy(&zOut[iOut], "', char(10))", 12); iOut += 12; in recoverEscapeCrlf()
19544 memcpy(&zOut[iOut], ",'", 2); iOut += 2; in recoverEscapeCrlf()
19545 memcpy(&zOut[iOut], zCR, nCR); iOut += nCR; in recoverEscapeCrlf()
19546 memcpy(&zOut[iOut], "', char(13))", 12); iOut += 12; in recoverEscapeCrlf()
19549 sqlite3_result_text(context, zOut, iOut, SQLITE_TRANSIENT); in recoverEscapeCrlf()
19550 sqlite3_free(zOut); in recoverEscapeCrlf()
22397 unsigned char *zOut; in escapeOutput() local
22422 zOut = sqlite3_malloc64( i + nCtrl + 1 ); in escapeOutput()
22423 shell_check_oom(zOut); in escapeOutput()
22433 memcpy(&zOut[j], zIn, i); in escapeOutput()
22440 zOut[j++] = 0xe2; in escapeOutput()
22441 zOut[j++] = 0x90; in escapeOutput()
22442 zOut[j++] = 0x80+c; in escapeOutput()
22445 zOut[j++] = '^'; in escapeOutput()
22446 zOut[j++] = 0x40+c; in escapeOutput()
22451 memcpy(&zOut[j], zIn, i); in escapeOutput()
22454 zOut[j] = 0; in escapeOutput()
22455 *ppFree = (char*)zOut; in escapeOutput()
22456 return (char*)zOut; in escapeOutput()
23057 const char *zOut = escapeOutput(p, z, &pFree); in shell_callback() local
23058 sqlite3_fprintf(p->out, "%s%s", zOut, in shell_callback()
23067 const char *zOut; in shell_callback() local
23069 zOut = escapeOutput(p, z, &pFree); in shell_callback()
23070 sqlite3_fputs(zOut, p->out); in shell_callback()
24200 unsigned char *zOut; /* Output text */ in translateForDisplayAndDup() local
24271 zOut = malloc( j+1 ); in translateForDisplayAndDup()
24272 shell_check_oom(zOut); in translateForDisplayAndDup()
24279 do{ zOut[j++] = z[i++]; }while( (--len)>0 ); in translateForDisplayAndDup()
24285 zOut[j++] = z[i++]; in translateForDisplayAndDup()
24292 zOut[j++] = ' '; in translateForDisplayAndDup()
24299 zOut[j++] = 0xe2; in translateForDisplayAndDup()
24300 zOut[j++] = 0x90; in translateForDisplayAndDup()
24301 zOut[j++] = 0x80 + c; in translateForDisplayAndDup()
24304 zOut[j++] = '^'; in translateForDisplayAndDup()
24305 zOut[j++] = 0x40 + c; in translateForDisplayAndDup()
24310 memcpy(&zOut[j], &z[i], nn); in translateForDisplayAndDup()
24314 zOut[j++] = c; in translateForDisplayAndDup()
24321 zOut[j] = 0; in translateForDisplayAndDup()
24322 return (char*)zOut; in translateForDisplayAndDup()
31621 const char *zOut; in do_meta_command() local
31658 case 0: zOut = "off"; break; in do_meta_command()
31659 default: zOut = "on"; break; in do_meta_command()
31660 case 2: zOut = "stmt"; break; in do_meta_command()
31661 case 3: zOut = "vmstep"; break; in do_meta_command()
31663 sqlite3_fprintf(p->out, "%12.12s: %s\n","stats", zOut); in do_meta_command()
33972 int fiddle_export_db( int (*xCallback)(unsigned const char *zOut, int n) ){ argument