Searched refs:cd (Results 1 - 25 of 48) sorted by relevance

12

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/SDBM_File/
H A DMakefile.PL51 cd sdbm
53 cd ..
60 cd sdbm
62 cd ..
68 cd sdbm && $(MAKE) all
/osnet-11/usr/src/lib/pylibbe/common/
H A Dlibbe_py.c1303 PyObject *d, *m, *nd, *cd; local
1311 cd = PyDict_New();
1314 if (!d || !cd || PyDict_SetItemString(d, "errorcode", cd) < 0)
1317 adderrnum(nd, cd, BE_SUCCESS, "BE_SUCCESS");
1318 adderrnum(nd, cd, BE_ERR_ACCESS, "BE_ERR_ACCESS");
1319 adderrnum(nd, cd, BE_ERR_ACTIVATE_CURR, "BE_ERR_ACTIVATE_CURR");
1320 adderrnum(nd, cd, BE_ERR_AUTONAME, "BE_ERR_AUTONAME");
1321 adderrnum(nd, cd, BE_ERR_BE_NOENT, "BE_ERR_BE_NOENT");
1322 adderrnum(nd, cd, BE_ERR_BUS
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Diconv.c102 iconv_t cd; local
126 if ((cd = malloc(sizeof (struct _iconv_info))) == NULL) {
138 free(cd);
143 cd->_conv = iconv_open_all(to, from, ipath, flag, string_based);
144 if (cd->_conv != (iconv_p)-1) {
148 return (cd);
154 cd->_conv = iconv_search_alias(&to_canonical, &from_canonical,
157 if (cd->_conv == (iconv_p)-1) {
170 free(cd);
179 cd
501 iconv_close(iconv_t cd) argument
516 passthru_icv_close(iconv_t cd) argument
523 iconv(iconv_t cd, char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft) argument
539 passthru_icv_iconv(iconv_t cd, const char **inbuf, size_t *inbufleft, char **outbuf, size_t *outbufleft) argument
584 iconvctl(iconv_t cd, int req, void *arg) argument
621 passthru_icv_iconvctl(iconv_t cd, int req, void *arg) argument
678 iconv_t cd; local
[all...]
H A Dclosefrom.c51 fdwalk(int (*func)(void *, int), void *cd) argument
114 if ((rv = func(cd, fds[i])) != 0)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DMM_Win95.pm45 cd $(DISTVNAME)
49 cd ..
71 cd %s
73 cd ..
81 $(NOECHO)cd %s
83 $(NOECHO)cd ..
157 cd %s
160 cd ..
186 -cd %s
188 -cd
[all...]
/osnet-11/usr/src/lib/libsmbfs/common/
H A Dsmbfs_utf_str.c77 smbfs_convert_ucs2xx_to_utf8(iconv_t cd, const uint16_t *us) argument
83 if (cd == (iconv_t)-1) {
101 ret = iconv(cd, &iptr, &ileft, &optr, &oleft);
135 smbfs_convert_utf8_to_ucs2xx(iconv_t cd, const char *utf8_string) argument
141 if (cd == (iconv_t)-1) {
158 ret = iconv(cd, &iptr, &ileft, (char **)&optr, &oleft);
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dsvc_vc.c458 struct cf_conn *cd = xprt ? (struct cf_conn *)xprt->xp_p1 : NULL; local
473 if (cd) {
474 XDR_DESTROY(&(cd->xdrs));
475 free(cd);
490 struct cf_conn *cd; local
500 cd = malloc(sizeof (struct cf_conn));
501 if (cd == NULL) {
506 cd->sendsize = sendsize;
507 cd->recvsize = recvsize;
508 cd
595 struct cf_conn *cd, *pcd; local
1078 struct cf_conn *cd = (struct cf_conn *)xprt_conn->xp_p1; local
1290 struct cf_conn *cd = (struct cf_conn *)xprt_conn->xp_p1; local
1434 struct cf_conn *cd; local
1667 struct cf_conn *cd = (struct cf_conn *)(xprt->xp_p1); local
1739 struct cf_conn *cd = (struct cf_conn *)(xprt->xp_p1); local
[all...]
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmetarpcopen.c201 clnt_data_t *cd = (clnt_data_t *)private; local
203 return (clnt_create_timed(hostname, cd->cd_prognum, cd->cd_version,
204 cd->cd_nettype, time_out));
314 clnt_data_t cd; local
316 cd.cd_prognum = prognum;
317 cd.cd_version = version;
318 cd.cd_nettype = nettype;
320 (void *)&cd, MD_CLNT_CREATE_TOUT, (md_error_t *)NULL));
H A Dmeta_med.c82 med_create_data_t *cd = (med_create_data_t *)private; local
84 return (clnt_create_timed(hostname, cd->mcd_program, cd->mcd_version,
85 cd->mcd_nettype, time_out));
97 med_create_data_t cd; /* Create data. */ local
99 cd.mcd_program = prog;
100 cd.mcd_version = vers;
101 cd.mcd_nettype = nettype;
103 (void *)&cd, (time_t)tp->tv_sec, NULL));
/osnet-11/usr/src/lib/libresolv2/common/irs/
H A Dgetnetgrent.c83 const char *ch, *cu, *cd; local
86 ret = getnetgrent_p(&ch, &cu, &cd, net_data);
92 DE_CONST(cd, *domain);
/osnet-11/usr/src/lib/libast/common/misc/
H A Dfts.c63 int cd; /* chdir status */ \
110 #define ACCESS(p,f) ((p)->cd==0?(f)->fts_name:(f)->fts_path)
740 fts->cd = (flags & FTS_NOCHDIR) ? 1 : -1;
756 if (fts->cd > 0 || getcwd(fts->home, fts->homesize))
761 fts->cd = 1;
884 if (fts->cd == 0)
886 else if (fts->cd < 0)
887 fts->cd = 0;
889 fts->curdir = fts->cd ? 0 : f->fts_parent;
897 if (fts->cd <
[all...]
/osnet-11/usr/src/cmd/ldap/common/
H A Dconvutf8.c68 iconv_t cd; local
80 if ((cd = iconv_open(tcode, fcode)) == (iconv_t)-1) {
90 (void) iconv_close(cd);
98 ret = iconv(cd, &fptr, &ileft, &tptr, &oleft);
102 * Success. Place 'cd' into its initial shift
151 (void) iconv_close(cd);
/osnet-11/usr/src/lib/libast/common/comp/
H A Diconv.c260 _win_iconv(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
262 Conv_t* cc = (Conv_t*)cd;
531 utf2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
605 bin2utf(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
715 ume2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
791 bin2ume(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
865 ucs2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
910 bin2ucs(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
956 scu2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1001 bin2scu(_ast_iconv_t cd, cha argument
1180 _ast_iconv_close(_ast_iconv_t cd) argument
1235 _ast_iconv(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1342 _ast_iconv_write(_ast_iconv_t cd, Sfio_t* op, char** fb, size_t* fn, Iconv_disc_t* disc) argument
1437 _ast_iconv_move(_ast_iconv_t cd, Sfio_t* ip, Sfio_t* op, size_t n, Iconv_disc_t* disc) argument
[all...]
/osnet-11/usr/src/lib/libast/common/regex/
H A Dregdecomp.c80 int cd; local
153 cb = cd = cr = 0;
164 cd = 1;
189 cd = -1;
232 if (cd < 0 && delimiter > 0)
246 if (cd > 0 && delimiter > 0)
/osnet-11/usr/src/lib/libpkg/common/
H A Dverify.c402 char *cd; local
432 cd = strdup(path);
433 c = strrchr(cd, '/');
436 if (strcmp(cd, c) == 0)
437 strcpy(cd, "/");
441 if (chdir(cd) != 0) {
442 reperr(pkg_gt(ERR_CHDIR), cd); local
446 free(cd);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DCheckTree.pm25 /bin cd
37 (The file test may also be a "cd", causing subsequent relative filenames
41 to test for the opposite condition. If you do a cd and then list some
63 directory was last entered through the use of "cd" directives.
112 # expand relative $file to full pathname if preceded by cd directive
122 # if it's a "cd" directive...
123 if ($this =~ /^cd\b/) {
125 $this .= ' || die "cannot cd to $file\n"';
126 # expand "cd" directive with directory name
159 # in case of any cd directive
[all...]
/osnet-11/usr/src/lib/libsqlite/src/
H A Dtclsqlite.c312 static int DbBusyHandler(void *cd, const char *zTable, int nTries){ argument
313 SqliteDb *pDb = (SqliteDb*)cd;
336 static int DbProgressHandler(void *cd){ argument
337 SqliteDb *pDb = (SqliteDb*)cd;
352 static void DbTraceHandler(void *cd, const char *zSql){ argument
353 SqliteDb *pDb = (SqliteDb*)cd;
370 static int DbCommitHandler(void *cd){ argument
371 SqliteDb *pDb = (SqliteDb*)cd;
489 static int DbObjCmd(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){ argument
490 SqliteDb *pDb = (SqliteDb*)cd;
1025 DbMain(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv) argument
[all...]
/osnet-11/usr/src/lib/libshare/common/
H A Dlibshare_util.c920 iconv_t cd; local
936 cd = iconv_open("UTF-8", curlocale);
938 cd = iconv_open(curlocale, "UTF-8");
940 if (cd == (iconv_t)-1) {
956 (void) iconv_close(cd);
961 ret = iconv(cd, &inptr, &inbytesleft, &outptr, &outbytesleft);
962 (void) iconv_close(cd);
/osnet-11/usr/src/lib/libproc/common/
H A DPsymtab.c320 map_iter(const rd_loadobj_t *lop, void *cd) argument
323 struct ps_prochandle *P = cd;
2622 proc_map_f *func, void *cd)
2640 if ((rc = func(cd, &mptr->map_pmap, object_name)) != 0)
2647 Pmapping_iter(struct ps_prochandle *P, proc_map_f *func, void *cd) argument
2649 return (i_Pmapping_iter(P, B_FALSE, func, cd));
2653 Pmapping_iter_resolved(struct ps_prochandle *P, proc_map_f *func, void *cd) argument
2655 return (i_Pmapping_iter(P, B_TRUE, func, cd));
2663 proc_map_f *func, void *cd)
2687 if ((rc = func(cd,
2621 i_Pmapping_iter(struct ps_prochandle *P, boolean_t lmresolve, proc_map_f *func, void *cd) argument
2662 i_Pobject_iter(struct ps_prochandle *P, boolean_t lmresolve, proc_map_f *func, void *cd) argument
2697 Pobject_iter(struct ps_prochandle *P, proc_map_f *func, void *cd) argument
2703 Pobject_iter_resolved(struct ps_prochandle *P, proc_map_f *func, void *cd) argument
2791 Psymbol_iter_com(struct ps_prochandle *P, Lmid_t lmid, const char *object_name, int which, int mask, pr_order_t order, proc_xsym_f *func, void *cd) argument
2916 Pxsymbol_iter(struct ps_prochandle *P, Lmid_t lmid, const char *object_name, int which, int mask, proc_xsym_f *func, void *cd) argument
2924 Psymbol_iter_by_lmid(struct ps_prochandle *P, Lmid_t lmid, const char *object_name, int which, int mask, proc_sym_f *func, void *cd) argument
2932 Psymbol_iter(struct ps_prochandle *P, const char *object_name, int which, int mask, proc_sym_f *func, void *cd) argument
2940 Psymbol_iter_by_addr(struct ps_prochandle *P, const char *object_name, int which, int mask, proc_sym_f *func, void *cd) argument
2948 Psymbol_iter_by_name(struct ps_prochandle *P, const char *object_name, int which, int mask, proc_sym_f *func, void *cd) argument
[all...]
H A Dllib-lproc85 int Plwp_iter(struct ps_prochandle *Pr, proc_lwp_f *func, void *cd);
189 int Pmapping_iter(struct ps_prochandle *Pr, proc_map_f *func, void *cd);
191 void *cd);
192 int Pobject_iter(struct ps_prochandle *Pr, proc_map_f *func, void *cd);
194 void *cd);
201 int which, int type, proc_sym_f *func, void *cd);
204 proc_sym_f *func, void *cd);
/osnet-11/usr/src/lib/libdevalloc/common/
H A Ddevalloc_impl.h69 /* audio, cd, floppy, rmdisk, tape */
143 da_deventry_t *cd; member in struct:_da_devlist_t
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Locale/Maketext/
H A DGuts.pm274 $pointy =~ tr/\t //cd;
/osnet-11/usr/src/grub/grub2/grub-core/kern/efi/
H A Defi.c646 grub_efi_cdrom_device_path_t cd; local
647 grub_memcpy (&cd, dp, len);
649 cd.boot_entry,
650 (unsigned long long) cd.partition_start,
651 (unsigned long long) cd.partition_size);
/osnet-11/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_crypto_openssl.c5619 struct _pkinit_cert_data *cd; local
5635 cd = calloc(1, sizeof(*cd));
5636 if (cd == NULL)
5639 cd->magic = CERT_MAGIC;
5640 cd->plgctx = id->plgctx;
5641 cd->reqctx = id->reqctx;
5642 cd->idctx = id->idctx;
5643 cd->index = id->index;
5644 cd
5657 struct _pkinit_cert_data *cd = (struct _pkinit_cert_data *)ch; local
5782 struct _pkinit_cert_data *cd = (struct _pkinit_cert_data *)ch; local
5904 struct _pkinit_cert_data *cd; local
[all...]
/osnet-11/usr/src/lib/libsasl/plugin/
H A Dplugin_common.c937 iconv_t cd; local
961 cd = iconv_open("UTF-8", code_set);
962 if (cd == (iconv_t)-1)
974 (void) iconv_close(cd);
982 ret = iconv(cd, &inptr, &ileft, &outptr, &oleft);
1029 (void) iconv_close(cd);

Completed in 152 milliseconds

12