Searched defs:zFile (Results 1 - 4 of 4) sorted by relevance

/external/sqlite/dist/orig/
H A Dshell.c1899 const char *zFile; local
1901 zFile = (const char*)sqlite3_value_text(argv[0]);
1902 if( zFile==0 ) return;
1903 out = fopen(zFile, "wb");
2096 static FILE *output_file_open(const char *zFile){ argument
2098 if( strcmp(zFile,"stdout")==0 ){
2100 }else if( strcmp(zFile, "stderr")==0 ){
2102 }else if( strcmp(zFile, "off")==0 ){
2105 f = fopen(zFile, "wb");
2107 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);
2139 const char *zFile; /* Name of the input file */ member in struct:ImportCtx
2948 char *zFile; /* Name of file to extra content from */ local
3271 const char *zFile, *zProc; local
3295 const char *zFile = azArg[1]; local
3370 const char *zFile = nArg>=2 ? azArg[1] : "stdout"; local
3411 sqlite3_snprintf(sizeof(p->outfile), p->outfile, "%s", zFile); local
[all...]
H A Dsqlite3.c3227 SQLITE_API int SQLITE_STDCALL sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault);
5551 ** [SQLite extension] library contained in the file zFile. If
5581 const char *zFile, /* Name of the shared library containing extension */
5582 const char *zProc, /* Entry point. Derived from zFile if 0 */
16728 const char *zFile,
16737 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
25767 static int posixOpen(const char *zFile, int flags, int mode){ argument
25768 return open(zFile, flags, mode);
16726 sqlite3OsOpenMalloc( sqlite3_vfs *pVfs, const char *zFile, sqlite3_file **ppFile, int flags, int *pOutFlags ) argument
29926 const char *zFile = pShmNode->zFilename; local
66876 char const *zFile = sqlite3BtreeGetJournalname(pBt); local
90023 const char *zFile; local
97801 const char *zFile = (const char *)sqlite3_value_text(argv[0]); local
102775 sqlite3LoadExtension( sqlite3 *db, const char *zFile, const char *zProc, char **pzErrMsg ) argument
102914 sqlite3_load_extension( sqlite3 *db, const char *zFile, const char *zProc, char **pzErrMsg ) argument
130411 char *zFile; local
[all...]
/external/sqlite/dist/
H A Dshell.c1905 const char *zFile; local
1907 zFile = (const char*)sqlite3_value_text(argv[0]);
1908 if( zFile==0 ) return;
1909 out = fopen(zFile, "wb");
2118 static FILE *output_file_open(const char *zFile){ argument
2120 if( strcmp(zFile,"stdout")==0 ){
2122 }else if( strcmp(zFile, "stderr")==0 ){
2124 }else if( strcmp(zFile, "off")==0 ){
2127 f = fopen(zFile, "wb");
2129 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);
2161 const char *zFile; /* Name of the input file */ member in struct:ImportCtx
2970 char *zFile; /* Name of file to extra content from */ local
3293 const char *zFile, *zProc; local
3317 const char *zFile = azArg[1]; local
3392 const char *zFile = nArg>=2 ? azArg[1] : "stdout"; local
3433 sqlite3_snprintf(sizeof(p->outfile), p->outfile, "%s", zFile); local
[all...]
H A Dsqlite3.c3227 SQLITE_API int SQLITE_STDCALL sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault);
5551 ** [SQLite extension] library contained in the file zFile. If
5581 const char *zFile, /* Name of the shared library containing extension */
5582 const char *zProc, /* Entry point. Derived from zFile if 0 */
16728 const char *zFile,
16737 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
25774 static int posixOpen(const char *zFile, int flags, int mode){ argument
25775 return open(zFile, flags, mode);
16726 sqlite3OsOpenMalloc( sqlite3_vfs *pVfs, const char *zFile, sqlite3_file **ppFile, int flags, int *pOutFlags ) argument
29944 const char *zFile = pShmNode->zFilename; local
66894 char const *zFile = sqlite3BtreeGetJournalname(pBt); local
90041 const char *zFile; local
97819 const char *zFile = (const char *)sqlite3_value_text(argv[0]); local
102793 sqlite3LoadExtension( sqlite3 *db, const char *zFile, const char *zProc, char **pzErrMsg ) argument
102932 sqlite3_load_extension( sqlite3 *db, const char *zFile, const char *zProc, char **pzErrMsg ) argument
130429 char *zFile; local
[all...]

Completed in 600 milliseconds