Home
last modified time | relevance | path

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

/external/iproute2/misc/
Drtacct.c581 FILE *tfp; in main() local
583 if ((tfp = fopen("/proc/uptime", "r")) != NULL) { in main()
584 if (fscanf(tfp, "%ld", &uptime) != 1) in main()
586 fclose(tfp); in main()
Dnstat.c643 FILE *tfp; in main() local
645 if ((tfp = fopen("/proc/uptime", "r")) != NULL) { in main()
646 if (fscanf(tfp, "%ld", &uptime) != 1) in main()
648 fclose(tfp); in main()
Difstat.c813 FILE *tfp; in main() local
815 if ((tfp = fopen("/proc/uptime", "r")) != NULL) { in main()
816 if (fscanf(tfp, "%ld", &uptime) != 1) in main()
818 fclose(tfp); in main()
/external/skia/tests/
DImageStorageTest.cpp47 const TestFP& tfp = args.fFp.cast<TestFP>(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
53 if (GrPixelConfigIsSint(tfp.fImageStorageAccess.peekTexture()->config())) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/python/cpython2/Lib/
Durllib.py249 tfp = open(filename, 'wb')
259 tfp = os.fdopen(fd, 'wb')
277 tfp.write(block)
282 tfp.close()