Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c6350 const char *zErr; /* Error message to return */ member
6670 p->zErr = "unknown \\ escape"; in re_esc_char()
6688 const char *zErr; in re_subcompile_re() local
6691 zErr = re_subcompile_string(p); in re_subcompile_re()
6692 if( zErr ) return zErr; in re_subcompile_re()
6698 zErr = re_subcompile_string(p); in re_subcompile_re()
6699 if( zErr ) return zErr; in re_subcompile_re()
6713 const char *zErr; in re_subcompile_string() local
6723 zErr = re_subcompile_re(p); in re_subcompile_string()
6724 if( zErr ) return zErr; in re_subcompile_string()
[all …]
H A Dsqlite3.c39293 char *zErr; /* Message from strerror() or equivalent */
39303 zErr = aErr;
39318 zErr =
39324 zErr = "";
39327 zErr = strerror(iErrno);
39333 iLine, iErrno, zFunc, zPath, zErr
43329 const char *zErr = "mmap";
43363 zErr = "mremap";
43390 unixLogError(SQLITE_OK, zErr, pFd->zPath);
44768 const char *zErr;
[all …]
/netbsd-src/external/public-domain/sqlite/dist/tea/generic/
H A Dtclsqlite3.c2594 char *zErr; in DbObjCmd() local
2596 zErr = malloc(nErr); in DbObjCmd()
2597 if( zErr ){ in DbObjCmd()
2598 sqlite3_snprintf(nErr, zErr, in DbObjCmd()
2601 Tcl_AppendResult(interp, zErr, (char*)0); in DbObjCmd()
2602 free(zErr); in DbObjCmd()