• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/sqlite-3.6.22/

Lines Matching defs:failed

888 #define SQLITE_NOMEM        7   /* A malloc() failed */
894 #define SQLITE_FULL 13 /* Insertion failed because database is full */
1069 ** may be invoked even if the xOpen reported that it failed. The
1070 ** only way to prevent a call to xClose following a failed xOpen
2719 ** [extended result code] for the most recent failed sqlite3_* API call
2720 ** associated with a [database connection]. If a prior API call failed
3603 ** SQLITE_OK is returned. ^If execution of the statement failed then an
4014 ** indicating that a memory allocation failed.
5018 ** by a failed call to [sqlite3_blob_open()]) is a harmless no-op.
5903 ** ^The error code and message for the failed call to sqlite3_backup_init()
5946 ** that the backup operation has failed and pass the backup operation handle
8382 ** tried to do recently failed with an SQLITE_LOCKED error due to locks
19457 ** use. sqlite3SafetyCheckSickOrOk() allows a db pointer that failed to
20631 OSTRACE3( "UNLOCK %d to %d getReadLock() failed\n", pFile->h, locktype );
22957 rc==SQLITE_OK ? "ok" : "failed");
23355 /* failed to open/create the file, someone else may have stolen the lock */
23487 /* unlock failed with an error */
23573 rc==SQLITE_OK ? "ok" : "failed");
23885 OSTRACE4("AFPSETLOCK failed to fsctl() '%s' %d %s\n",
23933 /* if we failed to get the lock then someone else must have it */
24015 int failed;
24016 failed = afpSetLock(context->dbPath, pFile, PENDING_BYTE, 1, 1);
24017 if (failed) {
24018 rc = failed;
24060 int failed = 0;
24064 failed = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1,1);
24066 if (!failed && locktype == EXCLUSIVE_LOCK) {
24072 if( !(failed = afpSetLock(context->dbPath, pFile, SHARED_FIRST +
24076 failed = afpSetLock(context->dbPath, pFile, SHARED_FIRST,
24078 if( failed && (failed2 = afpSetLock(context->dbPath, pFile,
24083 rc = ((failed & SQLITE_IOERR) == SQLITE_IOERR) ? failed2 :
24088 rc = failed;
24091 if( failed ){
24092 rc = failed;
24105 rc==SQLITE_OK ? "ok" : "failed");
24227 ** To avoid stomping the errno value on a failed read the lastErrno value
24301 ** To avoid stomping the errno value on a failed write the lastErrno value
24490 /* If the FULLFSYNC failed, fall back to attempting an fsync().
24568 ** A failed directory sync is not a big deal. So it seems
25052 ** (a) A call to fstat() failed.
25053 ** (b) A malloc failed.
26392 OSTRACE3("TAKECONCH %d %s\n", conchFile->h, rc==SQLITE_OK?"ok":"failed");
26413 (rc==SQLITE_OK ? "ok" : "failed"));
26583 (rc==SQLITE_OK ? "ok" : "failed"));
27504 /* If mapping failed, close the shared memory handle and erase it */
33139 ** it is corrupted, then a process must of failed while writing it.
33554 ** function was called, or because the memory allocation attempt failed,
34808 goto failed;
34828 goto failed;
34864 goto failed;
34882 goto failed;
34912 goto failed;
34920 goto failed;
34933 failed:
36004 ** (operation 1) failed. However the pager must enter the error state
37403 ** the chain. Otherwise the !p->locked test above would have failed */
38927 ** we failed to detect any corruption.
40722 ** all queries that may be using any of the cursors that failed to save.
44892 checkAppendMsg(pCheck, zContext, "failed to get page %d", iPage);
47518 ** If malloc failed, then the while() loop above may not have iterated
48220 ** sqlite3_column_text16() failed. */
48444 ** *pnByte is a counter of the number of bytes of space that have failed
49138 sqlite3SetString(&p->zErrMsg, db, "foreign key constraint failed");
50560 /* Assert that malloc() has not failed */
50791 if( iArg<0 ) goto failed;
50800 goto failed;
50816 failed:
50904 ** malloc() has failed, the threads mallocFailed flag is cleared and the result
50921 /* If malloc() failed during an encoding conversion within an
51040 /* A malloc may have failed inside of the xFunc() call. If this
52686 ** sqlite3_column_text16() failed. */
53533 /* Even though a malloc() has failed, the implementation of the
61241 /* Avoid leaking memory if malloc has failed. */
64548 ** If that allocation failed, we would have quit before reaching this
65608 ** If this fails, or if opening the file failed, then close the file and
66456 return; /* A malloc must have failed */
67834 assert( p==pOld ); /* Malloc must have failed inside HashInsert() */
68933 assert( p==pIndex ); /* Malloc must have failed */
71295 ** the database handle that malloc() has failed and return NULL.
72951 pParse, OE_Abort, "foreign key constraint failed", P4_STATIC
72979 ** throw a "foreign key constraint failed" exception.
72985 ** throw a "foreign key constraint failed" exception.
73188 pParse, OE_Abort, "foreign key constraint failed", P4_STATIC
73586 pRaise = sqlite3Expr(db, TK_RAISE, "foreign key constraint failed");
73964 assert( v ); /* We failed long ago if this is not so */
76675 "automatic extension loading failed: %s", zErrmsg);
77464 sqlite3ErrorMsg(pParse, "failed to set lock proxy file");
81071 assert( v!=0 ); /* Already thrown the error if VDBE alloc failed */
85949 assert( pTab==pOld ); /* Malloc must have failed inside HashInsert() */
86025 *pzErr = sqlite3MPrintf(db, "vtable constructor failed: %s", zModuleName);
90313 ** used for the scan. If not, then query compilation has failed.
95357 ** subsystem could not be initialized or the system failed to allocate
95978 /* SQLITE_CONSTRAINT */ "constraint failed",
96043 ** This routine is called when an operation failed with a lock.
96533 /* A malloc() may have failed within the call to sqlite3_value_text16()
96547 ** passed to this function, we assume a malloc() failed during sqlite3_open().
97256 /* Whether the function call succeeded or failed, set the output parameters
97802 ** allocate a larger array from the heap has failed.
98889 /* If malloc has failed, set rc to SQLITE_NOMEM. Otherwise, try to
104053 /* Malloc failed while inserting the new entry. This can only
110311 const char *zName, /* Name of ICU function that failed */