Searched defs:pBlob (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbeblob.c157 Incrblob *pBlob = 0; local
164 pBlob = (Incrblob *)sqlite3DbMallocZero(db, sizeof(Incrblob));
165 if( !pBlob ) goto blob_open_out;
253 pBlob->pStmt = (sqlite3_stmt *)sqlite3VdbeCreate(db);
254 assert( pBlob->pStmt || db->mallocFailed );
255 if( pBlob->pStmt ){
256 Vdbe *v = (Vdbe *)pBlob->pStmt;
304 pBlob->flags = flags;
305 pBlob->iCol = iCol;
306 pBlob
334 sqlite3_blob_close(sqlite3_blob *pBlob) argument
354 blobReadWrite( sqlite3_blob *pBlob, void *z, int n, int iOffset, int (*xCall)(BtCursor*, u32, u32, void*) ) argument
404 sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset) argument
411 sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset) argument
421 sqlite3_blob_bytes(sqlite3_blob *pBlob) argument
436 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
[all...]
H A Dfunc.c912 const unsigned char *pBlob; local
916 pBlob = sqlite3_value_blob(argv[0]);
918 assert( pBlob==sqlite3_value_blob(argv[0]) ); /* No encoding change */
921 for(i=0; i<n; i++, pBlob++){
922 unsigned char c = *pBlob;
H A Dshell.c477 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){ argument
479 char *zBlob = (char *)pBlob;
811 const void *pBlob = sqlite3_column_blob(p->pStmt, i); local
814 output_hex_blob(p->out, pBlob, nBlob);
H A Dtclsqlite.c141 sqlite3_blob *pBlob; /* sqlite3 blob handle */ member in struct:IncrblobChannel
185 int rc = sqlite3_blob_close(p->pBlob);
223 nBlob = sqlite3_blob_bytes(p->pBlob);
231 rc = sqlite3_blob_read(p->pBlob, (void *)buf, nRead, p->iSeek);
255 nBlob = sqlite3_blob_bytes(p->pBlob);
264 rc = sqlite3_blob_write(p->pBlob, (void *)buf, nWrite, p->iSeek);
293 p->iSeek = sqlite3_blob_bytes(p->pBlob) + offset;
342 sqlite3_blob *pBlob; local
350 rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob);
358 p->pBlob
[all...]
H A Dtest1.c1631 sqlite3_blob *pBlob; local
1639 if( blobHandleFromObj(interp, objv[1], &pBlob) ) return TCL_ERROR;
1640 nByte = sqlite3_blob_bytes(pBlob);
1655 sqlite3_blob *pBlob; local
1662 if( blobHandleFromObj(interp, objv[1], &pBlob) ) return TCL_ERROR;
1663 sqlite3_blob_close(pBlob);
1689 sqlite3_blob *pBlob; local
1700 if( blobHandleFromObj(interp, objv[1], &pBlob) ) return TCL_ERROR;
1710 rc = sqlite3_blob_read(pBlob, zBuf, nByte, iOffset);
1741 sqlite3_blob *pBlob; local
1777 sqlite3_blob *pBlob; local
4039 const void *pBlob; local
[all...]
/external/opencv/cvaux/include/
H A Dcvvidsurv.hpp749 virtual void AddBlob(CvBlob* pBlob) = 0;
773 /* pBlob - pointer to structure with blob parameters (ID is ignored)*/
777 virtual CvBlob* AddBlob(CvBlob* pBlob, IplImage* pImg, IplImage* pImgFG = NULL ) = 0;
796 virtual void ProcessBlob(int BlobIndex, CvBlob* pBlob, IplImage* /*pImg*/, IplImage* /*pImgFG*/ = NULL) argument
800 assert(pBlob);
801 //pBlob->ID;
804 pBlob[0] = pB[0];
805 pBlob->ID = ID;
809 virtual double GetConfidence(int /*BlobIndex*/, CvBlob* /*pBlob*/, IplImage* /*pImg*/, IplImage* /*pImgFG*/ = NULL)
827 virtual void UpdateBlob(int /*BlobIndex*/, CvBlob* /*pBlob*/, IplImag
863 SetBlobByID(int BlobID, CvBlob* pBlob) argument
865 SetBlob(GetBlobIndexByID(BlobID),pBlob); local
[all...]
/external/sqlite/dist/orig/
H A Dshell.c495 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){ argument
497 char *zBlob = (char *)pBlob;
828 const void *pBlob = sqlite3_column_blob(p->pStmt, i); local
831 output_hex_blob(p->out, pBlob, nBlob);
H A Dsqlite3.c71330 Incrblob *pBlob = 0; local
71510 sqlite3_blob_close(sqlite3_blob *pBlob) argument
71530 blobReadWrite( sqlite3_blob *pBlob, void *z, int n, int iOffset, int (*xCall)(BtCursor*, u32, u32, void*) ) argument
71580 sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset) argument
71587 sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset) argument
71597 sqlite3_blob_bytes(sqlite3_blob *pBlob) argument
71612 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
87056 const unsigned char *pBlob; local
125180 sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */ member in struct:Fts3SegReader
128012 char *pBlob; /* The BLOB encoding of the document size */ local
128058 char *pBlob; /* Storage for BLOB written into %_stat */ local
133343 RtreeMatchArg *pBlob; local
[all...]
/external/sqlite/dist/
H A Dshell.c500 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){ argument
502 char *zBlob = (char *)pBlob;
833 const void *pBlob = sqlite3_column_blob(p->pStmt, i); local
836 output_hex_blob(p->out, pBlob, nBlob);
H A Dsqlite3.c71358 Incrblob *pBlob = 0; local
71538 sqlite3_blob_close(sqlite3_blob *pBlob) argument
71558 blobReadWrite( sqlite3_blob *pBlob, void *z, int n, int iOffset, int (*xCall)(BtCursor*, u32, u32, void*) ) argument
71608 sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset) argument
71615 sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset) argument
71625 sqlite3_blob_bytes(sqlite3_blob *pBlob) argument
71640 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
87092 const unsigned char *pBlob; local
125228 sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */ member in struct:Fts3SegReader
128060 char *pBlob; /* The BLOB encoding of the document size */ local
128106 char *pBlob; /* Storage for BLOB written into %_stat */ local
133391 RtreeMatchArg *pBlob; local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_write.c2335 char *pBlob; /* The BLOB encoding of the document size */ local
2341 pBlob = sqlite3_malloc( 10*p->nColumn );
2342 if( pBlob==0 ){
2346 fts3EncodeIntArray(p->nColumn, aSz, pBlob, &nBlob);
2349 sqlite3_free(pBlob);
2354 sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, sqlite3_free);
2381 char *pBlob; /* Storage for BLOB written into %_stat */ local
2396 pBlob = (char*)&a[nStat];
2425 fts3EncodeIntArray(nStat, a, pBlob, &nBlob);
2432 sqlite3_bind_blob(pStmt, 1, pBlob, nBlo
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c3183 RtreeMatchArg *pBlob; local
3187 pBlob = (RtreeMatchArg *)sqlite3_malloc(nBlob);
3188 if( !pBlob ){
3192 pBlob->magic = RTREE_GEOMETRY_MAGIC;
3193 pBlob->xGeom = pGeomCtx->xGeom;
3194 pBlob->pContext = pGeomCtx->pContext;
3195 pBlob->nParam = nArg;
3197 pBlob->aParam[i] = sqlite3_value_double(aArg[i]);
3199 sqlite3_result_blob(ctx, pBlob, nBlob, doSqlite3Free);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c68764 Incrblob *pBlob = 0; local
68941 sqlite3_blob_close(sqlite3_blob *pBlob) argument
68961 blobReadWrite( sqlite3_blob *pBlob, void *z, int n, int iOffset, int (*xCall)(BtCursor*, u32, u32, void*) ) argument
69011 sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset) argument
69018 sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset) argument
69028 sqlite3_blob_bytes(sqlite3_blob *pBlob) argument
69043 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
82818 const unsigned char *pBlob; local
122443 char *pBlob; /* The BLOB encoding of the document size */ local
122489 char *pBlob; /* Storage for BLOB written into %_stat */ local
127642 RtreeMatchArg *pBlob; local
[all...]

Completed in 571 milliseconds