Home
last modified time | relevance | path

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

/PHP-7.3/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.3/Zend/
H A Dzend_compile.h722 extern ZEND_API zend_op_array *(*zend_compile_string)(zval *source_string, char *filename);
781 ZEND_API zend_op_array *compile_string(zval *source_string, char *filename);
H A Dzend_language_scanner.l749 zend_op_array *compile_string(zval *source_string, char *filename) in compile_string() argument
755 if (UNEXPECTED(Z_TYPE_P(source_string) != IS_STRING)) { in compile_string()
756 ZVAL_STR(&tmp, zval_get_string_func(source_string)); in compile_string()
758 ZVAL_COPY(&tmp, source_string); in compile_string()
H A Dzend_language_scanner.c752 zend_op_array *compile_string(zval *source_string, char *filename) in compile_string() argument
758 if (UNEXPECTED(Z_TYPE_P(source_string) != IS_STRING)) { in compile_string()
759 ZVAL_STR(&tmp, zval_get_string_func(source_string)); in compile_string()
761 ZVAL_COPY(&tmp, source_string); in compile_string()
H A Dzend_compile.c82 ZEND_API zend_op_array *(*zend_compile_string)(zval *source_string, char *filename);

Completed in 53 milliseconds