Lines Matching refs:idata

387 int phar_entry_delref(phar_entry_data *idata) /* {{{ */  in phar_entry_delref()  argument
391 if (idata->internal_file && !idata->internal_file->is_persistent) { in phar_entry_delref()
392 if (--idata->internal_file->fp_refcount < 0) { in phar_entry_delref()
393 idata->internal_file->fp_refcount = 0; in phar_entry_delref()
396 …if (idata->fp && idata->fp != idata->phar->fp && idata->fp != idata->phar->ufp && idata->fp != ida… in phar_entry_delref()
397 php_stream_close(idata->fp); in phar_entry_delref()
400 if (idata->internal_file->is_temp_dir) { in phar_entry_delref()
401 destroy_phar_manifest_entry_int(idata->internal_file); in phar_entry_delref()
402 efree(idata->internal_file); in phar_entry_delref()
406 phar_archive_delref(idata->phar); in phar_entry_delref()
407 efree(idata); in phar_entry_delref()
415 void phar_entry_remove(phar_entry_data *idata, char **error) /* {{{ */ in phar_entry_remove() argument
419 phar = idata->phar; in phar_entry_remove()
421 if (idata->internal_file->fp_refcount < 2) { in phar_entry_remove()
422 …if (idata->fp && idata->fp != idata->phar->fp && idata->fp != idata->phar->ufp && idata->fp != ida… in phar_entry_remove()
423 php_stream_close(idata->fp); in phar_entry_remove()
425 …zend_hash_str_del(&idata->phar->manifest, idata->internal_file->filename, idata->internal_file->fi… in phar_entry_remove()
426 idata->phar->refcount--; in phar_entry_remove()
427 efree(idata); in phar_entry_remove()
429 idata->internal_file->is_deleted = 1; in phar_entry_remove()
430 phar_entry_delref(idata); in phar_entry_remove()
2386 int phar_postprocess_file(phar_entry_data *idata, uint32_t crc32, char **error, int process_zip) /*… in phar_postprocess_file() argument
2389 int len = idata->internal_file->uncompressed_filesize, ret; in phar_postprocess_file()
2390 php_stream *fp = idata->fp; in phar_postprocess_file()
2391 phar_entry_info *entry = idata->internal_file; in phar_postprocess_file()
2402 if (SUCCESS != phar_open_archive_fp(idata->phar)) { in phar_postprocess_file()
2403 …p-based phar archive \"%s\" to verify local file header for file \"%s\"", idata->phar->fname, entr… in phar_postprocess_file()
2406 php_stream_seek(phar_get_entrypfp(idata->internal_file), entry->header_offset, SEEK_SET); in phar_postprocess_file()
2408 …if (sizeof(local) != php_stream_read(phar_get_entrypfp(idata->internal_file), (char *) &local, siz… in phar_postprocess_file()
2410 …f zip-based phar \"%s\" (cannot read local file header for file \"%s\")", idata->phar->fname, entr… in phar_postprocess_file()
2416 php_stream_seek(phar_get_entrypfp(idata->internal_file), in phar_postprocess_file()
2421 if (sizeof(desc) != php_stream_read(phar_get_entrypfp(idata->internal_file), in phar_postprocess_file()
2423 …p-based phar \"%s\" (cannot read local data descriptor for file \"%s\")", idata->phar->fname, entr… in phar_postprocess_file()
2435 …r \"%s\" (local header of file \"%s\" does not match central directory)", idata->phar->fname, entr… in phar_postprocess_file()
2443 if (idata->zero && idata->zero != entry->offset_abs) { in phar_postprocess_file()
2444 idata->zero = entry->offset_abs; in phar_postprocess_file()
2452 php_stream_seek(fp, idata->zero, SEEK_SET); in phar_postprocess_file()
2456 php_stream_seek(fp, idata->zero, SEEK_SET); in phar_postprocess_file()
2462 …ror: internal corruption of phar \"%s\" (crc32 mismatch on file \"%s\")", idata->phar->fname, entr… in phar_postprocess_file()