Searched refs:fh1 (Results 1 – 2 of 2) sorted by relevance
326 ZEND_API int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2) /* {{{ */ in zend_compare_file_handles() argument328 if (fh1->type != fh2->type) { in zend_compare_file_handles()331 switch (fh1->type) { in zend_compare_file_handles()333 return fh1->handle.fd == fh2->handle.fd; in zend_compare_file_handles()335 return fh1->handle.fp == fh2->handle.fp; in zend_compare_file_handles()337 return fh1->handle.stream.handle == fh2->handle.stream.handle; in zend_compare_file_handles()339 return (fh1->handle.stream.handle == &fh1->handle.stream && in zend_compare_file_handles()341 fh1->handle.stream.mmap.old_handle == fh2->handle.stream.mmap.old_handle) in zend_compare_file_handles()342 || fh1->handle.stream.handle == fh2->handle.stream.handle; in zend_compare_file_handles()
81 ZEND_API int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2);
Completed in 9 milliseconds