Searched refs:source_string (Results 1 – 6 of 6) sorted by relevance
/PHP-8.0/sapi/phpdbg/ |
H A D | phpdbg_list.c | 319 zend_op_array *phpdbg_compile_string(zend_string *source_string, const char *filename) { in phpdbg_compile_string() argument 327 return PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string() 330 dataptr = emalloc(sizeof(phpdbg_file_source) + sizeof(uint32_t) * ZSTR_LEN(source_string)); in phpdbg_compile_string() 331 dataptr->buf = estrndup(ZSTR_VAL(source_string), ZSTR_LEN(source_string)); in phpdbg_compile_string() 332 dataptr->len = ZSTR_LEN(source_string); in phpdbg_compile_string() 342 op_array = PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string()
|
H A D | phpdbg.h | 278 zend_op_array *(*compile_string)(zend_string *source_string, const char *filename);
|
/PHP-8.0/sapi/fuzzer/ |
H A D | fuzzer-execute.c | 50 static zend_op_array *(*orig_compile_string)(zend_string *source_string, const char *filename);
|
/PHP-8.0/Zend/ |
H A D | zend_compile.h | 738 extern ZEND_API zend_op_array *(*zend_compile_string)(zend_string *source_string, const char *filen… 798 ZEND_API zend_op_array *compile_string(zend_string *source_string, const char *filename);
|
H A D | zend_language_scanner.l | 807 zend_op_array *compile_string(zend_string *source_string, const char *filename) in compile_string() argument 813 if (ZSTR_LEN(source_string) == 0) { in compile_string() 817 ZVAL_STR_COPY(&tmp, source_string); in compile_string()
|
H A D | zend_compile.c | 82 ZEND_API zend_op_array *(*zend_compile_string)(zend_string *source_string, const char *filename);
|
Completed in 73 milliseconds