Home
last modified time | relevance | path

Searched refs:fh1 (Results 1 – 3 of 3) sorted by relevance

/PHP-5.5/Zend/
H A Dzend_stream.c336 ZEND_API int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2) /* {{{ */ argument
338 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;
H A Dzend_language_scanner.h60 int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2);
H A Dzend_stream.h78 ZEND_API int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2);

Completed in 10 milliseconds