/frameworks/base/libs/androidfw/ |
ZipUtils.cpp | 50 int zerr; local 78 zerr = inflateInit2(&zstream, -MAX_WBITS); 79 if (zerr != Z_OK) { 80 if (zerr == Z_VERSION_ERROR) { 84 ALOGE("Call to inflateInit2 failed (zerr=%d)\n", zerr); 117 zerr = inflate(&zstream, Z_NO_FLUSH); 118 if (zerr != Z_OK && zerr != Z_STREAM_END) { 119 ALOGD("zlib inflate call failed (zerr=%d)\n", zerr) 163 int zerr; local [all...] |
ZipFileRO.cpp | 848 int zerr; local 867 zerr = inflateInit2(&zstream, -MAX_WBITS); 868 if (zerr != Z_OK) { 869 if (zerr == Z_VERSION_ERROR) { 873 ALOGE("Call to inflateInit2 failed (zerr=%d)\n", zerr); 881 zerr = inflate(&zstream, Z_FINISH); 882 if (zerr != Z_STREAM_END) { 883 ALOGW("Zip inflate failed, zerr=%d (nIn=%p aIn=%u nOut=%p aOut=%u)\n", 884 zerr, zstream.next_in, zstream.avail_in 915 int zerr; local [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
crashtest1.c | 28 char *zErr; 42 db = sqlite_open("./test.db", 0, &zErr); 44 printf("ERROR: %s\n", zErr); 45 if( strcmp(zErr,"database disk image is malformed")==0 ){ 54 "INSERT INTO t1 VALUES(%d,'%d%s')", 0, 0, &zErr, 58 printf("ERROR #%d: %s\n", rc, zErr); 70 char *zErr; 76 db = sqlite_open("test.db", 0, &zErr); 78 printf("Cannot initialize: %s\n", zErr);
|
threadtest3.c | 407 char *zErr; 437 sqlite3_free(p->zErr); 438 p->zErr = 0; 444 printf("Error: (%d) \"%s\" at line %d\n", p->rc, p->zErr, p->iLine); 456 pErr->zErr = (char *)sqlite3_malloc(512); 457 strerror_r(iSys, pErr->zErr, 512); 458 pErr->zErr[511] = '\0'; 467 pErr->zErr = sqlite3_mprintf( 475 char *zErr 479 pErr->zErr = zErr [all...] |
/system/core/libzipfile/ |
zipfile.c | 84 int zerr; local 98 zerr = inflateInit2(&zstream, -MAX_WBITS); 99 if (zerr != Z_OK) { 104 zerr = inflate(&zstream, Z_FINISH); 105 if (zerr != Z_STREAM_END) { 106 fprintf(stderr, "zerr=%d Z_STREAM_END=%d total_out=%lu\n", zerr, Z_STREAM_END,
|
/external/chromium_org/third_party/sqlite/src/src/ |
vdbeblob.c | 55 char *zErr = 0; /* Error message */ 69 zErr = sqlite3MPrintf(p->db, "cannot open value of type %s", 91 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow); 94 zErr = sqlite3MPrintf(p->db, "%s", sqlite3_errmsg(p->db)); 98 assert( rc!=SQLITE_OK || zErr==0 ); 101 *pzErr = zErr; 154 char *zErr = 0; 172 sqlite3DbFree(db, zErr); 173 zErr = 0; 189 sqlite3DbFree(db, zErr); [all...] |
test_autoext.c | 78 char *zErr; 80 zErr = sqlite3_mprintf("broken autoext!"); 81 *pzErrMsg = zErr;
|
test_loadext.c | 117 char *zErr; 119 zErr = sqlite3_mprintf("broken!"); 120 *pzErrMsg = zErr;
|
test3.c | 461 char zErr[200]; 464 sprintf(zErr, "putVarint returned %d - should be between 1 and 9", n1); 465 Tcl_AppendResult(interp, zErr, 0); 470 sprintf(zErr, "putVarint returned %d and getVarint returned %d", n1, n2); 471 Tcl_AppendResult(interp, zErr, 0); 475 sprintf(zErr, "Wrote 0x%016llx and got back 0x%016llx", in, out); 476 Tcl_AppendResult(interp, zErr, 0); 484 sprintf(zErr, "putVarint returned %d and GetVarint32 returned %d", 486 Tcl_AppendResult(interp, zErr, 0); 490 sprintf(zErr, "Wrote 0x%016llx and got back 0x%016llx from GetVarint32" [all...] |
attach.c | 245 char zErr[128]; 257 sqlite3_snprintf(sizeof(zErr),zErr, "no such database: %s", zName); 261 sqlite3_snprintf(sizeof(zErr),zErr, "cannot detach database %s", zName); 265 sqlite3_snprintf(sizeof(zErr), zErr, 270 sqlite3_snprintf(sizeof(zErr),zErr, "database %s is locked", zName); 281 sqlite3_result_error(context, zErr, -1) [all...] |
test7.c | 65 char *zErr; /* operation error */ 90 p->zErr = strdup(sqlite3_errmsg(p->db)); 98 if( p->zErr && p->zErr!=p->zStaticErr ){ 99 sqlite3_free(p->zErr); 100 p->zErr = 0; 114 if( p->zErr && p->zErr!=p->zStaticErr ){ 115 sqlite3_free(p->zErr); 116 p->zErr = 0 [all...] |
test4.c | 42 char *zErr; /* operation error */ 68 p->zErr = strdup(sqlite3_errmsg(p->db)); 76 if( p->zErr && p->zErr!=p->zStaticErr ){ 77 sqlite3_free(p->zErr); 78 p->zErr = 0; 92 if( p->zErr && p->zErr!=p->zStaticErr ){ 93 sqlite3_free(p->zErr); 94 p->zErr = 0 [all...] |
vtab.c | 441 char *zErr = 0; 461 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr); 465 if( zErr==0 ){ 468 *pzErr = sqlite3MPrintf(db, "%s", zErr); 469 sqlite3_free(zErr); 556 char *zErr = 0; 557 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xConnect, &zErr); 559 sqlite3ErrorMsg(pParse, "%s", zErr); 561 sqlite3DbFree(db, zErr); 642 char *zErr = 0 [all...] |
test1.c | 314 char *zErr = 0; 325 rc = sqlite3_exec(db, zSql, exec_printf_cb, &str, &zErr); 329 Tcl_AppendElement(interp, rc==SQLITE_OK ? Tcl_DStringValue(&str) : zErr); 331 if( zErr ) sqlite3_free(zErr); 352 char *zErr = 0; 373 rc = sqlite3_exec(db, zSql, exec_printf_cb, &str, &zErr); 376 Tcl_AppendElement(interp, rc==SQLITE_OK ? Tcl_DStringValue(&str) : zErr); 378 if( zErr ) sqlite3_free(zErr); [all...] |
test_func.c | 310 char *zErr; 312 zErr = sqlite3_mprintf("sqlite3_prepare_v2() error: %s",sqlite3_errmsg(db)); 313 sqlite3_result_text(pCtx, zErr, -1, sqlite3_free);
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_tokenizer.c | 93 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName); 94 sqlite3_result_error(context, zErr, -1); 95 sqlite3_free(zErr); 144 const char *zErr = 0; 176 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName); 177 sqlite3_result_error(context, zErr, -1); 178 sqlite3_free(zErr); 186 zErr = "error in xCreate()"; 191 zErr = "error in xOpen()"; 205 zErr = "error in xClose()" [all...] |
/art/runtime/ |
zip_archive.cc | 188 int zerr = inflateInit2(&zstream->Get(), -MAX_WBITS); local 189 if (zerr != Z_OK) { 190 if (zerr == Z_VERSION_ERROR) { 193 LOG(WARNING) << "Call to inflateInit2 failed (zerr=" << zerr << ")"; 215 zerr = inflate(&zstream->Get(), Z_NO_FLUSH); 216 if (zerr != Z_OK && zerr != Z_STREAM_END) { 217 LOG(WARNING) << "Zip: inflate zerr=" << zerr [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_tokenizer.c | 90 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName); 91 sqlite3_result_error(context, zErr, -1); 92 sqlite3_free(zErr); 250 const char *zErr = 0; 282 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName); 283 sqlite3_result_error(context, zErr, -1); 284 sqlite3_free(zErr); 292 zErr = "error in xCreate()"; 297 zErr = "error in xOpen()"; 311 zErr = "error in xClose()" [all...] |
/external/chromium_org/third_party/sqlite/src/tool/ |
rollback-test.c | 61 char *zErr = 0; 64 rc = sqlite3_exec(db, zSql, execCallback, 0, &zErr); 65 if( zErr ){ 66 fprintf(stderr, "SQL error: %s\n", zErr);
|
/dalvik/libdex/ |
ZipArchive.cpp | 675 int zerr; local 697 zerr = inflateInit2(&zstream, -MAX_WBITS); 698 if (zerr != Z_OK) { 699 if (zerr == Z_VERSION_ERROR) { 703 ALOGW("Call to inflateInit2 failed (zerr=%d)", zerr); 730 zerr = inflate(&zstream, Z_NO_FLUSH); 731 if (zerr != Z_OK && zerr != Z_STREAM_END) { 732 ALOGW("Zip: inflate zerr=%d (nIn=%p aIn=%u nOut=%p aOut=%u)" [all...] |
/external/zlib/src/examples/ |
zpipe.c | 151 void zerr(int ret) function 188 zerr(ret); 196 zerr(ret);
|
/bootable/recovery/minzip/ |
Zip.c | 564 int zerr; local 586 zerr = inflateInit2(&zstream, -MAX_WBITS); 587 if (zerr != Z_OK) { 588 if (zerr == Z_VERSION_ERROR) { 592 LOGE("Call to inflateInit2 failed (zerr=%d)\n", zerr); 621 zerr = inflate(&zstream, Z_NO_FLUSH); 622 if (zerr != Z_OK && zerr != Z_STREAM_END) { 623 LOGD("zlib inflate call failed (zerr=%d)\n", zerr) [all...] |
/build/tools/zipalign/ |
ZipFile.cpp | 753 int zerr; local 778 zerr = deflateInit2(&zstream, Z_BEST_COMPRESSION, 780 if (zerr != Z_OK) { 782 if (zerr == Z_VERSION_ERROR) { 786 ALOGD("Call to deflateInit2 failed (zerr=%d)\n", zerr); 832 zerr = deflate(&zstream, flush); 833 if (zerr != Z_OK && zerr != Z_STREAM_END) { 834 ALOGD("zlib deflate call failed (zerr=%d)\n", zerr) [all...] |
/frameworks/base/tools/aapt/ |
ZipFile.cpp | 753 int zerr; local 778 zerr = deflateInit2(&zstream, Z_BEST_COMPRESSION, 780 if (zerr != Z_OK) { 782 if (zerr == Z_VERSION_ERROR) { 786 ALOGD("Call to deflateInit2 failed (zerr=%d)\n", zerr); 832 zerr = deflate(&zstream, flush); 833 if (zerr != Z_OK && zerr != Z_STREAM_END) { 834 ALOGD("zlib deflate call failed (zerr=%d)\n", zerr) [all...] |
/prebuilts/sdk/tools/linux/ |
zipalign | |