| /src/bin/ed/ |
| buf.c | 202 char *sfn = NULL; /* scratch file name */ variable 220 (void)asprintf(&sfn, "%sed.XXXXXX", tmp); 222 (void)asprintf(&sfn, "%s/ed.XXXXXX", tmp); 223 if (sfn == NULL) { 231 if ((fd = mkstemp(sfn)) == -1 || (sfp = fdopen(fd, "w+")) == NULL) { 234 warn("%s", sfn); 250 fprintf(stderr, "%s: %s\n", sfn, strerror(errno)); 255 if (sfn) { 256 unlink(sfn); 257 free(sfn); [all...] |
| /src/usr.sbin/npf/npftest/ |
| npftest.c | 134 char sfn[32]; local 141 strlcpy(sfn, "/tmp/npftest_cdb.XXXXXX", sizeof(sfn)); 142 if ((fd = mkstemp(sfn)) == -1) { 145 unlink(sfn);
|
| /src/external/mit/xorg/lib/gallium/ |
| Makefile | 87 drivers/r600/sfn \ 680 GALLIUM_SOURCES.drivers/r600/sfn = \ macro 859 .for _f in ${GALLIUM_SOURCES.drivers/r600} ${GALLIUM_SOURCES.drivers/r600/sb} ${GALLIUM_SOURCES.drivers/radeonsi} ${GALLIUM_SOURCES.drivers/r600/sfn}
|
| /src/sys/lib/libsa/ |
| dosfs.c | 518 u_char sfn[13]; local 587 cp_sfn(sfn, &dir[ent].de); 588 ok = !strcasecmp(name, (const char *)sfn); 651 cp_sfn(u_char *sfn, struct direntry *de) 656 p = sfn; 669 if (*sfn == 5) 670 *sfn = 0xe5;
|
| /src/lib/libnpf/ |
| npf.c | 1186 char sfn[32]; local 1222 strncpy(sfn, "/tmp/npfcdb.XXXXXX", sizeof(sfn)); 1223 sfn[sizeof(sfn) - 1] = '\0'; 1225 if ((fd = mkstemp(sfn)) == -1) { 1229 unlink(sfn);
|
| /src/external/bsd/pcc/dist/pcc/cc/cc/ |
| cc.c | 1524 char *sfn = xstrdup("/tmp/ctm.XXXXXX"); local 1527 if ((fd = mkstemp(sfn)) == -1) 1528 errorx(8, "%s: %s\n", sfn, strerror(errno)); 1530 return sfn;
|
| /src/external/gpl3/gdb/dist/gdb/ |
| infcmd.c | 1062 struct symbol *sfn; 1106 sfn = find_pc_sect_containing_function (sal.pc, 1108 if (fn != nullptr && sfn != fn) 1120 if (sfn != nullptr) 1124 section = sfn->obj_section (sfn->objfile ()); 1059 struct symbol *sfn; local
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| infcmd.c | 1061 struct symbol *sfn; 1104 sfn = find_pc_sect_containing_function (sal.pc, 1106 if (fn != nullptr && sfn != fn) 1116 if (sfn != nullptr) 1120 section = sfn->obj_section (sfn->objfile ()); 1058 struct symbol *sfn; local
|