Lines Matching refs:zFilename
291 FILE *sqlite3_fopen(const char *zFilename, const char *zMode);
410 FILE *sqlite3_fopen(const char *zFilename, const char *zMode){ in sqlite3_fopen() argument
415 sz1 = (int)strlen(zFilename); in sqlite3_fopen()
420 sz1 = MultiByteToWideChar(CP_UTF8, 0, zFilename, sz1, b1, sz1); in sqlite3_fopen()
9692 static void *apndDlOpen(sqlite3_vfs*, const char *zFilename);
16429 static void *vfstraceDlOpen(sqlite3_vfs*, const char *zFilename);
27081 const char *zFilename = (const char*)sqlite3_column_text(pStmt, 2); in shell_dbtotxt_command() local
27082 if( zFilename==0 || zFilename[0]==0 ) zFilename = "unk.db"; in shell_dbtotxt_command()
27083 zTail = strrchr(zFilename, '/'); in shell_dbtotxt_command()
27085 if( zTail==0 ) zTail = strrchr(zFilename, '\\'); in shell_dbtotxt_command()
27259 int shellDeleteFile(const char *zFilename){ in shellDeleteFile() argument
27262 wchar_t *z = sqlite3_win32_utf8_to_unicode(zFilename); in shellDeleteFile()
27266 rc = unlink(zFilename); in shellDeleteFile()