Lines Matching refs:aBlob

7633 ** If aBlob is not NULL, then it is a pointer to a buffer (nBlob bytes in
7634 ** size) containing an entire zip archive image. Or, if aBlob is NULL,
7645 const u8 *aBlob, /* Pointer to in-memory file image */
7646 int nBlob, /* Size of aBlob[] in bytes */
7647 FILE *pFile, /* If aBlob==0, read from this file */
7655 if( aBlob==0 ){
7659 aRead = (u8*)&aBlob[iOff];
7671 if( aBlob ){
7683 }else if( aBlob==0 ){
7688 aRead = (u8*)&aBlob[iOff + ZIPFILE_CDS_FIXED_SZ];
7710 aRead = (u8*)&aBlob[pNew->cds.iOffset];
7717 if( aBlob && pNew->cds.szCompressed ){
7719 memcpy(pNew->aData, &aBlob[pNew->iDataOff], pNew->cds.szCompressed);
7969 ** If aBlob is not NULL, then it points to a buffer nBlob bytes in size
7970 ** containing an entire zip archive image. Or, if aBlob is NULL, then pFile
7980 const u8 *aBlob, /* Pointer to in-memory file image */
7981 int nBlob, /* Size of aBlob[] in bytes */
7982 FILE *pFile, /* Read from this file if aBlob==0 */
7990 if( aBlob==0 ){
8003 aRead = (u8*)&aBlob[nBlob-nRead];
8065 static int zipfileLoadDirectory(ZipfileTab *pTab, const u8 *aBlob, int nBlob){
8071 rc = zipfileReadEOCD(pTab, aBlob, nBlob, pTab->pWriteFd, &eocd);
8075 rc = zipfileGetEntry(pTab, aBlob, nBlob, pTab->pWriteFd, iOff, &pNew);
8109 const u8 *aBlob = (const u8*)sqlite3_value_blob(argv[0]);
8112 if( aBlob==0 ){
8113 aBlob = &aEmptyBlob;
8116 rc = zipfileLoadDirectory(pTab, aBlob, nBlob);
15938 unsigned char *aBlob = (unsigned char*)pBlob;
15948 zStr[i*2] = aHex[ (aBlob[i] >> 4) ];
15949 zStr[i*2+1] = aHex[ (aBlob[i] & 0x0F) ];