Home | History | Annotate | Download | only in coders

Lines Matching defs:context

195         *context;
198 context=xmlNanoFTPNewCtxt(filename);
199 if (context != (void *) NULL)
201 if (xmlNanoFTPConnect(context) >= 0)
202 (void) xmlNanoFTPGet(context,GetFTPData,(void *) file,
204 (void) xmlNanoFTPClose(context);
219 *context;
222 context=xmlNanoHTTPMethod(filename,(const char *) NULL,
224 if (context != (void *) NULL)
229 while ((bytes=xmlNanoHTTPRead(context,buffer,MaxBufferExtent)) > 0)
232 xmlNanoHTTPClose(context);