Home
last modified time | relevance | path

Searched refs:newstub (Results 1 – 7 of 7) sorted by relevance

/PHP-7.1/ext/phar/tests/tar/
H A Dphar_stub_error.phpt23 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>';
26 $phar->setStub($newstub);
/PHP-7.1/ext/phar/tests/zip/
H A Dphar_stub_error.phpt22 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>';
25 $phar->setStub($newstub);
/PHP-7.1/ext/phar/tests/
H A Dphar_stub_error.phpt25 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>';
28 $phar->setStub($newstub);
/PHP-7.1/ext/phar/
H A Dtar.c952 static const char newstub[] = "<?php // tar-based phar archive stub file\n__HALT_COMPILER();"; in phar_tar_flush() local
1107 if (sizeof(newstub)-1 != php_stream_write(entry.fp, newstub, sizeof(newstub)-1)) { in phar_tar_flush()
1115 entry.uncompressed_filesize = entry.compressed_filesize = sizeof(newstub) - 1; in phar_tar_flush()
H A Dphar.c2494 zend_string *newstub; local
2638 newstub = NULL;
2641 newstub = phar_create_default_stub(NULL, NULL, NULL);
2642 phar->halt_offset = ZSTR_LEN(newstub);
2643 written = php_stream_write(newfile, ZSTR_VAL(newstub), phar->halt_offset);
2651 if (newstub) {
2657 if (newstub) {
2658 zend_string_free(newstub);
2662 if (newstub) {
2663 zend_string_free(newstub);
H A Dzip.c1184 static const char newstub[] = "<?php // zip-based phar archive stub file\n__HALT_COMPILER();"; in phar_zip_flush() local
1352 if (sizeof(newstub)-1 != php_stream_write(entry.fp, newstub, sizeof(newstub)-1)) { in phar_zip_flush()
1360 entry.uncompressed_filesize = entry.compressed_filesize = sizeof(newstub) - 1; in phar_zip_flush()
H A Dphar_object.c5235 ZEND_ARG_INFO(0, newstub)

Completed in 46 milliseconds