Lines Matching refs:vtype
256 const char* xmlrpc_type_as_str(XMLRPC_VALUE_TYPE type, XMLRPC_VECTOR_TYPE vtype);
556 XMLRPC_VECTOR_TYPE vtype; in PHP_to_XMLRPC_worker() local
567 vtype = determine_vector_type(Z_ARRVAL(val_arr)); in PHP_to_XMLRPC_worker()
568 xReturn = XMLRPC_CreateVector(key, vtype); in PHP_to_XMLRPC_worker()
579 if (vtype != xmlrpc_vector_array) { in PHP_to_XMLRPC_worker()
1221 const char* xmlrpc_type_as_str(XMLRPC_VALUE_TYPE type, XMLRPC_VECTOR_TYPE vtype) /* {{{ */ in xmlrpc_type_as_str() argument
1225 if (vtype == xmlrpc_vector_none) { in xmlrpc_type_as_str()
1228 return str_mapping[XMLRPC_TYPE_COUNT + vtype]; in xmlrpc_type_as_str()
1391 XMLRPC_VALUE_TYPE vtype; in PHP_FUNCTION() local
1397 vtype = xmlrpc_str_as_type(type); in PHP_FUNCTION()
1398 if (vtype != xmlrpc_none) { in PHP_FUNCTION()
1399 if (set_zval_xmlrpc_type(arg, vtype) == SUCCESS) { in PHP_FUNCTION()
1415 XMLRPC_VECTOR_TYPE vtype = xmlrpc_vector_none; in PHP_FUNCTION() local
1423 vtype = determine_vector_type((Z_TYPE_P(arg) == IS_OBJECT) ? Z_OBJPROP_P(arg) : Z_ARRVAL_P(arg)); in PHP_FUNCTION()
1426 RETURN_STRING((char*) xmlrpc_type_as_str(type, vtype)); in PHP_FUNCTION()