HomeSort by relevance Sort by last modified time
    Searched refs:nBlob (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
test_onefile.c 103 int nBlob; /* Total size of allocated blob */
423 int iRealOff = pReal->nBlob - BLOCKSIZE*((ii/BLOCKSIZE)+1) + ii%BLOCKSIZE;
451 if( (iAmt+iOfst+BLOCKSIZE)>(pReal->nBlob-pReal->nJournal) ){
465 int iRealOff = pReal->nBlob - BLOCKSIZE*((ii/BLOCKSIZE)+1) + ii%BLOCKSIZE;
641 pReal->nBlob = BLOBSIZE;
644 pReal->nBlob = size;
648 rc = pRealFile->pMethods->xRead(pRealFile, zS, 4, pReal->nBlob-4);
650 pReal->nJournal = pReal->nBlob;
699 rc = pF->pMethods->xWrite(pF, "\0\0\0\0", 4, pReal->nBlob-BLOCKSIZE);
test_hexio.c 349 int nBlob;
358 zBlob = Tcl_GetByteArrayFromObj(objv[1], &nBlob);
func.c 853 int nBlob = sqlite3_value_bytes(argv[0]);
855 zText = (char *)contextMalloc(context, (2*(i64)nBlob)+4);
858 for(i=0; i<nBlob; i++){
862 zText[(nBlob*2)+2] = '\'';
863 zText[(nBlob*2)+3] = '\0';
    [all...]
shell.c 477 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){
481 for(i=0; i<nBlob; i++){ fprintf(out,"%02x",zBlob[i]); }
812 int nBlob = sqlite3_column_bytes(p->pStmt, i);
814 output_hex_blob(p->out, pBlob, nBlob);
    [all...]
tclsqlite.c 220 int nBlob; /* Total size of the blob */
223 nBlob = sqlite3_blob_bytes(p->pBlob);
224 if( (p->iSeek+nRead)>nBlob ){
225 nRead = nBlob-p->iSeek;
252 int nBlob; /* Total size of the blob */
255 nBlob = sqlite3_blob_bytes(p->pBlob);
256 if( (p->iSeek+nWrite)>nBlob ){
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_write.c     [all...]
fts3.c     [all...]
  /external/sqlite/dist/orig/
shell.c 534 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){
538 for(i=0; i<nBlob; i++){ fprintf(out,"%02x",zBlob[i]&0xff); }
899 int nBlob = sqlite3_column_bytes(p->pStmt, i);
901 output_hex_blob(p->out, pBlob, nBlob);
    [all...]
  /external/sqlite/dist/
shell.c 539 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){
543 for(i=0; i<nBlob; i++){ fprintf(out,"%02x",zBlob[i]&0xff); }
904 int nBlob = sqlite3_column_bytes(p->pStmt, i);
906 output_hex_blob(p->out, pBlob, nBlob);
    [all...]

Completed in 2685 milliseconds