/external/libdivsufsort/examples/ |
D | bwt.c | 81 const char *fname, *ofname; local 133 if(fopen_s(&ofp, ofname = argv[i], "wb") != 0) { 135 if((ofp = LFS_FOPEN(ofname = argv[i], "wb")) == NULL) { 137 fprintf(stderr, "%s: Cannot open file `%s': ", argv[0], ofname); 150 ofname = "stdout"; 177 fprintf(stderr, "%s: Cannot write to `%s': ", argv[0], ofname); 197 fprintf(stderr, "%s: Cannot write to `%s': ", argv[0], ofname);
|
D | mksary.c | 71 const char *fname, *ofname; local 111 if(fopen_s(&ofp, ofname = argv[2], "wb") != 0) { 113 if((ofp = LFS_FOPEN(ofname = argv[2], "wb")) == NULL) { 115 fprintf(stderr, "%s: Cannot open file `%s': ", argv[0], ofname); 128 ofname = "stdout"; 182 fprintf(stderr, "%s: Cannot write to `%s': ", argv[0], ofname);
|
D | unbwt.c | 83 const char *fname, *ofname; local 125 if(fopen_s(&ofp, ofname = argv[2], "wb") != 0) { 127 if((ofp = LFS_FOPEN(ofname = argv[2], "wb")) == NULL) { 129 fprintf(stderr, "%s: Cannot open file `%s': ", argv[0], ofname); 142 ofname = "stdout"; 184 fprintf(stderr, "%s: Cannot write to `%s': ", argv[0], ofname);
|
/external/scapy/ |
D | setup.py | 22 ofname = fname + ".old" 23 os.rename(fname, ofname) 24 of = open(ofname) 35 os.unlink(ofname)
|
/external/blktrace/ |
D | blkrawverify.c | 154 char ofname[1024]; in process() local 160 sprintf(ofname, "%s.verify.out", devname); in process() 163 *fp = fopen(ofname, "w"); in process() 166 ofname, strerror(errno)); in process() 284 char *ofname = malloc(1024); in main() local 295 sprintf(ofname, "%s.verify.out", devname); in main() 319 fprintf(stdout, "Wrote output to %s\n", ofname); in main()
|
D | blkparse.c | 2901 char ofname[PATH_MAX]; in main() local 2903 snprintf(ofname, sizeof(ofname) - 1, "%s", output_name); in main() 2904 ofp = fopen(ofname, "w"); in main()
|
/external/u-boot/board/gdsys/a38x/ |
D | dt_helpers.c | 13 int fdt_disable_by_ofname(void *rw_fdt_blob, char *ofname) in fdt_disable_by_ofname() argument 15 int offset = fdt_path_offset(rw_fdt_blob, ofname); in fdt_disable_by_ofname()
|
D | dt_helpers.h | 10 int fdt_disable_by_ofname(void *rw_fdt_blob, char *ofname);
|
/external/swiftshader/third_party/PowerVR_SDK/Shell/ |
D | PVRShell.h | 603 char * const ofname = NULL);
|
D | PVRShell.cpp | 580 char * const ofname) in PVRShellScreenSave() argument 615 if(ofname) // requested the output file name in PVRShellScreenSave() 617 strcpy(ofname, pszFileName); in PVRShellScreenSave()
|
/external/python/cpython3/Lib/ |
D | binhex.py | 144 ofname = ofp 145 ofp = io.open(ofname, 'wb')
|
/external/python/cpython2/Lib/ |
D | binhex.py | 177 ofname = ofp 178 ofp = open(ofname, 'w')
|
/external/python/cpython2/Lib/test/ |
D | test_subprocess.py | 737 ofhandle, ofname = tempfile.mkstemp() 746 os.remove(ofname) 750 self.assertFalse(os.path.exists(ofname))
|
/external/python/cpython3/Lib/test/ |
D | test_subprocess.py | 1290 ofhandle, ofname = tempfile.mkstemp() 1299 os.remove(ofname) 1303 self.assertFalse(os.path.exists(ofname))
|