Lines Matching refs:atts

723 static void php_wddx_push_element(void *user_data, const XML_Char *name, const XML_Char **atts)  in php_wddx_push_element()  argument
730 if (atts) for (i=0; atts[i]; i++) { in php_wddx_push_element()
731 if (!strcmp((char *)atts[i], EL_VERSION)) { in php_wddx_push_element()
750 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
751 if (!strcmp((char *)atts[i], EL_CHAR_CODE) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
754 snprintf(tmp_buf, sizeof(tmp_buf), "%c", (char)strtol((char *)atts[i+1], NULL, 16)); in php_wddx_push_element()
770 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
771 if (!strcmp((char *)atts[i], EL_VALUE) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
774 php_wddx_process_data(user_data, atts[i+1], strlen((char *)atts[i+1])); in php_wddx_push_element()
802 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
803 if (!strcmp((char *)atts[i], EL_NAME) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
805 stack->varname = estrdup((char *)atts[i+1]); in php_wddx_push_element()
816 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
817 if (!strcmp((char *)atts[i], "fieldNames") && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
823 endp = (char *)atts[i] + strlen((char *)atts[i]); in php_wddx_push_element()
824 p1 = (char *)atts[i]; in php_wddx_push_element()
851 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
852 if (!strcmp((char *)atts[i], EL_NAME) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
858 …(field = zend_hash_str_find(Z_ARRVAL(recordset->data), (char*)atts[i+1], strlen((char *)atts[i+1])… in php_wddx_push_element()