Lines Matching refs:zValue
7082 void *zValue /* New value for directory being set or reset */
7084 SQLITE_API int sqlite3_win32_set_directory8(unsigned long type, const char *zValue);
7085 SQLITE_API int sqlite3_win32_set_directory16(unsigned long type, const void *zValue);
49168 const char *zValue /* New value for directory being set or reset */ in sqlite3_win32_set_directory8() argument
49188 if( zValue && zValue[0] ){ in sqlite3_win32_set_directory8()
49189 zCopy = sqlite3_mprintf("%s", zValue); in sqlite3_win32_set_directory8()
49212 const void *zValue /* New value for directory being set or reset */ in sqlite3_win32_set_directory16() argument
49216 if( zValue ){ in sqlite3_win32_set_directory16()
49217 zUtf8 = sqlite3_win32_unicode_to_utf8(zValue); in sqlite3_win32_set_directory16()
49234 void *zValue /* New value for directory being set or reset */ in sqlite3_win32_set_directory() argument
49236 return sqlite3_win32_set_directory16(type, zValue); in sqlite3_win32_set_directory()
140895 const char *zValue /* Value to be returned */
140897 if( zValue ){
140898 sqlite3VdbeLoadString(v, 1, (const char*)zValue);
189868 char *zValue;
189877 zValue = sqlite3_mprintf("%s", &zCsr[1]);
189878 if( zValue ){
189879 sqlite3Fts3Dequote(zValue);
189881 *pzValue = zValue;
221783 static const signed char zValue[] = {
221797 while( (c = zValue[0x7f&*(z++)])>=0 ){