OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zFormat
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/public-domain/sqlite/dist/
sqlite3ext.h
304
void (*str_appendf)(sqlite3_str*, const char *
zFormat
, ...);
305
void (*str_vappendf)(sqlite3_str*, const char *
zFormat
, va_list);
sqlite3.h
8877
SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *
zFormat
, ...);
8878
SQLITE_API void sqlite3_str_vappendf(sqlite3_str*, const char *
zFormat
, va_list);
9936
** ^If logging is enabled, the
zFormat
string and subsequent arguments are
9944
** The
zFormat
string must not be NULL.
9952
SQLITE_API void sqlite3_log(int iErrCode, const char *
zFormat
, ...);
shell.c
613
int sqlite3_fprintf(FILE *out, const char *
zFormat
, ...){
622
va_start(ap,
zFormat
);
623
z = sqlite3_vmprintf(
zFormat
, ap);
632
va_start(ap,
zFormat
);
633
rc = vfprintf(out,
zFormat
, ap);
638
int sqlite3_vfprintf(FILE *out, const char *
zFormat
, va_list ap){
645
z = sqlite3_vmprintf(
zFormat
, ap);
652
rc = vfprintf(out,
zFormat
, ap);
1004
const char *
zFormat
, /* Message format (or NULL) */
1011
if(
zFormat
){
[
all
...]
sqlite3.c
9198
SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *
zFormat
, ...);
9199
SQLITE_API void sqlite3_str_vappendf(sqlite3_str*, const char *
zFormat
, va_list);
10257
** ^If logging is enabled, the
zFormat
string and subsequent arguments are
10265
** The
zFormat
string must not be NULL.
10273
SQLITE_API void sqlite3_log(int iErrCode, const char *
zFormat
, ...);
21883
SQLITE_PRIVATE void sqlite3TreeViewLine(TreeView*, const char *
zFormat
, ...);
[
all
...]
Completed in 77 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026