Home
last modified time | relevance | path

Searched refs:zFile (Results 1 – 3 of 3) sorted by relevance

/minix3/external/public-domain/sqlite/dist/
H A Dshell.c1765 static FILE *output_file_open(const char *zFile){ in output_file_open() argument
1767 if( strcmp(zFile,"stdout")==0 ){ in output_file_open()
1769 }else if( strcmp(zFile, "stderr")==0 ){ in output_file_open()
1771 }else if( strcmp(zFile, "off")==0 ){ in output_file_open()
1774 f = fopen(zFile, "wb"); in output_file_open()
1776 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile); in output_file_open()
1804 const char *zFile; /* Name of the input file */ member
1872 p->zFile, p->nLine, cQuote); in csv_read_one_field()
1876 p->zFile, startLine, cQuote); in csv_read_one_field()
2132 char *zFile = azArg[1]; /* Name of file to extra content from */ in do_meta_command() local
[all …]
H A Dsqlite3.h2893 SQLITE_API int sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault);
5158 const char *zFile, /* Name of the shared library containing extension */
H A Dsqlite3.c2921 SQLITE_API int sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault);
5186 const char *zFile, /* Name of the shared library containing extension */
15728 const char *zFile, in sqlite3OsOpenMalloc() argument
15737 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); in sqlite3OsOpenMalloc()
23929 static int posixOpen(const char *zFile, int flags, int mode){
23930 return open(zFile, flags, mode);
28002 const char *zFile = pShmNode->zFilename;
28003 rc = unixLogError(SQLITE_IOERR_SHMSIZE, "write", zFile);
63369 char const *zFile = sqlite3BtreeGetJournalname(pBt);
63370 if( zFile==0 ){
[all …]