Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c8919 const char *zErr; /* Error message to return */ member
9145 if( N>p->mxAlloc ){ p->zErr = "REGEXP pattern too big"; return 1; } in re_resize()
9147 if( aOp==0 ){ p->zErr = "out of memory"; return 1; } in re_resize()
9150 if( aArg==0 ){ p->zErr = "out of memory"; return 1; } in re_resize()
9241 p->zErr = "unknown \\ escape"; in re_esc_char()
9259 const char *zErr; in re_subcompile_re() local
9262 zErr = re_subcompile_string(p); in re_subcompile_re()
9263 if( zErr ) return zErr; in re_subcompile_re()
9269 zErr = re_subcompile_string(p); in re_subcompile_re()
9270 if( zErr ) return zErr; in re_subcompile_re()
[all …]
H A Dsqlite3.c41587 char *zErr; /* Message from strerror() or equivalent */ in unixLogErrorAtLine() local
41597 zErr = aErr; in unixLogErrorAtLine()
41616 zErr = in unixLogErrorAtLine()
41622 zErr = ""; in unixLogErrorAtLine()
41625 zErr = strerror(iErrno); in unixLogErrorAtLine()
41631 iLine, iErrno, zFunc, zPath, zErr in unixLogErrorAtLine()
45786 const char *zErr = "mmap"; in unixRemapfile() local
45820 zErr = "mremap"; in unixRemapfile()
45847 unixLogError(SQLITE_OK, zErr, pFd->zPath); in unixRemapfile()
47251 const char *zErr; in unixDlError() local
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2395 char *zErr = 0; /* Error message from QRF */ in dbQrf()
2400 rc = sqlite3_format_query_result(pStmt->pStmt, &qrf, &zErr); in dbQrf()
2403 Tcl_SetResult(pDb->interp, zErr, TCL_VOLATILE); in dbQrf()
2404 sqlite3_free(zErr); in dbQrf()
3080 char *zErr; in DbObjCmd() local
3082 zErr = malloc(nErr); in DbObjCmd()
3083 if( zErr ){ in DbObjCmd()
3084 sqlite3_snprintf(nErr, zErr, in DbObjCmd()
3087 Tcl_AppendResult(interp, zErr, (char*)0); in DbObjCmd()
3088 free(zErr); in DbObjCmd()