Home
last modified time | relevance | path

Searched refs:zErr (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c7202 const char *zErr; /* Error message to return */ member
7522 p->zErr = "unknown \\ escape"; in re_esc_char()
7540 const char *zErr; in re_subcompile_re() local
7543 zErr = re_subcompile_string(p); in re_subcompile_re()
7544 if( zErr ) return zErr; in re_subcompile_re()
7550 zErr = re_subcompile_string(p); in re_subcompile_re()
7551 if( zErr ) return zErr; in re_subcompile_re()
7565 const char *zErr; in re_subcompile_string() local
7575 zErr = re_subcompile_re(p); in re_subcompile_string()
7576 if( zErr ) return zErr; in re_subcompile_string()
[all …]
H A Dsqlite3.c40119 char *zErr; /* Message from strerror() or equivalent */ in unixLogErrorAtLine() local
40129 zErr = aErr; in unixLogErrorAtLine()
40148 zErr = in unixLogErrorAtLine()
40154 zErr = ""; in unixLogErrorAtLine()
40157 zErr = strerror(iErrno); in unixLogErrorAtLine()
40163 iLine, iErrno, zFunc, zPath, zErr in unixLogErrorAtLine()
44152 const char *zErr = "mmap"; in unixRemapfile() local
44186 zErr = "mremap"; in unixRemapfile()
44213 unixLogError(SQLITE_OK, zErr, pFd->zPath); in unixRemapfile()
45598 const char *zErr; in unixDlError() local
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2647 char *zErr; in DbObjCmd() local
2649 zErr = malloc(nErr); in DbObjCmd()
2650 if( zErr ){ in DbObjCmd()
2651 sqlite3_snprintf(nErr, zErr, in DbObjCmd()
2654 Tcl_AppendResult(interp, zErr, (char*)0); in DbObjCmd()
2655 free(zErr); in DbObjCmd()