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 113 FILE *exfp, *newfp; local
121 exfp = fopen(filename, "r+");
122 if (!exfp) {
138 ret = fcntl(fileno(exfp), F_SETLK, &lock);
147 fclose(exfp);
153 while ((line = get_line(fileno(exfp))) != NULL)
183 fcntl(fileno(exfp), F_SETLK, &lock);
184 fclose(exfp);

Completed in 46 milliseconds