Home | History | Annotate | Download | only in minzip

Lines Matching refs:targetFile

972         const char *targetFile = targetEntryPath(&helper, pEntry);
973 if (targetFile == NULL) {
983 if (callback != NULL) callback(targetFile, cookie);
994 targetFile, UNZIP_DIRMODE, timestamp, false, sehnd);
997 targetFile, strerror(errno));
1001 LOGD("Extracted dir \"%s\"\n", targetFile);
1008 targetFile, UNZIP_DIRMODE, timestamp, true, sehnd);
1011 targetFile, strerror(errno));
1026 targetFile);
1039 targetFile);
1047 ret = symlink(linkTarget, targetFile);
1050 targetFile, linkTarget, strerror(errno));
1056 targetFile, linkTarget);
1066 selabel_lookup(sehnd, &secontext, targetFile, UNZIP_FILEMODE);
1070 int fd = open(targetFile, O_CREAT|O_WRONLY|O_TRUNC|O_SYNC
1080 targetFile, strerror(errno));
1093 LOGE("Error extracting \"%s\"\n", targetFile);
1098 if (timestamp != NULL && utime(targetFile, timestamp)) {
1099 LOGE("Error touching \"%s\"\n", targetFile);
1104 LOGV("Extracted file \"%s\"\n", targetFile);
1109 if (callback != NULL) callback(targetFile, cookie);