Searched refs:newstub (Results 1 – 7 of 7) sorted by relevance
/PHP-5.4/ext/phar/tests/tar/ |
H A D | phar_stub_error.phpt | 23 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>'; 26 $phar->setStub($newstub);
|
/PHP-5.4/ext/phar/tests/zip/ |
H A D | phar_stub_error.phpt | 22 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>'; 25 $phar->setStub($newstub);
|
/PHP-5.4/ext/phar/tests/ |
H A D | phar_stub_error.phpt | 25 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>'; 28 $phar->setStub($newstub);
|
/PHP-5.4/ext/phar/ |
H A D | tar.c | 923 static const char newstub[] = "<?php // tar-based phar archive stub file\n__HALT_COMPILER();"; in phar_tar_flush() local 1055 if (sizeof(newstub)-1 != php_stream_write(entry.fp, newstub, sizeof(newstub)-1)) { in phar_tar_flush() 1063 entry.uncompressed_filesize = entry.compressed_filesize = sizeof(newstub) - 1; in phar_tar_flush()
|
H A D | phar.c | 2570 char *newstub, *tmp; local 2710 newstub = NULL; 2713 newstub = phar_create_default_stub(NULL, NULL, &(phar->halt_offset), NULL TSRMLS_CC); 2714 written = php_stream_write(newfile, newstub, phar->halt_offset); 2722 if (newstub) { 2728 if (newstub) { 2729 efree(newstub); 2733 if (newstub) { 2734 efree(newstub);
|
H A D | zip.c | 1169 static const char newstub[] = "<?php // zip-based phar archive stub file\n__HALT_COMPILER();"; in phar_zip_flush() local 1323 if (sizeof(newstub)-1 != php_stream_write(entry.fp, newstub, sizeof(newstub)-1)) { in phar_zip_flush() 1331 entry.uncompressed_filesize = entry.compressed_filesize = sizeof(newstub) - 1; in phar_zip_flush()
|
H A D | phar_object.c | 5344 ZEND_ARG_INFO(0, newstub)
|
Completed in 43 milliseconds