MCPcopy Create free account

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

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

↓ 2 callersFunctionidxHashString
** Return the index of the hash bucket that the string specified by the ** arguments to this function belongs. */
src/sqlite/shell.c:12586
↓ 2 callersFunctionidxNewConstraint
** Allocate and return a new IdxConstraint object. Set the IdxConstraint.zColl ** variable to point to a copy of nul-terminated string zColl. */
src/sqlite/shell.c:12667
↓ 2 callersFunctionidxScanFree
** Free all elements of the linked list starting from pScan up until pLast ** (pLast is not freed). */
src/sqlite/shell.c:13499
↓ 2 callersFunctionidxStatementFree
** Free all elements of the linked list starting from pStatement up ** until pLast (pLast is not freed). */
src/sqlite/shell.c:13515
↓ 2 callersFunctionintckExec
** Execute SQL statement zSql. There is no way to obtain any results ** returned by the statement. This function uses the sqlite3_intck error ** code
src/sqlite/shell.c:14923
↓ 2 callersFunctionintckSaveErrmsg
** Some error has occurred while using database p->db. Save the error message ** and error code currently held by the database handle in p->rc and p->
src/sqlite/shell.c:14846
↓ 2 callersFunctionintckStep
** If there is already an error in handle p, return it. Otherwise, call ** sqlite3_step() on the statement handle and return that value. */
src/sqlite/shell.c:14913
↓ 2 callersFunctionisNumber
** Determines if a string is a number of not. */
src/sqlite/shell.c:1273
↓ 2 callersFunctionlocal_getline
** This routine reads a line of text from FILE in, stores ** the text in memory obtained from malloc() and returns a pointer ** to the text. NULL is
src/sqlite/shell.c:1371
↓ 2 callersFunctionlockName
** Return the name of a lock. */
src/sqlite/shell.c:16312
↓ 2 callersFunctionoutput_csv
** Output a single term of CSV. Actually, p->colSeparator is used for ** the separator, which may or may not be a comma. p->nullValue is ** the null
src/sqlite/shell.c:22144
↓ 2 callersFunctionoutput_hex_blob
** Output the given string as a hex-encoded blob (eg. X'1234' ) */
src/sqlite/shell.c:21730
↓ 2 callersFunctionoutput_html_string
** Output the given string with characters that are special to ** HTML escaped. */
src/sqlite/shell.c:22084
↓ 2 callersFunctionoutput_quoted_escaped_string
** Output the given string as a quoted string using SQL quoting conventions. ** Additionallly , escape the "\n" and "\r" characters so that they do no
src/sqlite/shell.c:21834
↓ 2 callersFunctionprint_box_line
Draw horizontal line N characters long using unicode box ** characters */
src/sqlite/shell.c:23789
↓ 2 callersFunctionputcs
src/sqlite/shell.c:4968
↓ 2 callersFunctionquickscan
** Scan line for classification to guide shell's handling. ** The scan is resumable for subsequent lines when prior ** return values are passed as the
src/sqlite/shell.c:32280
↓ 2 callersFunctionre_compile
** Compile a textual regular expression in zIn[] into a compiled regular ** expression suitable for us by re_match() and return a pointer to the ** co
src/sqlite/shell.c:7203
↓ 2 callersFunctionre_copy
Make a copy of N opcodes starting at iStart onto the end of the RE ** under construction. */
src/sqlite/shell.c:6926
↓ 2 callersFunctionre_digit_char
Return true if c is a "digit" character: [0-9] */
src/sqlite/shell.c:6725
↓ 2 callersFunctionre_maxlen
** Compute a reasonable limit on the length of the REGEXP NFA. */
src/sqlite/shell.c:7280
↓ 2 callersFunctionre_space_char
Return true if c is a perl "space" character: [ \t\r\n\v\f] */
src/sqlite/shell.c:6730
↓ 2 callersFunctionre_subcompile_re
Compile RE text into a sequence of opcodes. Continue up to the ** first unmatched ")" character, then return. If an error is found, ** return a poin
src/sqlite/shell.c:7003
↓ 2 callersFunctionre_subcompile_string
Compile an element of regular expression text (anything that can be ** an operand to the "|" operator). Return NULL on success or a pointer ** to the
src/sqlite/shell.c:7025
↓ 2 callersFunctionreadFile
** Read the content of file zName into memory obtained from sqlite3_malloc64() ** and return a pointer to the buffer. The caller is responsible for fr
src/sqlite/shell.c:25372
↓ 2 callersFunctionreadFileContents
** Set the result stored by context ctx to a blob containing the ** contents of file zName. Or, leave the result unchanged (NULL) ** if the file doe
src/sqlite/shell.c:7628
↓ 2 callersFunctionrecoverAssertMutexHeld
src/sqlite/shell.c:18644
↓ 2 callersFunctionrecoverBindValue
** Bind the value pVal to parameter iBind of statement pStmt. Leave an ** error in the recover handle passed as the first argument if an error ** (e.g
src/sqlite/shell.c:18886
↓ 2 callersFunctionrecoverFinalCleanup
** Free all resources allocated as part of sqlite3_recover_step() calls. */
src/sqlite/shell.c:20351
↓ 2 callersFunctionrecoverGetVarint
** Decode an SQLite varint from buffer a[]. Write the decoded value to (*pVal) ** and return the number of bytes consumed. */
src/sqlite/shell.c:20397
↓ 2 callersFunctionrecoverInit
** This is a worker function that does the heavy lifting for both init ** functions: ** ** sqlite3_recover_init() ** sqlite3_recover_init_sql(
src/sqlite/shell.c:21048
↓ 2 callersFunctionrecoverPageCount
** This function is a no-op if recover handle p already contains an error ** (if p->errCode!=SQLITE_OK). Zero is returned in this case. ** ** Otherwis
src/sqlite/shell.c:18936
↓ 2 callersFunctionrecoverPutU16
** Write value v to buffer a[] as a 16-bit big-endian unsigned integer. */
src/sqlite/shell.c:20557
↓ 2 callersFunctionrecoverPutU32
** Write value v to buffer a[] as a 32-bit big-endian unsigned integer. */
src/sqlite/shell.c:20565
↓ 2 callersFunctionrecoverUnusedString
** Find a string that is not found anywhere in z[]. Return a pointer ** to that string. ** ** Try to use zA and zB first. If both of those are alrea
src/sqlite/shell.c:19072
↓ 2 callersFunctionrecoverWriteDataCleanup
** Clean up resources allocated by recoverWriteDataInit() (stuff in ** sqlite3_recover.w1). */
src/sqlite/shell.c:20040
↓ 2 callersFunctionregisterUDFs
** Register UDFs from user database with another. */
src/sqlite/shell.c:14311
↓ 2 callersFunctionresolve_backslashes
** Do C-language style dequoting. ** ** \a -> alarm ** \b -> backspace ** \t -> tab ** \n -> newline ** \v -> vertical t
src/sqlite/shell.c:25959
↓ 2 callersFunctionrunOneSqlLine
** Run a single line of SQL. Return the number of errors. */
src/sqlite/shell.c:32485
↓ 2 callersFunctionsave_err_msg
** Allocate space and save off string indicating current error. */
src/sqlite/shell.c:23120
↓ 2 callersFunctionsayHelp
src/sqlite/shell.c:4917
↓ 2 callersFunctionscanStatsHeight
src/sqlite/shell.c:23373
↓ 2 callersFunctionseriesFloor
src/sqlite/shell.c:5965
↓ 2 callersFunctionseriesSteps
** Return the number of steps between pCur->iBase and pCur->iTerm if ** the step width is pCur->iStep. */
src/sqlite/shell.c:5949
↓ 2 callersFunctionsession_close
** Close a single OpenSession object and release all of its associated ** resources. */
src/sqlite/shell.c:25410
↓ 2 callersFunctionsetOrClearFlag
** Set or clear a shell flag according to a boolean value. */
src/sqlite/shell.c:26038
↓ 2 callersFunctionset_table_name
** Set the destination table field of the ShellState structure to ** the name of the table given. Escape any quote characters in the ** table name. *
src/sqlite/shell.c:23005
↓ 2 callersFunctionsha3UpdateFromValue
** Update a SHA3Context using a single sqlite3_value. */
src/sqlite/shell.c:2861
↓ 2 callersFunctionshellFakeSchema
** Construct a fake object name and column list to describe the structure ** of the view, virtual table, or table valued function zSchema.zName. ** **
src/sqlite/shell.c:1610
↓ 2 callersFunctionshellPrepare
src/sqlite/shell.c:27302
↓ 2 callersFunctionshellReset
Reset the prepared statement created using shellPreparePrintf(). ** ** This routine is could be marked "static". But it is not always used, ** depend
src/sqlite/shell.c:27371
↓ 2 callersFunctionshell_callback
** This is the callback routine that the shell ** invokes for each row of a query result. */
src/sqlite/shell.c:22498
↓ 2 callersFunctionshell_error_context
** Maybe construct two lines of text that point out the position of a ** syntax error. Return a pointer to the text, in memory obtained from ** sqlit
src/sqlite/shell.c:23028
↓ 2 callersFunctionsqlite3_expert_destroy
** Free an sqlite3expert object. */
src/sqlite/shell.c:14592
↓ 2 callersFunctionsqlite3_fileio_init
src/sqlite/shell.c:8553
↓ 2 callersFunctionsqlite3_intck_close
** Free the integrity-check object. */
src/sqlite/shell.c:15598
↓ 2 callersFunctionsqlite3_sqlar_init
src/sqlite/shell.c:12177
↓ 2 callersFunctiontoBase85
Encode a byte buffer into base85 text. If pSep!=0, it's a C string ** to be appended to encoded groups to limit their length to B85_DARK_MAX ** or to
src/sqlite/shell.c:4978
↓ 2 callersFunctiontoggleSelectOrder
** Toggle the reverse_unordered_selects setting. */
src/sqlite/shell.c:24744
↓ 2 callersFunctiontranslateForDisplayAndDup
** z[] is a line of text that is to be displayed the .mode box or table or ** similar tabular formats. z[] might contain control characters such ** a
src/sqlite/shell.c:23836
↓ 2 callersFunctiontryToCloneSchema
** Try to transfer all rows of the schema that match zWhere. For ** each row, invoke xForEach() on the object defined by that row. ** If an error is
src/sqlite/shell.c:26428
↓ 2 callersFunctionvfstrace_errcode_name
** Try to convert an error code into a symbolic name for that error code. */
src/sqlite/shell.c:16096
↓ 2 callersFunctionwriteFile
** This function does the work for the writefile() UDF. Refer to ** header comments at the top of this file for details. */
src/sqlite/shell.c:7858
↓ 2 callersFunctionzAutoColumn
src/sqlite/shell.c:28309
↓ 2 callersFunctionzSkipValidUtf8
Skip over as much z[] input char sequence as is valid UTF-8, ** limited per nAccept char's or whole characters and containing ** no char cn such that
src/sqlite/shell.c:21871
↓ 2 callersFunctionzipfileAddEntry
** Add object pNew to the linked list that begins at ZipfileTab.pFirstEntry ** and ends with pLastEntry. If argument pBefore is NULL, then pNew is ad
src/sqlite/shell.c:11022
↓ 2 callersFunctionzipfileCtxErrorMsg
** Set the error message contained in context ctx to the results of ** vprintf(zFmt, ...). */
src/sqlite/shell.c:10101
↓ 2 callersFunctionzipfileCursorErr
src/sqlite/shell.c:10299
↓ 2 callersFunctionzipfileDeflate
** Buffer aIn (size nIn bytes) contains uncompressed data. This function ** compresses it and sets (*ppOut) to point to a buffer containing the ** com
src/sqlite/shell.c:10810
↓ 2 callersFunctionzipfileGetEntry
** If aBlob is not NULL, then it is a pointer to a buffer (nBlob bytes in ** size) containing an entire zip archive image. Or, if aBlob is NULL, ** th
src/sqlite/shell.c:10606
↓ 2 callersFunctionzipfileGetMode
src/sqlite/shell.c:11232
↓ 2 callersFunctionzipfileGetTime
** Return a 32-bit timestamp in UNIX epoch format. ** ** If the value passed as the only argument is either NULL or an SQL NULL, ** return the current
src/sqlite/shell.c:11345
↓ 2 callersFunctionzipfileGetU32
** Read and return a 32-bit little-endian unsigned integer from buffer aBuf. */
src/sqlite/shell.c:10362
↓ 2 callersFunctionzipfileLoadDirectory
src/sqlite/shell.c:11045
↓ 2 callersFunctionzipfileMtimeToDos
** The opposite of zipfileMtime(). This function populates the mTime and ** mDate fields of the CDS structure passed as the first argument according *
src/sqlite/shell.c:10549
↓ 2 callersFunctionzipfileNext
** Advance an ZipfileCsr to its next row of output. */
src/sqlite/shell.c:10718
↓ 2 callersFunctionzipfileReadEOCD
** If aBlob is not NULL, then it points to a buffer nBlob bytes in size ** containing an entire zip archive image. Or, if aBlob is NULL, then pFile **
src/sqlite/shell.c:10958
↓ 2 callersFunctionzipfileRemoveEntryFromList
** Unless it is NULL, entry pOld is currently part of the pTab->pFirstEntry ** linked list. Remove it from the list and free the object. */
src/sqlite/shell.c:11356
↓ 2 callersFunctionzipfileResetCursor
** Reset a cursor back to the state it was in when first returned ** by zipfileOpen(). */
src/sqlite/shell.c:10253
↓ 2 callersFunctionzipfileSerializeCDS
** Serialize the CDS structure into buffer aBuf[]. Return the number ** of bytes written. */
src/sqlite/shell.c:11600
↓ 2 callersFunctionzipfileSerializeEOCD
src/sqlite/shell.c:11576
↓ 2 callersFunctionzipfileSerializeLFH
src/sqlite/shell.c:11179
↓ 1 callersFunctionUseBinaryWText
** Determine if simulated binary mode should be used for output to fd */
src/sqlite/shell.c:401
↓ 1 callersFunctionapndIsAppendvfsDatabase
** Check to see if the file is an appendvfs SQLite database file. ** Return true iff it is such. Parameter sz is the file's size. */
src/sqlite/shell.c:9567
↓ 1 callersFunctionapndIsOrdinaryDatabaseFile
** Check to see if the file is an ordinary SQLite database file. ** Return true iff so. Parameter sz is the file's size. */
src/sqlite/shell.c:9592
↓ 1 callersFunctionarExtractCommand
** Implementation of .ar "eXtract" command. */
src/sqlite/shell.c:27827
↓ 1 callersFunctionarListCommand
** Implementation of .ar "lisT" command. */
src/sqlite/shell.c:27749
↓ 1 callersFunctionarParseCommand
** Parse the command line for an ".ar" command. The results are written into ** structure (*pAr). SQLITE_OK is returned if the command line is parsed
src/sqlite/shell.c:27505
↓ 1 callersFunctionarRemoveCommand
** Implementation of .ar "Remove" command. */
src/sqlite/shell.c:27786
↓ 1 callersFunctioncallback
** This is the callback routine that the SQLite library ** invokes for each row of a query result. */
src/sqlite/shell.c:22929
↓ 1 callersFunctioncompletionNext
** Advance a completion_cursor to its next row of output. ** ** The ->ePhase, ->j, and ->pStmt fields of the completion_cursor object ** record the cu
src/sqlite/shell.c:8786
↓ 1 callersFunctioncreateSelftestTable
** Generate an appropriate SELFTEST table in the main database. */
src/sqlite/shell.c:22954
↓ 1 callersFunctiondbdataBufferFree
** Release the allocation managed by buffer pBuf. */
src/sqlite/shell.c:17482
↓ 1 callersFunctiondbdataBufferSize
** Ensure the buffer passed as the first argument is at least nMin bytes ** in size. If an error occurs while attempting to resize the buffer, ** SQLI
src/sqlite/shell.c:17467
↓ 1 callersFunctiondbdataDbsize
** Determine the size in pages of database zSchema (where zSchema is ** "main", "temp" or the name of an attached database) and set ** pCsr->szDb acc
src/sqlite/shell.c:18094
↓ 1 callersFunctiondbdataGetEncoding
** Attempt to figure out the encoding of the database by retrieving page 1 ** and inspecting the header field. If successful, set the pCsr->enc variab
src/sqlite/shell.c:18123
↓ 1 callersFunctiondbdataNext
** Move an sqlite_dbdata or sqlite_dbptr cursor to the next entry. */
src/sqlite/shell.c:17856
↓ 1 callersFunctiondbdataValue
** Load a value of type eType from buffer pData and use it to set the ** result of context object pCtx. */
src/sqlite/shell.c:17764
↓ 1 callersFunctiondisable_debug_trace_modes
src/sqlite/shell.c:23637
↓ 1 callersFunctiondisplayLinuxIoStats
** Attempt to display I/O stats on Linux using /proc/PID/io */
src/sqlite/shell.c:23147
← previousnext →201–300 of 809, ranked by callers