Searched defs:file1 (Results 1 - 13 of 13) sorted by relevance

/illumos-gate/usr/src/cmd/bnu/
H A Dbnuconvert.c43 char file1[NAMESIZE+1], file2[NAMESIZE+1]; local
84 while (gdirf(spooldir, file1, SPOOL)) {
86 (void) sprintf(Rmtname, "%s", file1);
87 (void) sprintf(machname, "%s/%s", SPOOL, file1);
88 DEBUG(9, "File1 is (%s)\n", file1);
H A Duucp.c66 char file1[MAXFULLNAME], file2[MAXFULLNAME]; local
313 (void) split(argv[optind], sys1, fwd1, file1);
342 if ((strchr(file1, '*') != NULL
343 || strchr(file1, '?') != NULL
344 || strchr(file1, '[') != NULL)) {
346 if (ckexpf(file1) == FAIL)
355 ruux(sys1, sys1, file1, sys2p, fwd2, file2);
366 ruux(sys2, sys1, file1, "", fwd2, file2);
379 ruux(sys2, sys1, file1, "", fwd2, file2);
400 DEBUG(4, "file1
491 char file1[MAXFULLNAME], file2[MAXFULLNAME]; local
[all...]
H A Duucleanup.c161 char file1[NAMESIZE+1], file2[NAMESIZE+1], file3[NAMESIZE+1]; local
254 while (gdirf(spooldir, file1, SPOOL) == TRUE) {
256 if (*soptName && !EQUALS(soptName, file1))
259 (void) strcpy(Rmtname, file1);
260 (void) sprintf(machname, "%s/%s", SPOOL, file1);
269 DEBUG(7, "Directory: (%s) is open\n", file1);
275 LOCKPRE, SYSNSIZE, file1, file2);
388 char file1[BUFSIZ], file2[BUFSIZ], file3[BUFSIZ], type[2], opt[256]; local
423 if (sscanf(buf,"%s%s%s%s%s%s", type, file1, file2,
437 if (EQUALSN(file1, "
484 char file1[BUFSIZ], file2[BUFSIZ], file3[BUFSIZ], type[2], opt[256]; local
[all...]
H A Duustat.c473 char file1[BUFSIZ], file2[BUFSIZ], file3[BUFSIZ], type[2], opt[256]; local
520 if (sscanf(buf,"%s%s%s%s%s%s", type, file1, file2,
526 DEBUG(9, "file1 (%s)", file1);
582 sprintf(format_tmp,"%s %s ", user, file1);
587 sprintf(format_tmp,"%s %ld %s ", user, fsize(dir, file3, file1), file1);
591 (void) sprintf(xfullname, "%s/%s", dir, file1);
712 char file1[BUFSIZ], file2[BUFSIZ], file3[BUFSIZ], type[2], opt[256]; local
758 if (sscanf(buf,"%s%s%s%s%s%s", type, file1, file
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Dcmp.c99 cmp(const char* file1, Sfio_t* f1, const char* file2, Sfio_t* f2, int flags) argument
122 error(ERROR_exit(1), "EOF on %s", file1);
169 sfprintf(sfstdout, "%s %s differ: char %I*d, line %I*u\n", file1, file2, sizeof(pos), pos - (last - p1), sizeof(lines), lines);
187 char* file1; local
221 if (error_info.errors || !(file1 = *argv++) || !(file2 = *argv++))
224 if (streq(file1, "-"))
226 else if (!(f1 = sfopen(NiL, file1, "r")))
229 error(ERROR_system(0), "%s: cannot open", file1);
245 error(ERROR_exit(0), "%s: %s: invalid skip", file1, s);
266 error(ERROR_exit(0), "EOF on %s", file1);
[all...]
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/
H A Dcap.c56 Dbg_cap_identical(Lm_list *lml, const char *file1, const char *file2) argument
61 dbg_print(lml, MSG_INTL(MSG_CAP_IDENTICAL), file1, file2);
/illumos-gate/usr/src/cmd/sgs/error/common/
H A Derrorinput.c348 char *file1, *file2; local
368 (persperdexplode(wordv[wordc-2], &line1, &file1))) {
371 nwordv1[0] = file1; nwordv1[1] = line1;
/illumos-gate/usr/src/lib/libshell/common/bltins/
H A Dtest.c516 static time_t test_time(const char *file1,const char *file2) argument
521 if(test_stat(file1,&statb1)<0)
538 int test_inode(const char *file1,const char *file2) argument
541 if(test_stat(file1,&stat1)>=0 && test_stat(file2,&stat2)>=0)
/illumos-gate/usr/src/cmd/diff/
H A Ddiff.h160 * With diffdir, file1 and file2 are allocated BUFSIZ space,
164 char *file1, *file2, *efile1, *efile2; variable
H A Ddiff.c50 * J[i] is the index of the line in file1 corresponding
52 * such line in file1.
57 * collects the equivalence classes in file1 together.
60 * matching equivalence in (the reordered) file1.
61 * To save space equiv squeezes file1 into a single
72 * pair of lines x,y (x in file0 y in file1) such that
75 * lines of file1, but there is no such subsequence for
80 * lines in file1 matable to a line in file0 has serial number
102 * are (in words) 2*length(file0) + length(file1) +
341 file1
1364 scanpr(struct dir *dp, int test, char *title, char *file1, char *efile1, char *file2, char *efile2) argument
[all...]
/illumos-gate/usr/src/cmd/sdiff/
H A Dsdiff.c34 * sdiff [-l] [-s] [-w #] [-o output] file1 file2
101 static char *file1; variable
203 "Usage: sdiff [-l] [-s] [-o output] [-w #] file1 file2\n"));
207 file1 = *argv++;
209 file1 = filename(file1, file2);
210 file2 = filename(file2, file1);
213 if ((fdes1 = fopen(file1, "r")) == NULL)
214 error(gettext("Cannot open: %s"), file1);
247 (void) strcat(diffcmd, file1);
[all...]
/illumos-gate/usr/src/cmd/csh/
H A Dsh.file.c243 fcompare(tchar **file1, tchar **file2) argument
249 return (strcoll_(*file1, *file2));
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dbuiltins.c525 char *file1, *file2;
533 file1 = arg;
535 if (! *file1 || ! *file2)
542 nul_terminate (file1);
547 if (! grub_open (file1))
569 size, file1, filemax, file2);
587 i, (unsigned) addr1[i], file1,
520 char *file1, *file2; local

Completed in 123 milliseconds