argument          657 Zend/zend_hash.c ZEND_API void zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *argument TSRMLS_DC)
argument          666 Zend/zend_hash.c 		int result = apply_func(p->pData, argument TSRMLS_CC);
argument          134 Zend/zend_hash.h typedef int (*apply_func_arg_t)(void *pDest, void *argument TSRMLS_DC);
argument          165 Zend/zend_ts_hash.c ZEND_API void zend_ts_hash_apply_with_argument(TsHashTable *ht, apply_func_arg_t apply_func, void *argument TSRMLS_DC)
argument          168 Zend/zend_ts_hash.c 	zend_hash_apply_with_argument(TS_HASH(ht), apply_func, argument TSRMLS_CC);
argument          491 ext/interbase/ibase_service.c 	long action, argument = 0;
argument          497 ext/interbase/ibase_service.c 			&res, &db, &dblen, &action, &argument)) {
argument          535 ext/interbase/ibase_service.c 				argument |= action;
argument          546 ext/interbase/ibase_service.c 					(char)action, (char)argument, (char)(argument >> 8), (char)(argument >> 16),
argument          547 ext/interbase/ibase_service.c 					(char)(argument >> 24));
argument          555 ext/interbase/ibase_service.c 					db, (char)action, (char)argument);
argument          287 ext/interbase/interbase.c 	ZEND_ARG_INFO(0, argument)
argument          294 ext/interbase/interbase.c 	ZEND_ARG_INFO(0, argument)
argument          350 ext/mysqlnd/mysqlnd.c 		cmd_packet->argument = arg;
argument           75 ext/mysqlnd/mysqlnd.h PHPAPI void _mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument TSRMLS_DC);
argument           76 ext/mysqlnd/mysqlnd.h #define mysqlnd_plugin_apply_with_argument(func, argument) _mysqlnd_plugin_apply_with_argument((func), (argument) TSRMLS_CC);
argument          170 ext/mysqlnd/mysqlnd_plugin.c PHPAPI void _mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument TSRMLS_DC)
argument          180 ext/mysqlnd/mysqlnd_plugin.c 		int result = apply_func(p->pData, argument TSRMLS_CC);
argument          995 ext/mysqlnd/mysqlnd_wireprotocol.c 	if (!packet->argument || !packet->arg_len) {
argument         1012 ext/mysqlnd/mysqlnd_wireprotocol.c 		memcpy(p, packet->argument, packet->arg_len);
argument          160 ext/mysqlnd/mysqlnd_wireprotocol.h 	const zend_uchar				*argument;
argument           68 ext/mysqlnd/php_mysqlnd.c mysqlnd_minfo_dump_plugin_stats(void *pDest, void * argument TSRMLS_DC)
argument          374 ext/opcache/zend_accelerator_blacklist.c void zend_accel_blacklist_apply(zend_blacklist *blacklist, apply_func_arg_t func, void *argument TSRMLS_DC)
argument          379 ext/opcache/zend_accelerator_blacklist.c 		func(&blacklist->entries[i], argument TSRMLS_CC);
argument           47 ext/opcache/zend_accelerator_blacklist.h void zend_accel_blacklist_apply(zend_blacklist *blacklist, apply_func_arg_t func, void *argument TSRMLS_DC);
argument           35 ext/phar/phar.c static int phar_set_writeable_bit(void *pDest, void *argument TSRMLS_DC) /* {{{ */
argument           37 ext/phar/phar.c 	zend_bool keep = *(zend_bool *)argument;
argument          327 ext/phar/phar.c static int phar_unalias_apply(void *pDest, void *argument TSRMLS_DC) /* {{{ */
argument          329 ext/phar/phar.c 	return *(void**)pDest == argument ? ZEND_HASH_APPLY_REMOVE : ZEND_HASH_APPLY_KEEP;
argument         3141 ext/phar/phar_object.c static int phar_set_compression(void *pDest, void *argument TSRMLS_DC) /* {{{ */
argument         3144 ext/phar/phar_object.c 	php_uint32 compress = *(php_uint32 *)argument;
argument         3158 ext/phar/phar_object.c static int phar_test_compression(void *pDest, void *argument TSRMLS_DC) /* {{{ */
argument         3168 ext/phar/phar_object.c 			*(int *) argument = 0;
argument         3174 ext/phar/phar_object.c 			*(int *) argument = 0;
argument          700 ext/phar/tar.c static int phar_tar_writeheaders(void *pDest, void *argument TSRMLS_DC) /* {{{ */
argument          705 ext/phar/tar.c 	struct _phar_pass_tar_info *fp = (struct _phar_pass_tar_info *)argument;
argument          886 ext/phar/tar.c static int phar_tar_setupmetadata(void *pDest, void *argument TSRMLS_DC) /* {{{ */
argument          889 ext/phar/tar.c 	struct _phar_pass_tar_info *i = (struct _phar_pass_tar_info *)argument;
argument         1980 ext/phar/util.c static int phar_update_cached_entry(void *data, void *argument) /* {{{ */
argument         1985 ext/phar/util.c 	entry->phar = (phar_archive_data *)argument;
argument         3359 ext/reflection/php_reflection.c 	zval *argument;
argument         3366 ext/reflection/php_reflection.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "o", &argument) == FAILURE) {
argument         3370 ext/reflection/php_reflection.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z/", &argument) == FAILURE) {
argument         3381 ext/reflection/php_reflection.c 	if (Z_TYPE_P(argument) == IS_OBJECT) {
argument         3383 ext/reflection/php_reflection.c 		ZVAL_STRINGL(classname, Z_OBJCE_P(argument)->name, Z_OBJCE_P(argument)->name_length, 1);
argument         3385 ext/reflection/php_reflection.c 		intern->ptr = Z_OBJCE_P(argument);
argument         3387 ext/reflection/php_reflection.c 			intern->obj = argument;
argument         3388 ext/reflection/php_reflection.c 			zval_add_ref(&argument);
argument         3391 ext/reflection/php_reflection.c 		convert_to_string_ex(&argument);
argument         3392 ext/reflection/php_reflection.c 		if (zend_lookup_class(Z_STRVAL_P(argument), Z_STRLEN_P(argument), &ce TSRMLS_CC) == FAILURE) {
argument         3394 ext/reflection/php_reflection.c 				zend_throw_exception_ex(reflection_exception_ptr, -1 TSRMLS_CC, "Class %s does not exist", Z_STRVAL_P(argument));
argument         4593 ext/reflection/php_reflection.c 	reflection_object *intern, *argument;
argument         4615 ext/reflection/php_reflection.c 				argument = (reflection_object *) zend_object_store_get_object(class_name TSRMLS_CC);
argument         4616 ext/reflection/php_reflection.c 				if (argument == NULL || argument->ptr == NULL) {
argument         4620 ext/reflection/php_reflection.c 				class_ce = argument->ptr;
argument         4638 ext/reflection/php_reflection.c 	reflection_object *intern, *argument;
argument         4660 ext/reflection/php_reflection.c 				argument = (reflection_object *) zend_object_store_get_object(interface TSRMLS_CC);
argument         4661 ext/reflection/php_reflection.c 				if (argument == NULL || argument->ptr == NULL) {
argument         4665 ext/reflection/php_reflection.c 				interface_ce = argument->ptr;
argument         5877 ext/reflection/php_reflection.c 	ZEND_ARG_INFO(0, argument)
argument         5882 ext/reflection/php_reflection.c 	ZEND_ARG_INFO(0, argument)
argument         6006 ext/reflection/php_reflection.c 	ZEND_ARG_INFO(0, argument)
argument         6011 ext/reflection/php_reflection.c 	ZEND_ARG_INFO(0, argument)
argument          506 ext/standard/exec.c 	char *argument;
argument          510 ext/standard/exec.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &argument, &argument_len) == FAILURE) {
argument          514 ext/standard/exec.c 	if (argument) {
argument          515 ext/standard/exec.c 		if (argument_len != strlen(argument)) {
argument          519 ext/standard/exec.c 		cmd = php_escape_shell_arg(argument);