Lines Matching refs:name

924 	char *name, *value;  in PHP_METHOD()  local
927 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) { in PHP_METHOD()
935 value = MagickGetImageProperty(intern->magick_wand, name); in PHP_METHOD()
952 char *name, *value; in PHP_METHOD() local
956 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &name, &name_len, &value, &value_len) =… in PHP_METHOD()
964 status = MagickSetImageProperty(intern->magick_wand, name, value); in PHP_METHOD()
982 char *name; in PHP_METHOD() local
988 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) { in PHP_METHOD()
998 status = DeleteImageProperty(image, name); in PHP_METHOD()
5094 char *name, *profile; in PHP_METHOD() local
5099 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &name, &name_len, &profile, &profile_le… in PHP_METHOD()
5107 status = MagickProfileImage(intern->magick_wand, name, profile, profile_len); in PHP_METHOD()
5221 char *name; in PHP_METHOD() local
5231 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) { in PHP_METHOD()
5239 profile = MagickRemoveImageProfile(intern->magick_wand, name, &profile_len); in PHP_METHOD()
5695 char *name, *profile; local
5700 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &name, &name_len, &profile, &profile_le…
5708 status = MagickSetImageProfile(intern->magick_wand, name, profile, profile_len);
7472 char *profile, *name; local
7480 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) {
7488 profile = (char *)MagickGetImageProfile(intern->magick_wand, name, &length);