Searched refs:fh1 (Results 1 – 3 of 3) sorted by relevance
336 ZEND_API int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2) /* {{{ */ argument338 if (fh1->type != fh2->type) {341 switch (fh1->type) {343 return fh1->handle.fd == fh2->handle.fd;345 return fh1->handle.fp == fh2->handle.fp;347 return fh1->handle.stream.handle == fh2->handle.stream.handle;349 return (fh1->handle.stream.handle == &fh1->handle.stream &&351 fh1->handle.stream.mmap.old_handle == fh2->handle.stream.mmap.old_handle)352 || fh1->handle.stream.handle == fh2->handle.stream.handle;
60 int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2);
78 ZEND_API int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2);
Completed in 6 milliseconds