Lines Matching refs:option_buffer
521 zval *option_buffer; in PHP_FUNCTION() local
536 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("functions")))) { in PHP_FUNCTION()
537 by_function = zend_is_true(option_buffer); in PHP_FUNCTION()
540 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("opcodes")))) { in PHP_FUNCTION()
542 by_opcode = zend_is_true(option_buffer); in PHP_FUNCTION()
546 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("files")))) { in PHP_FUNCTION()
547 ZVAL_DEREF(option_buffer); in PHP_FUNCTION()
548 if (Z_TYPE_P(option_buffer) == IS_ARRAY && zend_hash_num_elements(Z_ARR_P(option_buffer)) > 0) { in PHP_FUNCTION()
554 ZEND_HASH_FOREACH_VAL(Z_ARR_P(option_buffer), filename) { in PHP_FUNCTION()
622 zval *option_buffer; in PHP_FUNCTION() local
641 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("functions")))) { in PHP_FUNCTION()
642 by_function = zend_is_true(option_buffer); in PHP_FUNCTION()
645 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("opcodes")))) { in PHP_FUNCTION()
647 by_opcode = zend_is_true(option_buffer); in PHP_FUNCTION()