Home | History | Annotate | Download | only in os400

Lines Matching defs:ts

56         char * ts;
67 ts = (char *) NULL;
78 err = !(ts = xmlMalloc(4 * l + 4));
80 dstp = ts;
105 ts = xmlRealloc(ts, (dstp - ts) + 4);
107 ret = (const char *) ts;
108 ts = (char *) NULL;
112 (xmlChar *) ts, dstp - ts + 1);
116 if (ts)
117 xmlFree(ts);
144 xmlChar * ts;
155 ts = (xmlChar *) xmlMalloc(6 * l + 1);
157 if (!ts)
160 dstp = (char *) ts;
170 xmlFree((char *) ts);
180 xmlFree((char *) ts);
189 ts = xmlRealloc(ts, (dstp - ts) + 1);
191 return ts;
194 ret = xmlDictLookup(*dict, ts, dstp - ts + 1);
195 xmlFree((char *) ts);