Lines Matching refs:pzErr

5228   char **pzErr
5235 (void)pzErr;
5767 char **pzErr
5775 (void)(pzErr); /* Unused parameter */
7191 char **pzErr
7210 *pzErr = sqlite3_mprintf("zipfile constructor requires one argument");
7652 char **pzErr = &pTab->base.zErrMsg;
7657 rc = zipfileReadData(pFile, aRead, ZIPFILE_CDS_FIXED_SZ, iOff, pzErr);
7682 *pzErr = sqlite3_mprintf("failed to read CDS at offset %lld", iOff);
7685 pFile, aRead, nExtra+nFile, iOff+ZIPFILE_CDS_FIXED_SZ, pzErr
7708 rc = zipfileReadData(pFile, aRead, szFix, pNew->cds.iOffset, pzErr);
7722 *pzErr = sqlite3_mprintf("failed to read LFH at offset %d",
7836 char **pzErr /* OUT: Error message */
7862 *pzErr = sqlite3_mprintf("zipfile: deflate() error");
8252 char **pzErr /* OUT: Error message */
8278 *pzErr = sqlite3_mprintf("zipfile: mode does not match data");
8285 *pzErr = sqlite3_mprintf("zipfile: parse error in mode: %s", z);
9208 ** If successful, a pointer to the new object is returned and (*pzErr) set
9209 ** to NULL. Or, if an error occurs, NULL is returned and (*pzErr) set to
9214 sqlite3expert *sqlite3_expert_new(sqlite3 *db, char **pzErr);
9254 ** is returned and (*pzErr) set to NULL. Or, if an error occurs - for example
9255 ** due to a error in the SQL - an SQLite error code is returned and (*pzErr)
9272 char **pzErr /* OUT: Error message (if any) */
9282 ** If successful, SQLITE_OK is returned and (*pzErr) is set to NULL. Or, if
9283 ** an error occurs, an SQLite error code is returned and (*pzErr) set to
9294 int sqlite3_expert_analyze(sqlite3expert *p, char **pzErr);
9774 char **pzErr
9781 *pzErr = sqlite3_mprintf("internal error!");
10545 char **pzErr /* OUT: Error message (sqlite3_malloc) */
10558 rc = idxPrintfPrepareStmt(dbm, &pExplain, pzErr,
10654 char **pzErr
10669 rc = idxPrintfPrepareStmt(p->db, &pSelect, pzErr, zSql, zTab, zTab);
10673 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr);
10683 rc = sqlite3_exec(p->dbv, z, 0, 0, pzErr);
10722 idxDatabaseError(p->dbv, pzErr);
10728 rc = sqlite3_exec(p->dbv, zDrop, 0, 0, pzErr);
10734 static int idxProcessTriggers(sqlite3expert *p, char **pzErr){
10742 rc = idxProcessOneTrigger(p, pIter, pzErr);
10937 static int idxLargestIndex(sqlite3 *db, int *pnMax, char **pzErr){
10948 rc = idxPrepareStmt(db, &pMax, pzErr, zMax);
10963 char **pzErr
11005 rc = idxPrepareStmt(dbrem, &pQuery, pzErr, zQuery);
11081 static int idxPopulateStat1(sqlite3expert *p, char **pzErr){
11104 rc = idxLargestIndex(p->dbm, &nMax, pzErr);
11128 rc = idxPrepareStmt(p->dbm, &pAllIndex, pzErr, zAllIndex);
11131 rc = idxPrepareStmt(p->dbm, &pIndexXInfo, pzErr, zIndexXInfo);
11134 rc = idxPrepareStmt(p->dbm, &pWrite, pzErr, zWrite);
11150 rc = idxPopulateOneStat1(p, pIndexXInfo, pWrite, zTab, zIdx, pzErr);
11269 char **pzErr /* OUT: Error message (if any) */
11297 idxDatabaseError(p->dbv, pzErr);
11311 int sqlite3_expert_analyze(sqlite3expert *p, char **pzErr){
11316 rc = idxProcessTriggers(p, pzErr);
11322 if( pzErr )
11323 *pzErr = sqlite3_mprintf("Cannot find a unique index name to propose.");
11329 rc = idxPopulateStat1(p, pzErr);
11343 rc = idxFindIndexes(p, pzErr);
11577 char **pzErr
18141 ** code. In this case, (*pzErr) may be set to point to a buffer containing
18148 char **pzErr
18151 assert( pzErr==0 || *pzErr==0 );
18152 return sqlite3_expert_sql(pState->expert.pExpert, zSql, pzErr);
18161 ** code. In this case, (*pzErr) may be set to point to a buffer containing
18168 char **pzErr
18173 assert( bCancel || pzErr==0 || *pzErr==0 );
18178 rc = sqlite3_expert_analyze(p, pzErr);