Searched refs:source_string (Results 1 – 6 of 6) sorted by relevance
/PHP-7.1/sapi/phpdbg/ |
H A D | phpdbg_list.c | 334 zend_op_array *phpdbg_compile_string(zval *source_string, char *filename) { in phpdbg_compile_string() argument 342 return PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string() 345 dataptr = emalloc(sizeof(phpdbg_file_source) + sizeof(uint) * Z_STRLEN_P(source_string)); in phpdbg_compile_string() 346 dataptr->buf = estrndup(Z_STRVAL_P(source_string), Z_STRLEN_P(source_string)); in phpdbg_compile_string() 347 dataptr->len = Z_STRLEN_P(source_string); in phpdbg_compile_string() 357 op_array = PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string()
|
H A D | phpdbg.h | 278 zend_op_array *(*compile_string)(zval *source_string, char *filename);
|
/PHP-7.1/Zend/ |
H A D | zend_language_scanner.l | 750 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 D | zend_compile.h | 702 extern ZEND_API zend_op_array *(*zend_compile_string)(zval *source_string, char *filename); 760 ZEND_API zend_op_array *compile_string(zval *source_string, char *filename);
|
H A D | zend_language_scanner.c | 752 zend_op_array *compile_string(zval *source_string, char *filename) in compile_string() argument 758 if (Z_STRLEN_P(source_string)==0) { in compile_string() 762 ZVAL_DUP(&tmp, source_string); in compile_string() 764 source_string = &tmp; in compile_string() 767 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 64 milliseconds