Lines Matching refs:file

59 			zend_string *file = zend_string_init(char_file, strlen(char_file), 0);  in PHPDBG_LIST()  local
60 …phpdbg_list_file(file, param->num < 0 ? 1 - param->num : param->num, (param->num < 0 ? param->num … in PHPDBG_LIST()
61 efree(file); in PHPDBG_LIST()
65 zend_string *file; in PHPDBG_LIST() local
67 const char *abspath = param->file.name; in PHPDBG_LIST()
71 file = zend_string_init(abspath, strlen(abspath), 0); in PHPDBG_LIST()
72 phpdbg_list_file(file, param->file.line, 0, 0); in PHPDBG_LIST()
73 zend_string_release(file); in PHPDBG_LIST()
235 zend_op_array *phpdbg_compile_file(zend_file_handle *file, int type) { in phpdbg_compile_file() argument
243 if (zend_stream_fixup(file, &bufptr, &data.len) == FAILURE) { in phpdbg_compile_file()
244 return PHPDBG_G(compile_file)(file, type); in phpdbg_compile_file()
247 filename = (char *)(file->opened_path ? ZSTR_VAL(file->opened_path) : file->filename); in phpdbg_compile_file()
262 fake.opened_path = file->opened_path; in phpdbg_compile_file()
296 zend_op_array *phpdbg_init_compile_file(zend_file_handle *file, int type) { in phpdbg_init_compile_file() argument
297 char *filename = (char *)(file->opened_path ? ZSTR_VAL(file->opened_path) : file->filename); in phpdbg_init_compile_file()
305 if (file->opened_path) { in phpdbg_init_compile_file()
306 zend_string_release(file->opened_path); in phpdbg_init_compile_file()
307 file->opened_path = zend_string_init(filename, strlen(filename), 0); in phpdbg_init_compile_file()
309 if (file->free_filename) { in phpdbg_init_compile_file()
310 efree((char *) file->filename); in phpdbg_init_compile_file()
312 file->free_filename = 0; in phpdbg_init_compile_file()
313 file->filename = filename; in phpdbg_init_compile_file()
317 op_array = PHPDBG_G(init_compile_file)(file, type); in phpdbg_init_compile_file()