Lines Matching refs:atts

719 static void php_wddx_push_element(void *user_data, const XML_Char *name, const XML_Char **atts)  in php_wddx_push_element()  argument
726 if (atts) for (i=0; atts[i]; i++) { in php_wddx_push_element()
727 if (!strcmp((char *)atts[i], EL_VERSION)) { in php_wddx_push_element()
746 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
747 if (!strcmp((char *)atts[i], EL_CHAR_CODE) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
750 snprintf(tmp_buf, sizeof(tmp_buf), "%c", (char)strtol((char *)atts[i+1], NULL, 16)); in php_wddx_push_element()
766 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
767 if (!strcmp((char *)atts[i], EL_VALUE) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
770 php_wddx_process_data(user_data, atts[i+1], strlen((char *)atts[i+1])); in php_wddx_push_element()
798 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
799 if (!strcmp((char *)atts[i], EL_NAME) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
801 stack->varname = estrdup((char *)atts[i+1]); in php_wddx_push_element()
812 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
813 if (!strcmp((char *)atts[i], "fieldNames") && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
819 endp = (char *)atts[i] + strlen((char *)atts[i]); in php_wddx_push_element()
820 p1 = (char *)atts[i]; in php_wddx_push_element()
847 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
848 if (!strcmp((char *)atts[i], EL_NAME) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
854 …(field = zend_hash_str_find(Z_ARRVAL(recordset->data), (char*)atts[i+1], strlen((char *)atts[i+1])… in php_wddx_push_element()