Home
last modified time | relevance | path

Searched refs:hostf (Results 1 – 1 of 1) sorted by relevance

/third_party/musl/porting/liteos_a/user/src/network/
Dent.c20 FILE *hostf; member
92 hd->hostf = NULL; in gethostent()
95 if (!hd->hostf && !(hd->hostf = fopen(HOST_FILE_PATH, "r"))) { in gethostent()
102 if (!fgets(hd->buf, BUFFER_SIZE, hd->hostf)) { in gethostent()
118 hd->hostf = NULL; in sethostent()
120 if (hd->hostf == NULL) in sethostent()
121 hd->hostf = fopen(NET_FILE_PATH, "r"); in sethostent()
123 rewind(hd->hostf); in sethostent()
132 if (hd->hostf != NULL) in endhostent()
133 fclose(hd->hostf); in endhostent()