Lines Matching defs:error
44 const int32_t error = ExtractEntryToFile(handle_, zip_entry_, file.Fd());
45 if (error) {
46 *error_msg = std::string(ErrorCodeString(error));
67 const int32_t error = ExtractToMemory(handle_, zip_entry_,
69 if (error) {
70 *error_msg = std::string(ErrorCodeString(error));
95 const int32_t error = OpenArchive(filename, &handle);
96 if (error) {
97 *error_msg = std::string(ErrorCodeString(error));
111 const int32_t error = OpenArchiveFd(fd, filename, &handle);
112 if (error) {
113 *error_msg = std::string(ErrorCodeString(error));
127 const int32_t error = FindEntry(handle_, ZipEntryName(name), zip_entry.get());
128 if (error) {
129 *error_msg = std::string(ErrorCodeString(error));