Home | History | Annotate | Download | only in aapt

Lines Matching full:inputfp

365     FILE* inputFp = NULL;
384 inputFp = fopen(fileName, FILE_OPEN_RO);
385 if (inputFp == NULL)
417 result = compressFpToFp(mZipFp, inputFp, data, size, &crc);
427 long src = inputFp ? ftell(inputFp) : size;
438 if (inputFp) rewind(inputFp);
445 if (inputFp) {
446 result = copyFpToFp(mZipFp, inputFp, &crc);
458 uncompressedLen = inputFp ? ftell(inputFp) : size;
468 scanResult = ZipUtils::examineGzip(inputFp, &method, &uncompressedLen,
476 result = copyPartialFpToFp(mZipFp, inputFp, compressedLen, NULL);
500 modWhen = getModTime(inputFp ? fileno(inputFp) : fileno(mZipFp));
526 if (inputFp != NULL)
527 fclose(inputFp);