Searched refs:pBlob (Results 1 – 4 of 4) sorted by relevance
/external/sqlite/dist/orig/ |
D | sqlite3.c | 87424 Incrblob *pBlob = 0; 87442 pBlob = (Incrblob *)sqlite3DbMallocZero(db, sizeof(Incrblob)); 87445 if( !pBlob ) goto blob_open_out; 87476 pBlob->pTab = pTab; 87477 pBlob->zDb = db->aDb[sqlite3SchemaToIndex(db, pTab->pSchema)].zDbSName; 87534 pBlob->pStmt = (sqlite3_stmt *)sqlite3VdbeCreate(&sParse); 87535 assert( pBlob->pStmt || db->mallocFailed ); 87536 if( pBlob->pStmt ){ 87563 Vdbe *v = (Vdbe *)pBlob->pStmt; 87615 pBlob->iCol = iCol; [all …]
|
D | shell.c | 8214 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){ in output_hex_blob() argument 8216 char *zBlob = (char *)pBlob; in output_hex_blob() 8859 const void *pBlob = sqlite3_column_blob(p->pStmt, i); in shell_callback() local 8861 output_hex_blob(p->out, pBlob, nBlob); in shell_callback() 8897 const void *pBlob = sqlite3_column_blob(p->pStmt, i); in shell_callback() local 8899 output_hex_blob(p->out, pBlob, nBlob); in shell_callback()
|
/external/sqlite/dist/ |
D | sqlite3.c | 87440 Incrblob *pBlob = 0; 87458 pBlob = (Incrblob *)sqlite3DbMallocZero(db, sizeof(Incrblob)); 87461 if( !pBlob ) goto blob_open_out; 87492 pBlob->pTab = pTab; 87493 pBlob->zDb = db->aDb[sqlite3SchemaToIndex(db, pTab->pSchema)].zDbSName; 87550 pBlob->pStmt = (sqlite3_stmt *)sqlite3VdbeCreate(&sParse); 87551 assert( pBlob->pStmt || db->mallocFailed ); 87552 if( pBlob->pStmt ){ 87579 Vdbe *v = (Vdbe *)pBlob->pStmt; 87631 pBlob->iCol = iCol; [all …]
|
D | shell.c | 8220 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){ in output_hex_blob() argument 8222 char *zBlob = (char *)pBlob; in output_hex_blob() 8865 const void *pBlob = sqlite3_column_blob(p->pStmt, i); in shell_callback() local 8867 output_hex_blob(p->out, pBlob, nBlob); in shell_callback() 8903 const void *pBlob = sqlite3_column_blob(p->pStmt, i); in shell_callback() local 8905 output_hex_blob(p->out, pBlob, nBlob); in shell_callback()
|