Lines Matching refs:rc
152 int rc = unzLocateFile(m_uzFile, ContentName.c_str(), 0); in GetUncompressedContent() local
154 if (UNZ_END_OF_LIST_OF_FILE == rc) in GetUncompressedContent()
155 throw ZipContentMissException(rc); in GetUncompressedContent()
162 rc = unzOpenCurrentFile(m_uzFile); in GetUncompressedContent()
164 if (UNZ_OK != rc) in GetUncompressedContent()
165 throw ZipException(rc); in GetUncompressedContent()
167 rc = unzReadCurrentFile(m_uzFile, &ContentBuffer[0], finfo.uncompressed_size); in GetUncompressedContent()
169 if (rc < 0) in GetUncompressedContent()
170 throw ZipException(rc); in GetUncompressedContent()
172 rc = unzCloseCurrentFile(m_uzFile); in GetUncompressedContent()
174 if (rc < 0) in GetUncompressedContent()
175 throw ZipException(rc); in GetUncompressedContent()
191 int rc = unzGoToFirstFile(m_uzFile); in GetDirectory() local
193 while (UNZ_OK == rc && UNZ_END_OF_LIST_OF_FILE != rc) in GetDirectory()
201 rc = unzGoToNextFile(m_uzFile); in GetDirectory()
204 if (UNZ_OK != rc && UNZ_END_OF_LIST_OF_FILE != rc) in GetDirectory()
205 throw ZipException(rc); in GetDirectory()
234 int rc = unzGoToFirstFile(m_uzFile); in GetFileLongestFileNameLength() local
236 while (UNZ_OK == rc && UNZ_END_OF_LIST_OF_FILE != rc) in GetFileLongestFileNameLength()
240 rc = unzGoToNextFile(m_uzFile); in GetFileLongestFileNameLength()
243 if (UNZ_OK != rc && UNZ_END_OF_LIST_OF_FILE != rc) in GetFileLongestFileNameLength()
244 throw ZipException(rc); in GetFileLongestFileNameLength()