Home
last modified time | relevance | path

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

/PHP-8.3/ext/phar/tests/tar/
H A Dphar_stub_error.phpt23 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>';
26 $phar->setStub($newstub);
/PHP-8.3/ext/phar/tests/zip/
H A Dphar_stub_error.phpt22 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>';
25 $phar->setStub($newstub);
/PHP-8.3/ext/phar/tests/
H A Dphar_stub_error.phpt25 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>';
28 $phar->setStub($newstub);
/PHP-8.3/ext/phar/
H A Dtar.c959 static const char newstub[] = "<?php // tar-based phar archive stub file\n__HALT_COMPILER();"; in phar_tar_flush() local
1104 if (sizeof(newstub)-1 != php_stream_write(entry.fp, newstub, sizeof(newstub)-1)) { in phar_tar_flush()
1112 entry.uncompressed_filesize = entry.compressed_filesize = sizeof(newstub) - 1; in phar_tar_flush()
H A Dphar.c2539 zend_string *newstub; in phar_flush() local
2680 newstub = NULL; in phar_flush()
2683 newstub = phar_create_default_stub(NULL, NULL, NULL); in phar_flush()
2684 phar->halt_offset = ZSTR_LEN(newstub); in phar_flush()
2685 written = php_stream_write(newfile, ZSTR_VAL(newstub), phar->halt_offset); in phar_flush()
2693 if (newstub) { in phar_flush()
2699 if (newstub) { in phar_flush()
2700 zend_string_free(newstub); in phar_flush()
2704 if (newstub) { in phar_flush()
2705 zend_string_free(newstub); in phar_flush()
H A Dzip.c1226 static const char newstub[] = "<?php // zip-based phar archive stub file\n__HALT_COMPILER();"; in phar_zip_flush() local
1375 if (sizeof(newstub)-1 != php_stream_write(entry.fp, newstub, sizeof(newstub)-1)) { in phar_zip_flush()
1383 entry.uncompressed_filesize = entry.compressed_filesize = sizeof(newstub) - 1; in phar_zip_flush()

Completed in 21 milliseconds