MCPcopy Create free account

hub / github.com/2shady4u/godot-sqlite / functions

Functions809 in github.com/2shady4u/godot-sqlite

↓ 352 callersFunctionsqlite3_fprintf
** Work-alike for fprintf() from the standard C library. */
src/sqlite/shell.c:579
↓ 200 callersFunctioncli_strcmp
A version of strcmp() that works with NULL values */
src/sqlite/shell.c:643
↓ 170 callersFunctionsqlite3_fputs
** Work-alike for fputs() from the standard C library. */
src/sqlite/shell.c:535
↓ 115 callersFunctioncli_strncmp
src/sqlite/shell.c:648
↓ 73 callersFunctionshell_check_oom
Check a pointer to see if it is NULL. If it is NULL, exit with an ** out-of-memory error. */
src/sqlite/shell.c:1005
↓ 69 callersFunctionappendText
zIn is either a pointer to a NULL-terminated string in memory obtained ** from malloc(), or a NULL pointer. The string pointed to by zAppend is ** add
src/sqlite/shell.c:1549
↓ 49 callersFunctionvfstrace_printf
** Send trace output defined by zFormat and subsequent arguments. */
src/sqlite/shell.c:16077
↓ 40 callersFunctionopen_db
** Make sure the database is open. If it is not, then open it. If ** the database fails to open, print an error message and exit. */
src/sqlite/shell.c:25671
↓ 36 callersFunctionintegerValue
** Interpret zArg as an integer value, possibly with suffixes. ** ** If the value specified by zArg is outside the range of values that ** can be repr
src/sqlite/shell.c:1469
↓ 30 callersFunctionvfstraceOnOff
** Turn tracing output on or off according to mMask. */
src/sqlite/shell.c:16192
↓ 29 callersFunctionstrlen30
** Compute a string length that is limited to what can be stored in ** lower 30 bits of a 32-bit signed integer. */
src/sqlite/shell.c:1301
↓ 22 callersFunctionoptionMatch
** Compare the string as a command-line option with either one or two ** initial "-" characters. */
src/sqlite/shell.c:26949
↓ 21 callersFunctionidxAppendText
** This function is a no-op if *pRc is set to anything other than ** SQLITE_OK when it is called. ** ** If *pRc is initially set to SQLITE_OK, then t
src/sqlite/shell.c:13160
↓ 20 callersFunctionrecoverMPrintf
** This function is a no-op if recover handle p already contains an error ** (if p->errCode!=SQLITE_OK). NULL is returned in this case. ** ** Otherwis
src/sqlite/shell.c:18912
↓ 19 callersFunctionbooleanValue
** Interpret zArg as either an integer or a boolean value. Return 1 or 0 ** for TRUE and FALSE. Return the integer value if appropriate. */
src/sqlite/shell.c:26016
↓ 19 callersFunctionre_append
Append a new opcode and argument to the end of the RE under construction. */
src/sqlite/shell.c:6919
↓ 18 callersFunctiondecimal_free
** Destroy a Decimal object */
src/sqlite/shell.c:3654
↓ 18 callersFunctionvfstrace_print_errcode
** Convert value rc into a string and print it using zFormat. zFormat ** should have exactly one %s */
src/sqlite/shell.c:16159
↓ 17 callersFunctioncmdline_option_value
** Get the argument to an --option. Throw an error and die if no argument ** is available. */
src/sqlite/shell.c:33017
↓ 17 callersFunctionre_add_state
Add a state to the given state set if it is not already there */
src/sqlite/shell.c:6676
↓ 17 callersFunctionsqlite3_fopen
** Work-alike for the fopen() routine from the standard C library. */
src/sqlite/shell.c:413
↓ 15 callersFunctionintckMprintf
** A wrapper around sqlite3_mprintf() that uses the sqlite3_intck error ** code convention. */
src/sqlite/shell.c:14934
↓ 15 callersFunctionrecoverFinalize
** Finalize SQLite statement handle pStmt. If the call to sqlite3_reset() ** indicates that an error occurred, and there is not already an error ** i
src/sqlite/shell.c:18854
↓ 14 callersFunctionfailIfSafeMode
** If in safe mode, print an error message described by the arguments ** and exit immediately. */
src/sqlite/shell.c:21536
↓ 13 callersFunctionSHA3Update
** Make consecutive calls to the SHA3Update function to add new content ** to the hash */
src/sqlite/shell.c:2742
↓ 13 callersFunctionclose_db
** Attempt to close the database connection. Report errors. */
src/sqlite/shell.c:25854
↓ 13 callersFunctionhash_step
Add new content to the SHA1 hash */
src/sqlite/shell.c:3243
↓ 13 callersFunctionidxFinalize
** End of virtual table implementation. *************************************************************************/ ** Finalize SQL statement pStmt. If
src/sqlite/shell.c:13048
↓ 12 callersFunctionrecoverExec
** This function is a no-op if recover handle p already contains an error ** (if p->errCode!=SQLITE_OK). A copy of p->errCode is returned in this **
src/sqlite/shell.c:18871
↓ 12 callersFunctionrecoverPrepare
** This function is a no-op if recover handle p already contains an error ** (if p->errCode!=SQLITE_OK). ** ** Otherwise, it attempts to prepare the
src/sqlite/shell.c:18784
↓ 12 callersFunctionrecoverReset
** Reset SQLite statement handle pStmt. If the call to sqlite3_reset() ** indicates that an error occurred, and there is not already an error ** in t
src/sqlite/shell.c:18840
↓ 12 callersFunctionrecoverSqlCallback
** If this recover handle is not in SQL callback mode (i.e. was not created ** using sqlite3_recover_init_sql()) of if an error has already occurred,
src/sqlite/shell.c:19217
↓ 12 callersFunctionshowHelp
** Output help text for commands that match zPattern. ** ** * If zPattern is NULL, then show all documented commands, but ** only give a o
src/sqlite/shell.c:25276
↓ 11 callersFunctiondecimal_new
** Allocate a new Decimal object from an sqlite3_value. Return a pointer ** to the new object, or NULL if there is an error. If the pCtx argument **
src/sqlite/shell.c:3786
↓ 11 callersFunctionidxMalloc
** Allocate and return nByte bytes of zeroed memory using sqlite3_malloc(). ** If the allocation fails, set *pRc to SQLITE_NOMEM and return NULL. */
src/sqlite/shell.c:12545
↓ 11 callersFunctionquoteChar
** Attempt to determine if identifier zName needs to be quoted, either ** because it contains non-alphanumeric characters, or because it is an ** SQLi
src/sqlite/shell.c:1593
↓ 11 callersFunctionshellDatabaseError
** Print the current sqlite3_errmsg() value to stderr and return 1. */
src/sqlite/shell.c:26842
↓ 10 callersFunctionrePeek
Peek at the next byte of input */
src/sqlite/shell.c:6995
↓ 10 callersFunctionrecoverPreparePrintf
** This function is a no-op if recover handle p already contains an error ** (if p->errCode!=SQLITE_OK). ** ** Otherwise, argument zFmt is used as a
src/sqlite/shell.c:18809
↓ 9 callersFunctionimport_cleanup
Clean up resourced used by an ImportCtx */
src/sqlite/shell.c:26169
↓ 9 callersFunctioninitText
** Initialize and destroy a ShellText object */
src/sqlite/shell.c:1533
↓ 9 callersFunctionintckFinalize
** Finalize SQL statement pStmt. If an error occurs and the handle passed ** as the first argument does not already contain an error, store the ** err
src/sqlite/shell.c:14902
↓ 9 callersFunctionrc_err_oom_die
src/sqlite/shell.c:28286
↓ 9 callersFunctionrecoverDbError
** Set the recover handle error to the error code and message returned by ** calling sqlite3_errcode() and sqlite3_errmsg(), respectively, on database
src/sqlite/shell.c:18771
↓ 9 callersFunctionverify_uninitialized
** Internal check: Verify that the SQLite is uninitialized. Print a ** error message if it is initialized. */
src/sqlite/shell.c:32957
↓ 8 callersFunctionarErrorMsg
** Print an error message for the .ar command to stderr and return ** SQLITE_ERROR. */
src/sqlite/shell.c:27424
↓ 8 callersFunctionarExecSql
** Run the SQL statement in zSql. Or if doing a --dryrun, merely print it out. */
src/sqlite/shell.c:27899
↓ 8 callersFunctionfreeText
src/sqlite/shell.c:1536
↓ 8 callersFunctionidxPrepareStmt
** Prepare an SQL statement. */
src/sqlite/shell.c:12694
↓ 8 callersFunctionoutput_c_string
** Output the given string as a quoted according to C or TCL quoting rules. */
src/sqlite/shell.c:21903
↓ 8 callersFunctionshell_exec
** Execute a statement or set of statements. Print ** any result rows/columns depending on the current mode ** set via the supplied callback. ** ** T
src/sqlite/shell.c:24478
↓ 7 callersFunctionadd64
** Add or substract an unsigned 64-bit integer from a signed 64-bit integer ** and return the new signed 64-bit integer. */
src/sqlite/shell.c:5789
↓ 7 callersFunctiondecimalNewFromText
** Allocate a new Decimal object initialized to the text in zIn[]. ** Return NULL if any kind of error occurs. */
src/sqlite/shell.c:3665
↓ 7 callersFunctiondisplayStatLine
** Display a single line of status using 64-bit values. */
src/sqlite/shell.c:23182
↓ 7 callersFunctionidxPrintfPrepareStmt
** Prepare an SQL statement using the results of a printf() formatting. */
src/sqlite/shell.c:12711
↓ 7 callersFunctionre_free
Free and reclaim all the memory used by a previously compiled ** regular expression. Applications should invoke this routine once ** for every call t
src/sqlite/shell.c:7180
↓ 7 callersFunctionrecoverError
** Set the error code and error message for the recover handle passed as ** the first argument. The error code is set to the value of parameter ** err
src/sqlite/shell.c:18696
↓ 7 callersFunctionrecoverGetU16
** Decode and return an unsigned 16-bit big-endian integer value from ** buffer a[]. */
src/sqlite/shell.c:20381
↓ 7 callersFunctionshell_out_of_memory
Indicate out-of-memory and exit. */
src/sqlite/shell.c:997
↓ 7 callersFunctionshell_strncpy
This is variant of the standard-library strncpy() routine with the ** one change that the destination string is always zero-terminated, even ** if the
src/sqlite/shell.c:895
↓ 7 callersFunctionstrappend
** Append to a buffer. */
src/sqlite/shell.c:16182
↓ 6 callersFunctionclosedir
** Close a previously opened directory */
src/sqlite/shell.c:1850
↓ 6 callersFunctiondb_int
** Run an SQL command and return the single integer result. */
src/sqlite/shell.c:26606
↓ 6 callersFunctiondecimal_result
** Make the given Decimal the result. */
src/sqlite/shell.c:3842
↓ 6 callersFunctionecho_group_input
src/sqlite/shell.c:32534
↓ 6 callersFunctionimport_append_char
Append a single byte to z[] */
src/sqlite/shell.c:26179
↓ 6 callersFunctionoutput_reset
** Change the output file back to stdout. ** ** If the p->doXdgOpen flag is set, that means the output was being ** redirected to a temporary file nam
src/sqlite/shell.c:26558
↓ 6 callersFunctionprocess_input
** Read input from *in and process it. If *in==0 then input ** is interactive - the user is typing it it. Otherwise, input ** is coming from a file
src/sqlite/shell.c:32583
↓ 6 callersFunctionre_hex
Return true if c is a hexadecimal digit character: [0-9a-fA-F] ** If c is a hex digit, also set *pV = (*pV)*16 + valueof(c). If ** c is not a hex di
src/sqlite/shell.c:6937
↓ 6 callersFunctionshellEmitError
** Print the given string as an error message. */
src/sqlite/shell.c:26836
↓ 6 callersFunctionspan64
** Computed the difference between two 64-bit signed integers using a ** convoluted computation designed to work around the silly restriction ** again
src/sqlite/shell.c:5780
↓ 6 callersFunctionsqlite3_fgets
** Work-alike for fgets() from the standard C library. */
src/sqlite/shell.c:463
↓ 6 callersFunctionstrlenChar
** Return the length of a string in characters. Multibyte UTF8 characters ** count as a single character for single-width characters, or as two ** ch
src/sqlite/shell.c:1312
↓ 6 callersFunctionsub64
src/sqlite/shell.c:5794
↓ 6 callersFunctiontimeDiff
Return the difference of two time_structs in seconds */
src/sqlite/shell.c:715
↓ 6 callersFunctionzipfileEntryFree
** Free the ZipfileEntry structure indicated by the only argument. */
src/sqlite/shell.c:10193
↓ 5 callersFunctioncli_wcwidth
** Return an estimate of the width, in columns, for the single Unicode ** character c. For normal characters, the answer is always 1. But the ** est
src/sqlite/shell.c:1116
↓ 5 callersFunctiondecodeUtf8
** Compute the value and length of a multi-byte UTF-8 character that ** begins at z[0]. Return the length. Write the Unicode value into *pU. ** **
src/sqlite/shell.c:1146
↓ 5 callersFunctionfsdirSetErrmsg
** Set the error message for the virtual table associated with cursor ** pCur to the results of vprintf(zFmt, ...). */
src/sqlite/shell.c:8180
↓ 5 callersFunctionhexDigitValue
** Return the value of a hexadecimal digit. Return -1 if the input ** is not a hex digit. */
src/sqlite/shell.c:1455
↓ 5 callersFunctionintckPrepare
** If the handle passed as the first argument is already in the error state, ** then this function is a no-op (returns NULL immediately). Otherwise, i
src/sqlite/shell.c:14860
↓ 5 callersFunctionintckPrepareFmt
** If the handle passed as the first argument is already in the error state, ** then this function is a no-op (returns NULL immediately). Otherwise, i
src/sqlite/shell.c:14882
↓ 5 callersFunctionoutput_quoted_string
** Output the given string as a quoted string using SQL quoting conventions: ** ** (1) Single quotes (') within the string are doubled ** (2)
src/sqlite/shell.c:21765
↓ 5 callersFunctionprint_row_separator
** Print a markdown or table-style row separator using ascii-art */
src/sqlite/shell.c:22476
↓ 5 callersFunctionre_insert
Insert a new opcode and argument into an RE under construction. The ** insertion point is just prior to existing opcode iBefore. */
src/sqlite/shell.c:6904
↓ 5 callersFunctionrecoverMalloc
** This function is a no-op if the recover handle passed as the first ** argument already contains an error (if p->errCode!=SQLITE_OK). ** ** Otherw
src/sqlite/shell.c:18669
↓ 5 callersFunctionsetCrlfMode
** Set output mode to text or binary for Windows. */
src/sqlite/shell.c:21715
↓ 5 callersFunctionshellFinalize
** Finalize the prepared statement created using shellPreparePrintf(). */
src/sqlite/shell.c:27348
↓ 5 callersFunctionsqlite3_fsetmode
** Set the mode for an output stream. mode argument is typically _O_BINARY or ** _O_TEXT. */
src/sqlite/shell.c:609
↓ 5 callersFunctionzipfileReadData
** Read nRead bytes of data from offset iOff of file pFile into buffer ** aRead[]. Return SQLITE_OK if successful, or an SQLite error code ** otherwis
src/sqlite/shell.c:10317
↓ 5 callersFunctionzipfileTableErr
** Set the error message for the virtual table associated with cursor ** pCsr to the results of vprintf(zFmt, ...). */
src/sqlite/shell.c:10292
↓ 4 callersFunctionbind_prepared_stmt
** Bind parameters on a prepared statement. ** ** Parameter bindings are taken from a TEMP table of the form: ** ** CREATE TEMP TABLE sqlite_parame
src/sqlite/shell.c:23679
↓ 4 callersFunctionclearTempFile
** Try to delete the temporary file (if there is one) and free the ** memory used to hold the name of the temp file. */
src/sqlite/shell.c:27012
↓ 4 callersFunctiondbdataGetVarintU32
** Like dbdataGetVarint(), but set the output to 0 if it is less than 0 ** or greater than 0xFFFFFFFF. This can be used for all varints in an ** SQLit
src/sqlite/shell.c:17722
↓ 4 callersFunctiondecimalMul
** Multiply A by B. A := A * B ** ** All significant digits after the decimal point are retained. ** Trailing zeros after the decimal point are omit
src/sqlite/shell.c:4130
↓ 4 callersFunctiondecimal_add
** Add the value pB into pA. A := A + B. ** ** Both pA and pB might become denormalized by this routine. */
src/sqlite/shell.c:4057
↓ 4 callersFunctioneqp_render
** Display and reset the EXPLAIN QUERY PLAN data */
src/sqlite/shell.c:22418
↓ 4 callersFunctionfind_home_dir
** Return a pathname which is the user's home directory. A ** 0 return indicates an error of some kind. */
src/sqlite/shell.c:32705
↓ 4 callersFunctionget_uint32
src/sqlite/shell.c:17648
↓ 4 callersFunctionidxFindConstraint
** Return true if list pList (linked by IdxConstraint.pLink) contains ** a constraint compatible with *p. Otherwise return false. */
src/sqlite/shell.c:13421
next →1–100 of 809, ranked by callers