HomeSort by relevance Sort by last modified time
    Searched refs:zErrMsg (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/third_party/sqlite/src/test/
threadtest1.c 105 char *zErrMsg = 0;
114 rc = sqlite3_exec(db, zSql, db_query_callback, &sResult, &zErrMsg);
116 if( zErrMsg ) free(zErrMsg);
117 rc = sqlite3_exec(db, zSql, db_query_callback, &sResult, &zErrMsg);
120 if( zErrMsg ){
121 fprintf(stdout,"%s: query failed: %s - %s\n", zFile, zSql, zErrMsg);
122 free(zErrMsg);
140 char *zErrMsg = 0;
147 rc = sqlite3_exec(db, zSql, 0, 0, &zErrMsg);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
table.c 31 char *zErrMsg; /* Error message text, if an error occurs */
77 sqlite3_free(p->zErrMsg);
78 p->zErrMsg = sqlite3_mprintf(
133 res.zErrMsg = 0;
150 if( res.zErrMsg ){
153 *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg);
155 sqlite3_free(res.zErrMsg);
160 sqlite3_free(res.zErrMsg);
util.c 134 ** Add an error message to pParse->zErrMsg and increment pParse->nErr.
161 sqlite3DbFree(db, pParse->zErrMsg);
162 pParse->zErrMsg = zMsg;
tokenize.c 477 if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){
478 sqlite3SetString(&pParse->zErrMsg, db, "%s", sqlite3ErrStr(pParse->rc));
481 if( pParse->zErrMsg ){
482 *pzErrMsg = pParse->zErrMsg;
484 pParse->zErrMsg = 0;
test_devsym.c 67 static void devsymDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
328 ** Populate the buffer zErrMsg (size nByte bytes) with a human readable
332 static void devsymDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
333 sqlite3OsDlError(g.pVfs, nByte, zErrMsg);
prepare.c 429 rc = sqlite3Init(db, &pParse->zErrMsg);
531 char *zErrMsg = 0; /* Error message */
599 sqlite3RunParser(pParse, zSqlCopy, &zErrMsg);
606 sqlite3RunParser(pParse, zSql, &zErrMsg);
660 if( zErrMsg ){
661 sqlite3Error(db, rc, "%s", zErrMsg);
662 sqlite3DbFree(db, zErrMsg);
test_fuzzer.c 815 sqlite3_free(pVTab->zErrMsg);
816 pVTab->zErrMsg = sqlite3_mprintf("cannot delete from a %s virtual table",
821 sqlite3_free(pVTab->zErrMsg);
822 pVTab->zErrMsg = sqlite3_mprintf("cannot update a %s virtual table",
836 sqlite3_free(pVTab->zErrMsg);
837 pVTab->zErrMsg = sqlite3_mprintf("cost must be positive");
test_demovfs.c 565 static void demoDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
566 sqlite3_snprintf(nByte, zErrMsg, "Loadable extensions are not supported");
567 zErrMsg[nByte-1] = '\0';
test8.c 100 p->base.zErrMsg = sqlite3_mprintf("echo-vtab-error: %s", zErr);
1045 tab->zErrMsg = sqlite3_mprintf("echo-vtab-error: %s", sqlite3_errmsg(db));
    [all...]
vdbe.c 502 ** Transfer error message text from an sqlite3_vtab.zErrMsg (text stored
503 ** in memory obtained from sqlite3_malloc) into a Vdbe.zErrMsg (text stored
508 sqlite3DbFree(db, p->zErrMsg);
509 p->zErrMsg = sqlite3DbStrDup(db, pVtab->zErrMsg);
510 sqlite3_free(pVtab->zErrMsg);
511 pVtab->zErrMsg = 0;
531 ** from sqlite3_malloc() and p->zErrMsg is made to point to that memory.
854 sqlite3SetString(&p->zErrMsg, db, "%s", pOp->p4.z);
    [all...]
vdbeblob.c 188 if( pParse->zErrMsg ){
190 zErr = pParse->zErrMsg;
191 pParse->zErrMsg = 0;
vdbeaux.c     [all...]
trigger.c 788 assert( pFrom->zErrMsg==0 || pFrom->nErr );
789 assert( pTo->zErrMsg==0 || pTo->nErr );
791 pTo->zErrMsg = pFrom->zErrMsg;
794 sqlite3DbFree(pFrom->db, pFrom->zErrMsg);
    [all...]
test_journal.c 158 static void jtDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
774 ** Populate the buffer zErrMsg (size nByte bytes) with a human readable
778 static void jtDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
779 g.pVfs->xDlError(g.pVfs, nByte, zErrMsg);
test_onefile.c 168 static void fsDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
764 ** Populate the buffer zErrMsg (size nByte bytes) with a human readable
768 static void fsDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
770 pParent->xDlError(pParent, nByte, zErrMsg);
shell.c 960 char *zErrMsg = sqlite3_malloc(nErrMsg);
961 if( zErrMsg ){
962 memcpy(zErrMsg, sqlite3_errmsg(db), nErrMsg);
964 return zErrMsg;
    [all...]
test_vfstrace.c 72 static void vfstraceDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
603 ** Populate the buffer zErrMsg (size nByte bytes) with a human readable
607 static void vfstraceDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
611 pRoot->xDlError(pRoot, nByte, zErrMsg);
612 vfstrace_printf(pInfo, " -> \"%s\"", zErrMsg);
vdbeInt.h 284 char *zErrMsg; /* Error message written here */
main.c     [all...]
backup.c 101 sqlite3Error(pErrorDb, pParse->rc, "%s", pParse->zErrMsg);
104 sqlite3DbFree(pErrorDb, pParse->zErrMsg);
test6.c 662 static void cfDlError(sqlite3_vfs *pCfVfs, int nByte, char *zErrMsg){
664 pVfs->xDlError(pVfs, nByte, zErrMsg);
test_osinst.c 164 static void vfslogDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
556 ** Populate the buffer zErrMsg (size nByte bytes) with a human readable
560 static void vfslogDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
561 REALVFS(pVfs)->xDlError(REALVFS(pVfs), nByte, zErrMsg);
    [all...]
vdbeapi.c 495 sqlite3DbFree(db, v->zErrMsg);
497 v->zErrMsg = sqlite3DbStrDup(db, zErr);
500 v->zErrMsg = 0;
    [all...]
  /external/sqlite/dist/orig/
shell.c 1001 char *zErrMsg = sqlite3_malloc(nErrMsg);
1002 if( zErrMsg ){
1003 memcpy(zErrMsg, sqlite3_errmsg(db), nErrMsg);
1005 return zErrMsg;
    [all...]
  /external/sqlite/dist/
shell.c 1006 char *zErrMsg = sqlite3_malloc(nErrMsg);
1007 if( zErrMsg ){
1008 memcpy(zErrMsg, sqlite3_errmsg(db), nErrMsg);
1010 return zErrMsg;
    [all...]

Completed in 598 milliseconds

1 2