Lines Matching refs:apVal

927   sqlite3_value **apVal  in shellModuleSchema()  argument
929 const char *zName = (const char*)sqlite3_value_text(apVal[0]); in shellModuleSchema()
961 sqlite3_value **apVal in shellAddSchemaName() argument
972 const char *zIn = (const char*)sqlite3_value_text(apVal[0]); in shellAddSchemaName()
973 const char *zSchema = (const char*)sqlite3_value_text(apVal[1]); in shellAddSchemaName()
974 const char *zName = (const char*)sqlite3_value_text(apVal[2]); in shellAddSchemaName()
1009 sqlite3_result_value(pCtx, apVal[0]); in shellAddSchemaName()
5911 sqlite3_value **apVal, in zipfileUpdate() argument
5940 if( sqlite3_value_type(apVal[0])!=SQLITE_NULL ){ in zipfileUpdate()
5941 const char *zDelete = (const char*)sqlite3_value_text(apVal[0]); in zipfileUpdate()
5944 const char *zUpdate = (const char*)sqlite3_value_text(apVal[1]); in zipfileUpdate()
5959 if( sqlite3_value_type(apVal[5])!=SQLITE_NULL ){ in zipfileUpdate()
5963 if( sqlite3_value_type(apVal[6])!=SQLITE_NULL ){ in zipfileUpdate()
5969 if( sqlite3_value_type(apVal[7])==SQLITE_NULL ){ in zipfileUpdate()
5975 const u8 *aIn = sqlite3_value_blob(apVal[7]); in zipfileUpdate()
5976 int nIn = sqlite3_value_bytes(apVal[7]); in zipfileUpdate()
5977 int bAuto = sqlite3_value_type(apVal[8])==SQLITE_NULL; in zipfileUpdate()
5979 iMethod = sqlite3_value_int(apVal[8]); in zipfileUpdate()
6004 rc = zipfileGetMode(apVal[3], bIsDir, &mode, &pTab->base.zErrMsg); in zipfileUpdate()
6008 zPath = (const char*)sqlite3_value_text(apVal[2]); in zipfileUpdate()
6011 mTime = zipfileGetTime(apVal[4]); in zipfileUpdate()
6313 void zipfileStep(sqlite3_context *pCtx, int nVal, sqlite3_value **apVal){ in zipfileStep() argument
6351 pName = apVal[0]; in zipfileStep()
6353 pData = apVal[1]; in zipfileStep()
6355 pMode = apVal[1]; in zipfileStep()
6356 pMtime = apVal[2]; in zipfileStep()
6357 pData = apVal[3]; in zipfileStep()
6359 pMethod = apVal[4]; in zipfileStep()
9921 sqlite3_value **apVal in shellPutsFunc() argument
9925 utf8_printf(p->out, "%s\n", sqlite3_value_text(apVal[0])); in shellPutsFunc()
9926 sqlite3_result_value(pCtx, apVal[0]); in shellPutsFunc()
13990 sqlite3_value **apVal in shellFkeyCollateClause() argument
14002 zParent = (const char*)sqlite3_value_text(apVal[0]); in shellFkeyCollateClause()
14003 zParentCol = (const char*)sqlite3_value_text(apVal[1]); in shellFkeyCollateClause()
14004 zChild = (const char*)sqlite3_value_text(apVal[2]); in shellFkeyCollateClause()
14005 zChildCol = (const char*)sqlite3_value_text(apVal[3]); in shellFkeyCollateClause()