atts              737 ext/wddx/wddx.c static void php_wddx_push_element(void *user_data, const XML_Char *name, const XML_Char **atts)
atts              745 ext/wddx/wddx.c 		if (atts) for (i=0; atts[i]; i++) {
atts              746 ext/wddx/wddx.c 			if (!strcmp(atts[i], EL_VERSION)) {
atts              773 ext/wddx/wddx.c 		if (atts) for (i = 0; atts[i]; i++) {
atts              774 ext/wddx/wddx.c 			if (!strcmp(atts[i], EL_CHAR_CODE) && atts[++i] && atts[i][0]) {
atts              777 ext/wddx/wddx.c 				snprintf(tmp_buf, sizeof(tmp_buf), "%c", (char)strtol(atts[i], NULL, 16));
atts              794 ext/wddx/wddx.c 		if (atts) for (i = 0; atts[i]; i++) {
atts              795 ext/wddx/wddx.c 			if (!strcmp(atts[i], EL_VALUE) && atts[++i] && atts[i][0]) {
atts              803 ext/wddx/wddx.c 				php_wddx_process_data(user_data, atts[i], strlen(atts[i]));
atts              835 ext/wddx/wddx.c 		if (atts) for (i = 0; atts[i]; i++) {
atts              836 ext/wddx/wddx.c 			if (!strcmp(atts[i], EL_NAME) && atts[++i] && atts[i][0]) {
atts              837 ext/wddx/wddx.c 				stack->varname = estrdup(atts[i]);
atts              849 ext/wddx/wddx.c 		if (atts) for (i = 0; atts[i]; i++) {
atts              850 ext/wddx/wddx.c 			if (!strcmp(atts[i], "fieldNames") && atts[++i] && atts[i][0]) {
atts              855 ext/wddx/wddx.c 				endp = (char *)atts[i] + strlen(atts[i]);
atts              856 ext/wddx/wddx.c 				p1 = (char *)atts[i];
atts              885 ext/wddx/wddx.c 		if (atts) for (i = 0; atts[i]; i++) {
atts              886 ext/wddx/wddx.c 			if (!strcmp(atts[i], EL_NAME) && atts[++i] && atts[i][0]) {
atts              892 ext/wddx/wddx.c 					zend_hash_find(Z_ARRVAL_P(recordset->data), (char*)atts[i], strlen(atts[i])+1, (void**)&field) == SUCCESS) {