Searched refs:source_string (Results 1 – 6 of 6) sorted by relevance
/PHP-7.0/sapi/phpdbg/ |
H A D | phpdbg_list.c | 333 zend_op_array *phpdbg_compile_string(zval *source_string, char *filename) { in phpdbg_compile_string() argument 341 return PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string() 344 dataptr = emalloc(sizeof(phpdbg_file_source) + sizeof(uint) * Z_STRLEN_P(source_string)); in phpdbg_compile_string() 345 dataptr->buf = estrndup(Z_STRVAL_P(source_string), Z_STRLEN_P(source_string)); in phpdbg_compile_string() 346 dataptr->len = Z_STRLEN_P(source_string); in phpdbg_compile_string() 356 op_array = PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string()
|
H A D | phpdbg.h | 272 zend_op_array *(*compile_string)(zval *source_string, char *filename);
|
/PHP-7.0/Zend/ |
H A D | zend_language_scanner.l | 738 zend_op_array *compile_string(zval *source_string, char *filename) in compile_string() argument 745 if (Z_STRLEN_P(source_string)==0) { in compile_string() 749 ZVAL_DUP(&tmp, source_string); in compile_string() 751 source_string = &tmp; in compile_string() 755 if (zend_prepare_string_for_scanning(source_string, filename) == SUCCESS) { in compile_string()
|
H A D | zend_compile.h | 671 extern ZEND_API zend_op_array *(*zend_compile_string)(zval *source_string, char *filename); 726 ZEND_API zend_op_array *compile_string(zval *source_string, char *filename);
|
H A D | zend_language_scanner.c | 740 zend_op_array *compile_string(zval *source_string, char *filename) in compile_string() argument 747 if (Z_STRLEN_P(source_string)==0) { in compile_string() 751 ZVAL_DUP(&tmp, source_string); in compile_string() 753 source_string = &tmp; in compile_string() 757 if (zend_prepare_string_for_scanning(source_string, filename) == SUCCESS) { in compile_string()
|
H A D | zend_compile.c | 82 ZEND_API zend_op_array *(*zend_compile_string)(zval *source_string, char *filename);
|
Completed in 46 milliseconds