Searched refs:central_pos (Results 1 – 4 of 4) sorted by relevance
/external/chromium/third_party/zlib/contrib/minizip/ |
D | unzip.c | 141 uLong central_pos; /* position of the beginning of the central dir*/ member 407 uLong central_pos,uL; variable 434 central_pos = unzlocal_SearchCentralDir(&us.z_filefunc,us.filestream); 435 if (central_pos==0) 439 central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0) 480 if ((central_pos<us.offset_central_dir+us.size_central_dir) && 490 us.byte_before_the_zipfile = central_pos - 492 us.central_pos = central_pos; 1556 if (ZSEEK(s->z_filefunc,s->filestream,s->central_pos+22,ZLIB_FILEFUNC_SEEK_SET)!=0)
|
D | zip.c | 552 uLong central_pos,uL; variable 564 central_pos = ziplocal_SearchCentralDir(&ziinit.z_filefunc,ziinit.filestream); 565 if (central_pos==0) 569 central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0) 610 if ((central_pos<offset_central_dir+size_central_dir) && 630 byte_before_the_zipfile = central_pos -
|
/external/zlib/contrib/minizip/ |
D | unzip.c | 175 ZPOS64_T central_pos; /* position of the beginning of the central dir*/ member 590 ZPOS64_T central_pos; in unzOpenInternal() local 623 central_pos = unz64local_SearchCentralDir64(&us.z_filefunc,us.filestream); in unzOpenInternal() 624 if (central_pos) in unzOpenInternal() 632 central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0) in unzOpenInternal() 685 central_pos = unz64local_SearchCentralDir(&us.z_filefunc,us.filestream); in unzOpenInternal() 686 if (central_pos==0) in unzOpenInternal() 692 central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0) in unzOpenInternal() 738 if ((central_pos<us.offset_central_dir+us.size_central_dir) && in unzOpenInternal() 748 us.byte_before_the_zipfile = central_pos - in unzOpenInternal() [all …]
|
D | zip.c | 647 ZPOS64_T central_pos; in LoadCentralDirectoryRecord() local 665 central_pos = zip64local_SearchCentralDir64(&pziinit->z_filefunc,pziinit->filestream); in LoadCentralDirectoryRecord() 666 if(central_pos > 0) in LoadCentralDirectoryRecord() 670 else if(central_pos == 0) in LoadCentralDirectoryRecord() 672 central_pos = zip64local_SearchCentralDir(&pziinit->z_filefunc,pziinit->filestream); in LoadCentralDirectoryRecord() 683 if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos, ZLIB_FILEFUNC_SEEK_SET) != 0) in LoadCentralDirectoryRecord() 737 if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0) in LoadCentralDirectoryRecord() 789 if ((central_pos<offset_central_dir+size_central_dir) && in LoadCentralDirectoryRecord() 809 byte_before_the_zipfile = central_pos - (offset_central_dir+size_central_dir); in LoadCentralDirectoryRecord()
|