Lines Matching refs:zLoc
25081 char *zLoc; in shellErrorLocation() local
25083 zLoc = sqlite3_mprintf("%s", p->zErrPrefix); in shellErrorLocation()
25085 zLoc = sqlite3_mprintf("line %lld:", p->lineno); in shellErrorLocation()
25087 zLoc = sqlite3_mprintf("%s:%lld:", p->zInFile, p->lineno); in shellErrorLocation()
25089 return zLoc; in shellErrorLocation()
25104 char *zLoc = shellErrorLocation(p); in failIfSafeMode() local
25108 cli_printf(stderr, "%s %s\n", zLoc, zMsg); in failIfSafeMode()
25124 char *zLoc = shellErrorLocation(p); in dotCmdError() local
25128 cli_printf(out, "%s %s\n", zLoc, p->dot.zOrig); in dotCmdError()
25130 cli_printf(out, "%s %*s%s ---^\n", zLoc, 1+i-nPrompt, "", zBrief); in dotCmdError()
25132 cli_printf(out, "%s %*s^--- %s\n", zLoc, i, "", zBrief); in dotCmdError()
25141 cli_printf(out,"%s %s\n", zLoc, zMsg); in dotCmdError()
25144 sqlite3_free(zLoc); in dotCmdError()