Lines Matching refs:cb

53 			                stp_mxml_type_t (*cb)(stp_mxml_node_t *),
60 int (*cb)(stp_mxml_node_t *, int),
66 int (*cb)(stp_mxml_node_t *, int), int ws,
84 stp_mxml_type_t (*cb)(stp_mxml_node_t *))
87 return (mxml_load_data(top, fp, cb, mxml_file_getc));
104 stp_mxml_type_t (*cb)(stp_mxml_node_t *))
111 doc = stp_mxmlLoadFile(top, fp, cb);
131 stp_mxml_type_t (*cb)(stp_mxml_node_t *))
134 return (mxml_load_data(top, &s, cb, mxml_string_getc));
150 int (*cb)(stp_mxml_node_t *, int))
162 bytes = stp_mxmlSaveString(node, buffer, sizeof(buffer), cb);
185 stp_mxmlSaveString(node, s, bytes + 1, cb);
208 int (*cb)(stp_mxml_node_t *, int))
218 if ((col = mxml_write_node(node, fp, cb, 0, mxml_file_putc)) < 0)
235 int (*cb)(stp_mxml_node_t *, int))
243 answer = stp_mxmlSaveFile(node, fp, cb);
263 int (*cb)(stp_mxml_node_t *, int))
277 if ((col = mxml_write_node(node, ptr, cb, 0, mxml_string_putc)) < 0)
374 stp_mxml_type_t (*cb)(stp_mxml_node_t *),
404 if (cb && parent)
405 type = (*cb)(parent);
594 if (cb && parent)
595 type = (*cb)(parent);
627 if (cb && parent)
628 type = (*cb)(parent);
674 if (cb && parent)
675 type = (*cb)(parent);
1101 int (*cb)(stp_mxml_node_t *, int),
1120 col = mxml_write_ws(node, p, cb, STP_MXML_WS_BEFORE_OPEN, col, putc_cb);
1184 col = mxml_write_ws(node, p, cb, STP_MXML_WS_AFTER_OPEN, col, putc_cb);
1186 if ((col = mxml_write_node(node->child, p, cb, col, putc_cb)) < 0)
1192 col = mxml_write_ws(node, p, cb, STP_MXML_WS_BEFORE_CLOSE, col, putc_cb);
1205 col = mxml_write_ws(node, p, cb, STP_MXML_WS_AFTER_CLOSE, col, putc_cb);
1215 col = mxml_write_ws(node, p, cb, STP_MXML_WS_AFTER_OPEN, col, putc_cb);
1226 col = mxml_write_ws(node, p, cb, STP_MXML_WS_AFTER_OPEN, col, putc_cb);
1450 int (*cb)(stp_mxml_node_t *, int),
1460 if (cb && (ch = (*cb)(node, ws)) != 0)