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()
840 zval func_name; in php_userstreamop_stat() local
846 ZVAL_STRINGL(&func_name, USERSTREAM_STAT, sizeof(USERSTREAM_STAT)-1); in php_userstreamop_stat()
848 call_result = call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_stat()
861 zval_ptr_dtor(&func_name); in php_userstreamop_stat()
868 zval func_name; in php_userstreamop_set_option() local
877 ZVAL_STRINGL(&func_name, USERSTREAM_EOF, sizeof(USERSTREAM_EOF)-1); in php_userstreamop_set_option()
878 call_result = call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_set_option()
888 zval_ptr_dtor(&func_name); in php_userstreamop_set_option()
910 ZVAL_STRINGL(&func_name, USERSTREAM_LOCK, sizeof(USERSTREAM_LOCK)-1); in php_userstreamop_set_option()
912 call_result = call_method_if_exists(&us->object, &func_name, &retval, 1, args); in php_userstreamop_set_option()
928 zval_ptr_dtor(&func_name); in php_userstreamop_set_option()
933 ZVAL_STRINGL(&func_name, USERSTREAM_TRUNCATE, sizeof(USERSTREAM_TRUNCATE)-1); in php_userstreamop_set_option()
937 …if (zend_is_callable_ex(&func_name, Z_OBJ(us->object), IS_CALLABLE_SUPPRESS_DEPRECATIONS, NULL, NU… in php_userstreamop_set_option()
947 call_result = call_method_if_exists(&us->object, &func_name, &retval, 1, args); in php_userstreamop_set_option()
970 zval_ptr_dtor(&func_name); in php_userstreamop_set_option()
978 ZVAL_STRINGL(&func_name, USERSTREAM_SET_OPTION, sizeof(USERSTREAM_SET_OPTION)-1); in php_userstreamop_set_option()
1007 call_result = call_method_if_exists(&us->object, &func_name, &retval, 3, args); in php_userstreamop_set_option()
1023 zval_ptr_dtor(&func_name); in php_userstreamop_set_option()
1313 zval func_name; in php_userstreamop_readdir() local
1324 ZVAL_STRINGL(&func_name, USERSTREAM_DIR_READ, sizeof(USERSTREAM_DIR_READ)-1); in php_userstreamop_readdir()
1326 call_result = call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_readdir()
1340 zval_ptr_dtor(&func_name); in php_userstreamop_readdir()
1347 zval func_name; in php_userstreamop_closedir() local
1353 ZVAL_STRINGL(&func_name, USERSTREAM_DIR_CLOSE, sizeof(USERSTREAM_DIR_CLOSE)-1); in php_userstreamop_closedir()
1355 call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_closedir()
1358 zval_ptr_dtor(&func_name); in php_userstreamop_closedir()
1369 zval func_name; in php_userstreamop_rewinddir() local
1373 ZVAL_STRINGL(&func_name, USERSTREAM_DIR_REWIND, sizeof(USERSTREAM_DIR_REWIND)-1); in php_userstreamop_rewinddir()
1375 call_method_if_exists(&us->object, &func_name, &retval, 0, NULL); in php_userstreamop_rewinddir()
1378 zval_ptr_dtor(&func_name); in php_userstreamop_rewinddir()
1387 zval func_name; in php_userstreamop_cast() local
1396 ZVAL_STRINGL(&func_name, USERSTREAM_CAST, sizeof(USERSTREAM_CAST)-1); in php_userstreamop_cast()
1407 call_result = call_method_if_exists(&us->object, &func_name, &retval, 1, args); in php_userstreamop_cast()
1440 zval_ptr_dtor(&func_name); in php_userstreamop_cast()