|
|
@ -180,8 +180,7 @@ PHP_METHOD(EnumDescriptor, getValue) { |
|
|
|
zend_long index; |
|
|
|
zend_long index; |
|
|
|
zval ret; |
|
|
|
zval ret; |
|
|
|
|
|
|
|
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &index) == |
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &index) == FAILURE) { |
|
|
|
FAILURE) { |
|
|
|
|
|
|
|
zend_error(E_USER_ERROR, "Expect integer for index.\n"); |
|
|
|
zend_error(E_USER_ERROR, "Expect integer for index.\n"); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
@ -284,8 +283,7 @@ PHP_METHOD(OneofDescriptor, getField) { |
|
|
|
zend_long index; |
|
|
|
zend_long index; |
|
|
|
zval ret; |
|
|
|
zval ret; |
|
|
|
|
|
|
|
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &index) == |
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &index) == FAILURE) { |
|
|
|
FAILURE) { |
|
|
|
|
|
|
|
zend_error(E_USER_ERROR, "Expect integer for index.\n"); |
|
|
|
zend_error(E_USER_ERROR, "Expect integer for index.\n"); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
@ -615,8 +613,7 @@ PHP_METHOD(Descriptor, getField) { |
|
|
|
zval ret; |
|
|
|
zval ret; |
|
|
|
zend_long index; |
|
|
|
zend_long index; |
|
|
|
|
|
|
|
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &index) == |
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &index) == FAILURE) { |
|
|
|
FAILURE) { |
|
|
|
|
|
|
|
zend_error(E_USER_ERROR, "Expect integer for index.\n"); |
|
|
|
zend_error(E_USER_ERROR, "Expect integer for index.\n"); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
@ -658,8 +655,7 @@ PHP_METHOD(Descriptor, getOneofDecl) { |
|
|
|
zend_long index; |
|
|
|
zend_long index; |
|
|
|
zval ret; |
|
|
|
zval ret; |
|
|
|
|
|
|
|
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &index) == |
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &index) == FAILURE) { |
|
|
|
FAILURE) { |
|
|
|
|
|
|
|
zend_error(E_USER_ERROR, "Expect integer for index.\n"); |
|
|
|
zend_error(E_USER_ERROR, "Expect integer for index.\n"); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
@ -799,8 +795,8 @@ PHP_METHOD(DescriptorPool, getDescriptorByClassName) { |
|
|
|
zend_string *str; |
|
|
|
zend_string *str; |
|
|
|
zval ret; |
|
|
|
zval ret; |
|
|
|
|
|
|
|
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &classname, |
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &classname, &classname_len) == |
|
|
|
&classname_len) == FAILURE) { |
|
|
|
FAILURE) { |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -828,8 +824,8 @@ PHP_METHOD(DescriptorPool, getEnumDescriptorByClassName) { |
|
|
|
zend_string *str; |
|
|
|
zend_string *str; |
|
|
|
zval ret; |
|
|
|
zval ret; |
|
|
|
|
|
|
|
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &classname, |
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &classname, &classname_len) == |
|
|
|
&classname_len) == FAILURE) { |
|
|
|
FAILURE) { |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -856,8 +852,8 @@ PHP_METHOD(DescriptorPool, getDescriptorByProtoName) { |
|
|
|
zend_long protoname_len; |
|
|
|
zend_long protoname_len; |
|
|
|
const upb_msgdef *m; |
|
|
|
const upb_msgdef *m; |
|
|
|
|
|
|
|
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &protoname, |
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &protoname, &protoname_len) == |
|
|
|
&protoname_len) == FAILURE) { |
|
|
|
FAILURE) { |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|