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/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/sqlite/dist/orig/
H A Dshell.c534 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){ argument
536 char *zBlob = (char *)pBlob;
898 const void *pBlob = sqlite3_column_blob(p->pStmt, i); local
901 output_hex_blob(p->out, pBlob, nBlob);
H A Dsqlite3.c74686 Incrblob *pBlob = 0; local
74866 sqlite3_blob_close(sqlite3_blob *pBlob) argument
74886 blobReadWrite( sqlite3_blob *pBlob, void *z, int n, int iOffset, int (*xCall)(BtCursor*, u32, u32, void*) ) argument
74936 sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset) argument
74943 sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset) argument
74953 sqlite3_blob_bytes(sqlite3_blob *pBlob) argument
74968 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
92727 const unsigned char *pBlob; local
136849 sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */ member in struct:Fts3SegReader
140021 char *pBlob; /* The BLOB encoding of the document size */ local
140067 char *pBlob; /* Storage for BLOB written into %_stat */ local
140371 blobGrowBuffer(Blob *pBlob, int nMin, int *pRc) argument
146122 RtreeMatchArg *pBlob; /* BLOB returned by geometry function */ local
148028 RtreeMatchArg *pBlob; local
[all...]
/external/sqlite/dist/
H A Dshell.c539 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){ argument
541 char *zBlob = (char *)pBlob;
903 const void *pBlob = sqlite3_column_blob(p->pStmt, i); local
906 output_hex_blob(p->out, pBlob, nBlob);
H A Dsqlite3.c74706 Incrblob *pBlob = 0; local
74886 sqlite3_blob_close(sqlite3_blob *pBlob) argument
74906 blobReadWrite( sqlite3_blob *pBlob, void *z, int n, int iOffset, int (*xCall)(BtCursor*, u32, u32, void*) ) argument
74956 sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset) argument
74963 sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset) argument
74973 sqlite3_blob_bytes(sqlite3_blob *pBlob) argument
74988 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
92747 const unsigned char *pBlob; local
136881 sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */ member in struct:Fts3SegReader
140053 char *pBlob; /* The BLOB encoding of the document size */ local
140099 char *pBlob; /* Storage for BLOB written into %_stat */ local
140403 blobGrowBuffer(Blob *pBlob, int nMin, int *pRc) argument
146154 RtreeMatchArg *pBlob; /* BLOB returned by geometry function */ local
148060 RtreeMatchArg *pBlob; local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c68585 Incrblob *pBlob = 0; local
68762 sqlite3_blob_close(sqlite3_blob *pBlob) argument
68782 blobReadWrite( sqlite3_blob *pBlob, void *z, int n, int iOffset, int (*xCall)(BtCursor*, u32, u32, void*) ) argument
68832 sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset) argument
68839 sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset) argument
68849 sqlite3_blob_bytes(sqlite3_blob *pBlob) argument
68864 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
82611 const unsigned char *pBlob; local
122241 char *pBlob; /* The BLOB encoding of the document size */ local
122287 char *pBlob; /* Storage for BLOB written into %_stat */ local
127440 RtreeMatchArg *pBlob; local
[all...]

Completed in 575 milliseconds