Searched refs:zResult (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dutil.c340 char *zResult; local
350 *pz = zResult = sqliteMallocRaw( nByte );
351 if( zResult==0 ){
354 strcpy(zResult, zFirst);
355 zResult += strlen(zResult);
358 strcpy(zResult, z);
359 zResult += strlen(zResult);
380 char *zResult; local
[all...]
H A Dtest1.c182 char *zResult = 0; local
186 zResult = sqliteMPrintf("%z%s%s", zResult, argv[1], argv[i]);
188 Tcl_AppendResult(interp, zResult, 0);
189 sqliteFree(zResult);
H A Dtest3.c483 char *zResult; local
499 zResult = sqliteBtreeIntegrityCheck(pBt, aRoot, nRoot);
500 if( zResult ){
501 Tcl_AppendResult(interp, zResult, 0);
502 sqliteFree(zResult);
H A Dvdbeaux.c398 ** value or to return a NULL. To return a NULL, pass in NULL for zResult.
414 char *sqlite_set_result_string(sqlite_func *p, const char *zResult, int n){ argument
419 if( zResult==0 ){
425 if( n<0 ) n = strlen(zResult);
427 memcpy(p->s.zShort, zResult, n);
434 memcpy(p->s.z, zResult, n);
/illumos-gate/usr/src/cmd/sqlite/
H A Dshell.c154 char *zResult; local
163 zResult = readline(zPrompt);
164 if( zResult ) add_history(zResult);
165 return zResult;

Completed in 84 milliseconds