HomeSort by relevance Sort by last modified time
    Searched refs:exfp (Results 1 - 2 of 2) sorted by null

  /external/toybox/toys/pending/
userdel.c 28 FILE *exfp, *newfp; local
34 exfp = xfopen(filename, "r+");
45 if (fcntl(fileno(exfp), F_SETLK, &lock) < 0)
52 while ((line = get_line(fileno(exfp))) != NULL){
78 fcntl(fileno(exfp), F_SETLK, &lock);
79 fclose(exfp);
  /external/toybox/lib/
password.c 111 FILE *exfp, *newfp; local
119 exfp = fopen(filename, "r+");
120 if (!exfp) {
136 ret = fcntl(fileno(exfp), F_SETLK, &lock);
145 fclose(exfp);
151 while ((line = get_line(fileno(exfp))) != NULL)
181 fcntl(fileno(exfp), F_SETLK, &lock);
182 fclose(exfp);

Completed in 119 milliseconds