Searched refs:oname (Results 1 - 24 of 24) sorted by relevance

/freebsd-10.0-release/contrib/less/
H A Doption.h50 char *oname; /* Long (GNU-style) option name */ member in struct:optname
H A Dopttbl.c537 register struct optname *oname; local
554 for (oname = o->onames; oname != NULL; oname = oname->onext)
563 len = sprefix(optname, oname->oname, uppercase);
585 maxoname = oname;
588 exact = (len == (int)strlen(oname->oname));
[all...]
H A Doption.c44 SNPRINTF1(buf, sizeof(buf), "--%s", o->onames->oname);
46 SNPRINTF2(buf, sizeof(buf), "-%c (--%s)", o->oletter, o->onames->oname);
H A Dcommand.c360 char *oname; local
380 curropt = findopt_name(&p, &oname, NULL);
390 for (p = oname; *p != '\0'; p++)
H A Dcharset.c64 char *oname; member in struct:cs_alias
205 name = a->oname;
/freebsd-10.0-release/usr.bin/mkulzma/
H A Dmkulzma.c55 char *iname, *oname, *obuf, *ibuf; local
75 oname = NULL;
81 oname = optarg;
123 if (oname == NULL) {
124 asprintf(&oname, "%s%s", iname, DEFAULT_SUFX);
125 if (oname == NULL) {
173 fdw = open(oname, O_WRONLY | O_TRUNC | O_CREAT,
176 err(1, "open(%s)", oname);
179 cleanfile = oname;
255 err(1, "write(%s)", oname);
[all...]
/freebsd-10.0-release/usr.bin/mkuzip/
H A Dmkuzip.c46 char *iname, *oname, *obuf, *ibuf; local
62 oname = NULL;
68 oname = optarg;
108 if (oname == NULL) {
109 asprintf(&oname, "%s%s", iname, DEFAULT_SUFX);
110 if (oname == NULL) {
157 fdw = open(oname, O_WRONLY | O_TRUNC | O_CREAT,
160 err(1, "open(%s)", oname);
163 cleanfile = oname;
202 err(1, "write(%s)", oname);
[all...]
/freebsd-10.0-release/bin/pax/
H A Dtables.h91 char *oname; /* old name */ member in struct:namt
H A Dtables.c508 add_name(char *oname, int onamelen, char *nname) argument
525 indx = st_hash(oname, onamelen, N_TAB_SZ);
530 while ((pt != NULL) && (strcmp(oname, pt->oname) != 0))
554 if ((pt->oname = strdup(oname)) != NULL) {
560 free(pt->oname);
572 * new name (oname is the link to name)
576 sub_name(char *oname, int *onamelen, size_t onamesize) argument
586 indx = st_hash(oname, *onamele
[all...]
/freebsd-10.0-release/lib/libufs/
H A Dtype.c95 const char *oname; local
101 oname = name;
113 name = oname;
165 if (oname != name) {
/freebsd-10.0-release/contrib/gcc/
H A Dmklibgcc.in470 oname=`echo $name | sed -e 's,.*/,,'`
473 out="libgcc/${dir}/${oname}${objext}"
474 outS="libgcc/${dir}/${oname}_s${objext}"
486 outV="libgcc/${dir}/${oname}.vis"
510 out="libgcc/${dir}/${oname}${objext}"
536 oname=`echo $name | sed -e 's,.*/,,'`
537 out="libgcc/${dir}/${oname}${objext}"
549 outV="libgcc/${dir}/${oname}.vis"
550 outT="libgcc/${dir}/${oname}_t${objext}"
580 oname
[all...]
H A Dgengtype.c1021 create_file (const char *name, const char *oname)
1050 f->name = oname;
1485 const char *oname)
1514 oname, '%', *p);
1019 create_file(const char *name, const char *oname) argument
1481 output_escaped_param(struct walk_type_data *d, const char *param, const char *oname) argument
/freebsd-10.0-release/contrib/nvi/cl/
H A Dcl.h40 char *oname; /* Original screen window name. */ member in struct:_cl_private
H A Dcl_main.c139 cl_setname(gp, clp->oname);
150 if (clp->oname != NULL)
151 free(clp->oname);
H A Dcl_funcs.c627 if (clp->oname == NULL && (wid = getenv("WINDOWID"))) {
638 clp->oname = strndup(s + 1, e - s - 1);
646 cl_setname(gp, clp->oname);
/freebsd-10.0-release/usr.sbin/btxld/
H A Dbtxld.c98 static const char *oname = variable
165 oname = optarg;
255 if ((size_t)snprintf(name, sizeof(name), "%s.tmp", oname) >= sizeof(name))
256 errx(2, "%s: Filename too long", oname);
288 if (rename(tname, oname))
289 err(2, "%s: Can't rename to %s", tname, oname);
/freebsd-10.0-release/contrib/nvi/common/
H A Dexf.c135 char *oname, *tname; local
181 oname = frp->name;
182 if (LF_ISSET(FS_OPENERR) || oname == NULL || !exists) {
208 oname = frp->tname;
235 msgq_str(sp, M_ERR, oname,
256 if ((ep->db = dbopen(rcv_name == NULL ? oname : NULL,
261 M_SYSERR, rcv_name == NULL ? oname : rcv_name, "%s");
337 switch (file_lock(sp, oname, ep->db->fd(ep->db), 0)) {
343 msgq_str(sp, M_INFO, oname,
/freebsd-10.0-release/contrib/binutils/ld/
H A Dpe-dll.c1689 char *oname; local
1692 oname = xmalloc (20);
1693 sprintf (oname, "d%06d.o", tmp_seq);
1696 abfd = bfd_create (oname, parent);
1764 char *oname; local
1767 oname = xmalloc (20);
1768 sprintf (oname, "d%06d.o", tmp_seq);
1771 abfd = bfd_create (oname, parent);
1881 char *oname; local
1919 oname
2086 char *oname; local
2178 char *oname; local
2230 char *oname; local
2276 char *oname; local
[all...]
/freebsd-10.0-release/usr.sbin/ppp/
H A Ddatalink.c1297 char *oname, *pname; local
1309 oname = NULL;
1317 } else if (oname)
1320 oname = pname;
1325 if (oname) {
1326 log_Printf(LogPHASE, "Rename link %s to %s\n", oname, dl->name);
1327 free(oname);
1436 char *name, *oname; local
1448 oname = dl->name;
1451 return oname;
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_pid.c565 dt_pid_usdt_mapping(void *data, const prmap_t *pmp, const char *oname) argument
585 if (Pxlookup_by_name(P, PR_LMID_EVERY, oname, syms[i], &sym,
590 if ((mname = strrchr(oname, '/')) == NULL)
591 mname = oname;
/freebsd-10.0-release/lib/libc/nameser/
H A Dns_print.c758 const char *oname = name; local
762 return (name - oname - (name > oname));
776 return (name - oname);
/freebsd-10.0-release/crypto/openssh/
H A Dssh-keyscan.c322 conalloc(char *iname, char *oname, int keytype) argument
347 fdcon[s].c_output_name = xstrdup(oname);
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_pax.c642 const char *oname; local
647 oname = archive_entry_pathname(entry_original);
648 name_length = strlen(oname);
656 strcpy(name, oname);
/freebsd-10.0-release/contrib/gcc/cp/
H A Ddecl2.c3019 const char *oname;
3023 oname = IDENTIFIER_POINTER (oid);
3024 gcc_assert (oname[0] == '_' && oname[1] == 'Z');
3025 nname = ACONCAT (("_ZGA", oname+2, NULL));
3014 const char *oname; local

Completed in 303 milliseconds