Lines Matching refs:atts

739 static void php_wddx_push_element(void *user_data, const XML_Char *name, const XML_Char **atts)  in php_wddx_push_element()  argument
747 if (atts) for (i=0; atts[i]; i++) { in php_wddx_push_element()
748 if (!strcmp(atts[i], EL_VERSION)) { in php_wddx_push_element()
775 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
776 if (!strcmp(atts[i], EL_CHAR_CODE) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
779 snprintf(tmp_buf, sizeof(tmp_buf), "%c", (char)strtol(atts[i], NULL, 16)); in php_wddx_push_element()
796 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
797 if (!strcmp(atts[i], EL_VALUE) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
805 php_wddx_process_data(user_data, atts[i], strlen(atts[i])); in php_wddx_push_element()
837 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
838 if (!strcmp(atts[i], EL_NAME) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
839 stack->varname = estrdup(atts[i]); in php_wddx_push_element()
851 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
852 if (!strcmp(atts[i], "fieldNames") && atts[++i] && atts[i][0]) { in php_wddx_push_element()
857 endp = (char *)atts[i] + strlen(atts[i]); in php_wddx_push_element()
858 p1 = (char *)atts[i]; in php_wddx_push_element()
887 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
888 if (!strcmp(atts[i], EL_NAME) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
894 …zend_hash_find(Z_ARRVAL_P(recordset->data), (char*)atts[i], strlen(atts[i])+1, (void**)&field) == … in php_wddx_push_element()