Lines Matching refs:atts
736 static void php_wddx_push_element(void *user_data, const XML_Char *name, const XML_Char **atts) in php_wddx_push_element() argument
744 if (atts) for (i=0; atts[i]; i++) { in php_wddx_push_element()
745 if (!strcmp(atts[i], EL_VERSION)) { in php_wddx_push_element()
772 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
773 if (!strcmp(atts[i], EL_CHAR_CODE) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
776 snprintf(tmp_buf, sizeof(tmp_buf), "%c", (char)strtol(atts[i], NULL, 16)); in php_wddx_push_element()
793 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
794 if (!strcmp(atts[i], EL_VALUE) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
802 php_wddx_process_data(user_data, atts[i], strlen(atts[i])); in php_wddx_push_element()
834 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
835 if (!strcmp(atts[i], EL_NAME) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
836 stack->varname = estrdup(atts[i]); in php_wddx_push_element()
848 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
849 if (!strcmp(atts[i], "fieldNames") && atts[++i] && atts[i][0]) { in php_wddx_push_element()
854 endp = (char *)atts[i] + strlen(atts[i]); in php_wddx_push_element()
855 p1 = (char *)atts[i]; in php_wddx_push_element()
884 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
885 if (!strcmp(atts[i], EL_NAME) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
891 …zend_hash_find(Z_ARRVAL_P(recordset->data), (char*)atts[i], strlen(atts[i])+1, (void**)&field) == … in php_wddx_push_element()