Lines Matching refs:func_name
565 zval func_name; in php_userstreamop_write() local
574 ZVAL_STRINGL(&func_name, USERSTREAM_WRITE, sizeof(USERSTREAM_WRITE)-1); in php_userstreamop_write()
578 call_result = call_method_if_exists(&us->object, &func_name, &retval, 1, args); in php_userstreamop_write()
580 zval_ptr_dtor(&func_name); in php_userstreamop_write()
614 zval func_name; in php_userstreamop_read() local
623 ZVAL_STRINGL(&func_name, USERSTREAM_READ, sizeof(USERSTREAM_READ)-1); in php_userstreamop_read()
627 call_result = call_method_if_exists(&us->object, &func_name, &retval, 1, args); in php_userstreamop_read()
630 zval_ptr_dtor(&func_name); in php_userstreamop_read()
666 ZVAL_STRINGL(&func_name, USERSTREAM_EOF, sizeof(USERSTREAM_EOF)-1); in php_userstreamop_read()
667 call_result = call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_read()
668 zval_ptr_dtor(&func_name); in php_userstreamop_read()
692 zval func_name; in php_userstreamop_close() local
698 ZVAL_STRINGL(&func_name, USERSTREAM_CLOSE, sizeof(USERSTREAM_CLOSE)-1); in php_userstreamop_close()
700 call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_close()
703 zval_ptr_dtor(&func_name); in php_userstreamop_close()
715 zval func_name; in php_userstreamop_flush() local
722 ZVAL_STRINGL(&func_name, USERSTREAM_FLUSH, sizeof(USERSTREAM_FLUSH)-1); in php_userstreamop_flush()
724 call_result = call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_flush()
732 zval_ptr_dtor(&func_name); in php_userstreamop_flush()
739 zval func_name; in php_userstreamop_seek() local
747 ZVAL_STRINGL(&func_name, USERSTREAM_SEEK, sizeof(USERSTREAM_SEEK)-1); in php_userstreamop_seek()
752 call_result = call_method_if_exists(&us->object, &func_name, &retval, 2, args); in php_userstreamop_seek()
756 zval_ptr_dtor(&func_name); in php_userstreamop_seek()
780 ZVAL_STRINGL(&func_name, USERSTREAM_TELL, sizeof(USERSTREAM_TELL)-1); in php_userstreamop_seek()
782 call_result = call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_seek()
795 zval_ptr_dtor(&func_name); in php_userstreamop_seek()
839 zval func_name; in php_userstreamop_stat() local
845 ZVAL_STRINGL(&func_name, USERSTREAM_STAT, sizeof(USERSTREAM_STAT)-1); in php_userstreamop_stat()
847 call_result = call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_stat()
860 zval_ptr_dtor(&func_name); in php_userstreamop_stat()
867 zval func_name; in php_userstreamop_set_option() local
876 ZVAL_STRINGL(&func_name, USERSTREAM_EOF, sizeof(USERSTREAM_EOF)-1); in php_userstreamop_set_option()
877 call_result = call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_set_option()
887 zval_ptr_dtor(&func_name); in php_userstreamop_set_option()
909 ZVAL_STRINGL(&func_name, USERSTREAM_LOCK, sizeof(USERSTREAM_LOCK)-1); in php_userstreamop_set_option()
911 call_result = call_method_if_exists(&us->object, &func_name, &retval, 1, args); in php_userstreamop_set_option()
927 zval_ptr_dtor(&func_name); in php_userstreamop_set_option()
932 ZVAL_STRINGL(&func_name, USERSTREAM_TRUNCATE, sizeof(USERSTREAM_TRUNCATE)-1); in php_userstreamop_set_option()
936 …if (zend_is_callable_ex(&func_name, Z_OBJ(us->object), IS_CALLABLE_SUPPRESS_DEPRECATIONS, NULL, NU… in php_userstreamop_set_option()
946 call_result = call_method_if_exists(&us->object, &func_name, &retval, 1, args); in php_userstreamop_set_option()
969 zval_ptr_dtor(&func_name); in php_userstreamop_set_option()
977 ZVAL_STRINGL(&func_name, USERSTREAM_SET_OPTION, sizeof(USERSTREAM_SET_OPTION)-1); in php_userstreamop_set_option()
1006 call_result = call_method_if_exists(&us->object, &func_name, &retval, 3, args); in php_userstreamop_set_option()
1022 zval_ptr_dtor(&func_name); in php_userstreamop_set_option()
1312 zval func_name; in php_userstreamop_readdir() local
1323 ZVAL_STRINGL(&func_name, USERSTREAM_DIR_READ, sizeof(USERSTREAM_DIR_READ)-1); in php_userstreamop_readdir()
1325 call_result = call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_readdir()
1339 zval_ptr_dtor(&func_name); in php_userstreamop_readdir()
1346 zval func_name; in php_userstreamop_closedir() local
1352 ZVAL_STRINGL(&func_name, USERSTREAM_DIR_CLOSE, sizeof(USERSTREAM_DIR_CLOSE)-1); in php_userstreamop_closedir()
1354 call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_closedir()
1357 zval_ptr_dtor(&func_name); in php_userstreamop_closedir()
1368 zval func_name; in php_userstreamop_rewinddir() local
1372 ZVAL_STRINGL(&func_name, USERSTREAM_DIR_REWIND, sizeof(USERSTREAM_DIR_REWIND)-1); in php_userstreamop_rewinddir()
1374 call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_rewinddir()
1377 zval_ptr_dtor(&func_name); in php_userstreamop_rewinddir()
1386 zval func_name; in php_userstreamop_cast() local
1395 ZVAL_STRINGL(&func_name, USERSTREAM_CAST, sizeof(USERSTREAM_CAST)-1); in php_userstreamop_cast()
1406 call_result = call_method_if_exists(&us->object, &func_name, &retval, 1, args); in php_userstreamop_cast()
1439 zval_ptr_dtor(&func_name); in php_userstreamop_cast()