Lines Matching refs:apVal
932 sqlite3_value **apVal in shellModuleSchema() argument
934 const char *zName = (const char*)sqlite3_value_text(apVal[0]); in shellModuleSchema()
966 sqlite3_value **apVal in shellAddSchemaName() argument
977 const char *zIn = (const char*)sqlite3_value_text(apVal[0]); in shellAddSchemaName()
978 const char *zSchema = (const char*)sqlite3_value_text(apVal[1]); in shellAddSchemaName()
979 const char *zName = (const char*)sqlite3_value_text(apVal[2]); in shellAddSchemaName()
1014 sqlite3_result_value(pCtx, apVal[0]); in shellAddSchemaName()
5916 sqlite3_value **apVal, in zipfileUpdate() argument
5945 if( sqlite3_value_type(apVal[0])!=SQLITE_NULL ){ in zipfileUpdate()
5946 const char *zDelete = (const char*)sqlite3_value_text(apVal[0]); in zipfileUpdate()
5949 const char *zUpdate = (const char*)sqlite3_value_text(apVal[1]); in zipfileUpdate()
5964 if( sqlite3_value_type(apVal[5])!=SQLITE_NULL ){ in zipfileUpdate()
5968 if( sqlite3_value_type(apVal[6])!=SQLITE_NULL ){ in zipfileUpdate()
5974 if( sqlite3_value_type(apVal[7])==SQLITE_NULL ){ in zipfileUpdate()
5980 const u8 *aIn = sqlite3_value_blob(apVal[7]); in zipfileUpdate()
5981 int nIn = sqlite3_value_bytes(apVal[7]); in zipfileUpdate()
5982 int bAuto = sqlite3_value_type(apVal[8])==SQLITE_NULL; in zipfileUpdate()
5984 iMethod = sqlite3_value_int(apVal[8]); in zipfileUpdate()
6009 rc = zipfileGetMode(apVal[3], bIsDir, &mode, &pTab->base.zErrMsg); in zipfileUpdate()
6013 zPath = (const char*)sqlite3_value_text(apVal[2]); in zipfileUpdate()
6016 mTime = zipfileGetTime(apVal[4]); in zipfileUpdate()
6318 void zipfileStep(sqlite3_context *pCtx, int nVal, sqlite3_value **apVal){ in zipfileStep() argument
6356 pName = apVal[0]; in zipfileStep()
6358 pData = apVal[1]; in zipfileStep()
6360 pMode = apVal[1]; in zipfileStep()
6361 pMtime = apVal[2]; in zipfileStep()
6362 pData = apVal[3]; in zipfileStep()
6364 pMethod = apVal[4]; in zipfileStep()
9926 sqlite3_value **apVal in shellPutsFunc() argument
9930 utf8_printf(p->out, "%s\n", sqlite3_value_text(apVal[0])); in shellPutsFunc()
9931 sqlite3_result_value(pCtx, apVal[0]); in shellPutsFunc()
14011 sqlite3_value **apVal in shellFkeyCollateClause() argument
14023 zParent = (const char*)sqlite3_value_text(apVal[0]); in shellFkeyCollateClause()
14024 zParentCol = (const char*)sqlite3_value_text(apVal[1]); in shellFkeyCollateClause()
14025 zChild = (const char*)sqlite3_value_text(apVal[2]); in shellFkeyCollateClause()
14026 zChildCol = (const char*)sqlite3_value_text(apVal[3]); in shellFkeyCollateClause()