Lines Matching defs:file
2 * @file
32 * This file is part of the lwIP TCP/IP stack.
80 /* the various debug levels for this file */
619 * HTTP client API: get a file by passing server IP address
664 * HTTP client API: get a file by passing server name as string (DNS name or IP address string)
712 FILE *file;
721 /** Initalize http client state for download to file system */
740 filestate->file = NULL;
749 /* could not open file */
753 filestate->file = f;
758 /** Free http client state for download to file system */
763 if (filestate->file != NULL) {
764 fclose(filestate->file);
765 filestate->file = NULL;
797 fwrite(q->payload, 1, q->len, filestate->file);
806 * HTTP client API: get a file to disk by passing server IP address
858 * HTTP client API: get a file to disk by passing server name as string (DNS name or IP address string)