Lines Matching refs:fh
304 ZEND_API void zend_file_handle_dtor(zend_file_handle *fh TSRMLS_DC) /* {{{ */
306 switch (fh->type) {
311 fclose(fh->handle.fp);
315 if (fh->handle.stream.closer && fh->handle.stream.handle) {
316 fh->handle.stream.closer(fh->handle.stream.handle TSRMLS_CC);
318 fh->handle.stream.handle = NULL;
326 if (fh->opened_path) {
327 efree(fh->opened_path);
328 fh->opened_path = NULL;
330 if (fh->free_filename && fh->filename) {
331 efree(fh->filename);
332 fh->filename = NULL;