Home
last modified time | relevance | path

Searched refs:rfp (Results 1 – 11 of 11) sorted by relevance

/titanic_41/usr/src/lib/libast/common/port/
H A Dastquery.c51 static Sfio_t* rfp; in astquery() local
57 if (!rfp) in astquery()
61 rfp = sfstdin; in astquery()
62 else if (!(rfp = sfopen(NiL, "/dev/tty", "r"))) in astquery()
73 ip = rfp; in astquery()
/titanic_41/usr/src/common/ctf/
H A Dctf_types.c240 ctf_file_t *rfp = fp; in ctf_type_qlname() local
242 ctf_lookup_by_id(&rfp, cdp->cd_type); in ctf_type_qlname()
243 const char *name = ctf_strptr(rfp, tp->ctt_name); in ctf_type_qlname()
561 ctf_type_cmp(ctf_file_t *lfp, ctf_id_t ltype, ctf_file_t *rfp, ctf_id_t rtype) in ctf_type_cmp() argument
572 if (lfp == rfp) in ctf_type_cmp()
578 if (CTF_TYPE_ISPARENT(rtype) && rfp->ctf_parent != NULL) in ctf_type_cmp()
579 rfp = rfp->ctf_parent; in ctf_type_cmp()
581 if (lfp < rfp) in ctf_type_cmp()
584 if (lfp > rfp) in ctf_type_cmp()
598 ctf_file_t *rfp, ctf_id_t rtype) in ctf_type_compat() argument
[all …]
/titanic_41/usr/src/cmd/svr4pkg/pkginstall/
H A Dinstvol.c158 struct reg_files *rfp = NULL; in instvol() local
358 assert(rfp == NULL); in instvol()
367 rfp = regfiles_head; in instvol()
369 assert(rfp != NULL); in instvol()
370 rfp->next = in instvol()
372 if (rfp->next == NULL) { in instvol()
376 rfp = rfp->next; in instvol()
377 rfp->next = NULL; in instvol()
378 rfp->val = entryidx; in instvol()
676 if ((rfp = regfiles_head) != NULL) { in instvol()
[all …]
/titanic_41/usr/src/cmd/ndmpd/ndmp/
H A Dndmpd_dtime.c645 FILE *rfp, *wfp; in putdumptime() local
664 rfp = fopen(fname, "r"); in putdumptime()
665 if (!rfp) { in putdumptime()
675 rv = readdumptimes(rfp, &ddhead); in putdumptime()
679 (void) fclose(rfp); in putdumptime()
683 (void) fclose(rfp); in putdumptime()
/titanic_41/usr/src/cmd/fs.d/
H A Dmount.c607 FILE *rfp; /* this will be NULL if fopen fails */ in print_mnttab() local
617 rfp = fopen(REMOTE, "r"); in print_mnttab()
639 remote(mget.mnt_fstype, rfp), in print_mnttab()
646 remote(mget.mnt_fstype, rfp), in print_mnttab()
738 remote(char *fstype, FILE *rfp) in remote() argument
744 if (rfp == NULL || fstype == NULL || in remote()
747 rewind(rfp); in remote()
748 while (fgets(buf, sizeof (buf), rfp) != NULL) { in remote()
/titanic_41/usr/src/cmd/cmd-inet/usr.lib/wanboot/wanboot-cgi/
H A Dwanboot-cgi.c786 FILE *rfp = NULL; in build_trustfile() local
860 if ((rfp = fopen(path, "r")) == NULL) { in build_trustfile()
863 if ((p12 = d2i_PKCS12_fp(rfp, NULL)) == NULL) { in build_trustfile()
917 if (rfp != NULL) { in build_trustfile()
918 (void) fclose(rfp); in build_trustfile()
1068 FILE *rfp = NULL; in get_hostnames() local
1074 if ((rfp = fopen(path, "r")) == NULL) { in get_hostnames()
1078 if ((p12 = d2i_PKCS12_fp(rfp, NULL)) == NULL) { in get_hostnames()
1117 if (rfp != NULL) { in get_hostnames()
1118 (void) fclose(rfp); in get_hostnames()
/titanic_41/usr/src/cmd/ldap/common/
H A Dldapmodify.c241 FILE *rfp = NULL; in process() local
339 if (( rfp = ldaptool_open_file( rejfile, "a" )) == NULL ) { in process()
345 fputs( "\n", rfp ); in process()
347 fprintf( rfp, gettext("# Error: %s\n"), ldap_err2string( rc )); in process()
348 fputs( saved_rbuf, rfp ); in process()
349 fclose( rfp ); in process()
350 rfp = NULL; in process()
/titanic_41/usr/src/lib/libdtrace/common/
H A Ddt_parser.c336 ctf_file_t *rfp = rp->dn_ctfp; in dt_type_promote() local
342 ctf_id_t rbase = ctf_type_resolve(rfp, rtype); in dt_type_promote()
343 uint_t rkind = ctf_type_kind(rfp, rbase); in dt_type_promote()
358 rfp = DT_INT_CTFP(dtp); in dt_type_promote()
367 if (ctf_type_encoding(rfp, rbase, &re) == CTF_ERR) { in dt_type_promote()
368 yypcb->pcb_hdl->dt_ctferr = ctf_errno(rfp); in dt_type_promote()
397 *ofp = rfp; in dt_type_promote()
1045 ctf_file_t *rfp = rp->dn_ctfp; in dt_node_is_ptrcompat() local
1096 rbase = ctf_type_resolve(rfp, rp->dn_type); in dt_node_is_ptrcompat()
1097 rkind = ctf_type_kind(rfp, rbase); in dt_node_is_ptrcompat()
[all …]
/titanic_41/usr/src/cmd/sendmail/src/
H A Dreadcf.c2718 struct resolverflags *rfp; local
2745 for (rfp = ResolverFlags; rfp->rf_name != NULL; rfp++)
2747 if (sm_strcasecmp(q, rfp->rf_name) == 0)
2750 if (rfp->rf_name == NULL)
2753 _res.options &= ~rfp->rf_bits;
2755 _res.options |= rfp->rf_bits;
/titanic_41/usr/src/uts/common/fs/sockfs/
H A Dsocksyscalls.c2289 snf_direct_io(file_t *fp, file_t *rfp, u_offset_t fileoff, u_offset_t size, in snf_direct_io() argument
2307 if ((sr = create_thread(READ_OP, vp, rfp, fileoff, size)) == NULL) in snf_direct_io()
2836 sosendfile64(file_t *fp, file_t *rfp, const struct ksendfilevec64 *sfv, in sosendfile64() argument
2876 error = snf_direct_io(fp, rfp, sfv_off, (u_offset_t)sfv_len, in sosendfile64()
2880 fvp = rfp->f_vnode; in sosendfile64()
/titanic_41/usr/src/uts/common/io/dld/
H A Ddld_drv.c1050 dld_ioc_removeflow_t *rfp = karg; in drv_ioc_removeflow() local
1052 return (dld_remove_flow(rfp->rf_name)); in drv_ioc_removeflow()