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

  /external/toybox/toys/pending/
userdel.c 28 FILE *exfp, *newfp; local
50 newfp = xfopen(filenamesfx, "w+");
63 fprintf(newfp, "%s%s\n", line, n);
68 fprintf(newfp, "%s%s\n", line, n);
72 if (!n) fprintf(newfp, "%s\n", line);
73 } else fprintf(newfp, "%s\n", line);
81 fflush(newfp);
82 fsync(fileno(newfp));
83 fclose(newfp);
  /external/toybox/lib/
password.c 113 FILE *exfp, *newfp; local
143 newfp = fopen(filenamesfx, "w+");
144 if (!newfp) {
156 fprintf(newfp, "%s\n", line);
162 fprintf(newfp, "%s%s:",namesfx, entry);
165 fprintf(newfp, "%u:",(unsigned)(time(NULL))/(24*60*60));
167 fprintf(newfp, "%s\n",current_ptr);
168 } else fprintf(newfp, "%s\n",current_ptr);
175 fprintf(newfp, "%s", line);
176 fprintf(newfp, "%s\n", entry)
    [all...]
  /build/make/tools/releasetools/
target_files_diff.py 129 with tempfile.NamedTemporaryFile() as newfp:
131 REWRITE_RULES[name](oldfp, newfp)
132 newfp.flush()
133 yield newfp.name

Completed in 1193 milliseconds