Searched refs:zto (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.10.1/uucp-11/uucp/unix/
H A Dfailed.c14 char *zto; local
16 zto = zsappend3 (zSspooldir, FAILEDDIR, zfile);
18 if (! fsysdep_move_file (zfile, zto, TRUE, FALSE, FALSE,
21 ubuffree (zto);
25 return zto;
H A Drename.c14 rename (zfrom, zto)
16 const char *zto;
18 if (link (zfrom, zto) < 0)
22 if (unlink (zto) < 0
23 || link (zfrom, zto) < 0)
H A Dcorrup.c15 char *zto; local
23 zto = zsappend3 (zSspooldir, CORRUPTDIR, zslash);
25 if (! fsysdep_move_file (zfile, zto, TRUE, FALSE, FALSE,
28 ubuffree (zto);
32 return zto;
H A Dlink.c13 fsysdep_link (zfrom, zto, pfworked)
15 const char *zto;
19 if (link (zfrom, zto) == 0)
26 if (! fsysdep_make_dirs (zto, TRUE))
28 if (link (zfrom, zto) == 0)
36 ulog (LOG_ERROR, "link (%s, %s): %s", zfrom, zto, strerror (errno));
H A Duuto.c18 char *zto; local
23 zto = (char *) zbufalc (zexclam - zdest
27 memcpy (zto, zdest, (size_t) (zexclam - zdest));
28 sprintf (zto + (zexclam - zdest), "!~/receive/%s/%s/",
30 return zto;
H A Dmove.c49 fsysdep_move_file (zorig, zto, fmkdirs, fpublic, fcheck, zuser)
51 const char *zto;
61 "fsysdep_move_file: Moving %s to %s", zorig, zto);
70 zcopy = zbufcpy (zto);
102 if (rename (zorig, zto) == 0)
107 if (! fsysdep_make_dirs (zto, fpublic))
109 if (rename (zorig, zto) == 0)
123 ulog (LOG_ERROR, "rename (%s, %s): %s", zorig, zto,
137 (void) remove (zto);
138 o = creat ((char *) zto,
[all...]
H A Dmail.c45 fsysdep_mail (zto, zsubject, cstrs, paz)
46 const char *zto;
82 pazargs[iarg++] = (char *) zto;
100 fprintf (e, "To: %s\n", zto);
115 ulog(LOG_ERROR, "mail %s about %s on %s", zto, zsubject, zSlocalname);
H A Drecep.c92 fsysdep_remember_reception (qsys, zto, ztemp)
94 const char *zto ATTRIBUTE_UNUSED;
149 fsysdep_already_received (qsys, zto, ztemp)
151 const char *zto ATTRIBUTE_UNUSED;
185 fsysdep_forget_reception (qsys, zto, ztemp)
187 const char *zto ATTRIBUTE_UNUSED;
H A Dwldcrd.c76 char *zcmd, *zto;
93 zto = zcmd + sizeof ECHO_PROGRAM - 1;
94 *zto++ = ' ';
107 *zto++ = '\\';
108 *zto++ = *zfrom++;
110 *zto = '\0';
H A Dopensr.c139 zsysdep_receive_temp (qsys, zto, ztemp, frestart)
141 const char *zto ATTRIBUTE_UNUSED;
164 esysdep_open_receive (qsys, zto, ztemp, zreceive, pcrestart)
166 const char *zto ATTRIBUTE_UNUSED;
H A Dsplcmd.c96 fprintf (e, "S %s %s %s -%s %s 0%o %s\n", q->zfrom, q->zto,
101 fprintf (e, "R %s %s %s -%s\n", q->zfrom, q->zto, q->zuser,
105 fprintf (e, "X %s %s %s -%s\n", q->zfrom, q->zto, q->zuser,
109 fprintf (e, "E %s %s %s -%s %s 0%o %s 0 %s\n", q->zfrom, q->zto,
H A Dspawn.c417 char *zto; local
421 zto = zshcmd;
434 *zto++ = '\\';
435 *zto++ = *zfrom;
437 *zto++ = ' ';
439 *(zto - 1) = '\0';
H A Dxqtsub.c672 const char *zfrom, *zto;
681 zto = zfree;
685 *pzinput = zbufcpy (zto);
689 if (link (zfrom, zto) < 0)
693 ulog (LOG_ERROR, "link (%s, %s): %s", zfrom, zto,
699 if (! fcopy_file (zfrom, zto, FALSE, FALSE, FALSE))
706 (void) chmod (zto, IPUBLIC_FILE_MODE);
709 realpath(zto, rfile);
712 chmod(zto, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
713 ulog(LOG_ERROR, "xqtsub chmod'ing %s", zto);
666 const char *zfrom, *zto; local
[all...]
/macosx-10.10.1/uucp-11/uucp/lib/
H A Descape.c14 char *zto, *zfrom; local
16 zto = z;
22 *zto++ = *zfrom++;
29 *zto++ = '-';
32 *zto++ = '\b';
35 *zto++ = '\n';
38 *zto++ = '\0';
41 *zto++ = '\r';
44 *zto++ = ' ';
47 *zto
[all...]
H A Dquotes.c45 char *zto;
51 zto = zret;
56 *zto++ = '\\';
57 *zto++ = '\\';
60 *zto++ = *z;
63 sprintf (zto, "\\%03o", (unsigned int) BUCHAR (*z));
64 zto += strlen (zto);
68 *zto = '\0';
44 char *zto; local
H A Dquote.c58 || fneeds_quotes (qcmd->zto)
83 qnew->zto = zquote_cmd_string (qorig->zto, FALSE);
119 ubuffree ((char *) qcmd->zto);
H A Dparse.c71 qcmd->zto = NULL;
112 qcmd->zto = z;
245 if (qcmd->zto != NULL)
246 (void) cescape ((char *) qcmd->zto);
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Drename.c25 rename (const char *zfrom, const char *zto) argument
27 if (link (zfrom, zto) < 0)
31 if (unlink (zto) < 0
32 || link (zfrom, zto) < 0)
/macosx-10.10.1/uucp-11/uucp/
H A Dcopy.c44 fcopy_file (zfrom, zto, fpublic, fmkdirs, fsignals)
46 const char *zto;
61 fret = fcopy_open_file (efrom, zto, fpublic, fmkdirs, fsignals);
67 fcopy_open_file (efrom, zto, fpublic, fmkdirs, fsignals)
69 const char *zto;
78 eto = esysdep_fopen (zto, fpublic, FALSE, fmkdirs);
88 (void) remove (zto);
96 (void) remove (zto);
101 if (! fsysdep_sync (eto, zto))
104 (void) remove (zto);
[all...]
H A Duupick.c44 static void upmove P((const char *zfrom, const char *zto));
176 char *zto, *zlocal;
228 zto = ab + 1 + strspn (ab + 1, " \t");
229 zto[strcspn (zto, " \t\n")] = '\0';
230 zlocal = zsysdep_uupick_local_file (zto, &fbadname);
235 ulog (LOG_ERROR, "%s: bad local file name", zto);
239 zto = zsysdep_in_dir (zlocal, zfile);
241 if (zto == NULL)
244 upmove (zfull, zto);
174 char *zto, *zlocal; local
348 char *zto; local
[all...]
H A Dxcmd.c82 qtrans->s.zto);
100 qtrans->s.zto, (const char *) NULL,
117 clen = (strlen (qcmd->zfrom) + strlen (qcmd->zto)
120 sprintf (zsend, "X %s %s %s -%s", qcmd->zfrom, qcmd->zto,
162 qtrans->s.zto, (const char *) NULL,
196 qcmd->zto);
200 zexclam = strchr (qcmd->zto, '!');
202 || zexclam == qcmd->zto
203 || strncmp (qdaemon->zlocalname, qcmd->zto,
204 (size_t) (zexclam - qcmd->zto))
307 char *zto; local
[all...]
H A Drec.c171 fspool = fspool_file (qcmd->zto);
186 if (qcmd->zto[0] != 'D'
222 zfile = zsysdep_spool_file_name (&slocalsys, qcmd->zto, qcmd->pseq);
231 zfile = zsysdep_add_base (qcmd->zto, qcmd->zfrom);
291 qcmd->zto, (const char *) NULL,
369 clen = (strlen (qcmd->zfrom) + strlen (qcmd->zto)
373 sprintf (zsend, "R %s %s %s -%s", qcmd->zfrom, qcmd->zto,
376 sprintf (zsend, "R %s %s %s -%s 0x%lx", qcmd->zfrom, qcmd->zto,
379 sprintf (zsend, "R %s %s %s -%s %ld", qcmd->zfrom, qcmd->zto,
493 zlog = qtrans->s.zto;
[all...]
H A Duucp.c708 char *zto;
710 zto = zsysdep_in_dir (zdestfile, zrelative);
711 if (zto == NULL)
714 uccopy (zfull, zto, TRUE);
716 ubuffree (zto);
733 char *zto;
783 zto = zsysdep_add_base (zdest, zfile);
784 if (zto == NULL)
791 if (! fcopy_open_file (efrom, zto, FALSE, fCmkdirs, TRUE))
794 ubuffree (zto);
704 char *zto; local
728 char *zto; local
1246 const char *zto; local
[all...]
H A Dprotf.c397 char *zstart, *zto, *zfrom;
400 zto = zfrom = zstart = abPrecbuf + iPrecstart;
436 if (zto != zstart)
440 cFrec_data += zto - zstart;
442 (size_t) (zto - zstart),
498 *zto++ = (char) bnext;
515 if (zto != zstart)
519 zto - zstart);
521 cFrec_data += zto - zstart;
522 if (! fgot_data (qdaemon, zstart, (size_t) (zto
388 char *zstart, *zto, *zfrom; local
[all...]
H A Dcu.c1546 char *zto = NULL;
1573 zto = zbufcpy (argv[2]);
1586 zto = zsysdep_terminal_line (zprompt);
1588 if (zto == NULL)
1591 zto[strcspn (zto, " \t\n")] = '\0';
1592 if (*zto != '\0')
1596 ubuffree (zto);
1597 zto = zbase;
1608 ubuffree (zto);
1540 char *zto = NULL; local
1752 char *zfrom, *zto, *zcmd; local
[all...]

Completed in 203 milliseconds

12