Home
last modified time | relevance | path

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

/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_list.c322 zend_op_array *phpdbg_compile_string(zval *source_string, char *filename) { in phpdbg_compile_string() argument
330 return PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string()
333 dataptr = emalloc(sizeof(phpdbg_file_source) + sizeof(uint32_t) * Z_STRLEN_P(source_string)); in phpdbg_compile_string()
334 dataptr->buf = estrndup(Z_STRVAL_P(source_string), Z_STRLEN_P(source_string)); in phpdbg_compile_string()
335 dataptr->len = Z_STRLEN_P(source_string); in phpdbg_compile_string()
345 op_array = PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string()
H A Dphpdbg.h280 zend_op_array *(*compile_string)(zval *source_string, char *filename);
/PHP-7.2/Zend/
H A Dzend_language_scanner.l750 zend_op_array *compile_string(zval *source_string, char *filename) in compile_string() argument
756 if (Z_STRLEN_P(source_string)==0) { in compile_string()
760 ZVAL_DUP(&tmp, source_string); in compile_string()
762 source_string = &tmp; in compile_string()
765 if (zend_prepare_string_for_scanning(source_string, filename) == SUCCESS) { in compile_string()
H A Dzend_compile.h716 extern ZEND_API zend_op_array *(*zend_compile_string)(zval *source_string, char *filename);
774 ZEND_API zend_op_array *compile_string(zval *source_string, char *filename);
H A Dzend_language_scanner.c753 zend_op_array *compile_string(zval *source_string, char *filename) in compile_string() argument
759 if (Z_STRLEN_P(source_string)==0) { in compile_string()
763 ZVAL_DUP(&tmp, source_string); in compile_string()
765 source_string = &tmp; in compile_string()
768 if (zend_prepare_string_for_scanning(source_string, filename) == SUCCESS) { in compile_string()
H A Dzend_compile.c82 ZEND_API zend_op_array *(*zend_compile_string)(zval *source_string, char *filename);

Completed in 75 milliseconds