Searched refs:fa (Results 1 - 25 of 33) sorted by relevance

12

/illumos-gate/usr/src/cmd/refer/
H A Dhunt8.c40 FILE *fa, *fb; local
46 fa = iopen(indexname, ".ig");
48 if (gdate(fb) > gdate(fa)) {
49 if (fa != NULL)
50 fclose(fa);
52 fa = iopen(indexname, ".ig");
54 indexdate = gdate(fa);
55 unopen(fa);
H A Dhunt7.c38 static FILE *fa = NULL; local
65 fprintf(stderr, "fa now %o, p %o in %o %s\n", fa, p, in, in);
69 fprintf(stderr, "set fa to stdin\n");
71 fa = stdin;
77 if (fa != NULL)
78 fa = freopen(in, "r", fa);
80 fa = fopen(in, "r");
82 if (fa
[all...]
H A Dinv5.c23 recopy(FILE *ft, FILE *fb, FILE *fa, int nhash) argument
33 if (fa == NULL) {
37 fread(&n, sizeof (n), 1, fa);
38 fread(&iflong, sizeof (iflong), 1, fa);
41 n = fread(hpt_l, sizeof (*hpt_l), n, fa);
44 n = fread(hpt_s, sizeof (*hpt_s), n, fa);
48 fclose(fa);
H A Dinv6.c23 whash(FILE *ft, FILE *fa, FILE *fb, int nhash, int iflong, argument
73 fwrite(&nhash, sizeof (nhash), 1, fa);
74 fwrite(&iflong, sizeof (iflong), 1, fa);
75 fwrite(hpt, sizeof (*hpt), nhash, fa);
76 fwrite(hfreq, sizeof (*hfreq), nhash, fa);
H A Dhunt1.c59 static FILE *fa, *fb, *fc; local
154 fclose(fa);
159 fa = fopen(nma, "r");
160 if (fa == NULL) {
176 fseek(fa, 0L, 0);
177 fread(&nhash, sizeof (nhash), 1, fa);
178 fread(&iflong, sizeof (iflong), 1, fa);
183 kk = fread(hpt, sizeof (*hpt), nhash, fa);
191 frtbl = fread(hfreq, sizeof (*hfreq), nhash, fa);
H A Dglue1.c63 static FILE *fa, *fb, *fc; local
147 unopen(fa);
155 fa = iopen(indexname, ".ia");
160 fprintf(stderr, "opened f's as %o %o %o\n", fa, fb, fc);
163 fread(&nhash, sizeof (nhash), 1, fa);
164 fread(&iflong, sizeof (iflong), 1, fa);
192 fread(hpt, sizeof (*hpt), nhash, fa);
203 frtbl = fread(hfreq, sizeof (*hfreq), nhash, fa);
H A Dinv1.c41 FILE *fa, *fb, *fc, *fta, *ftb, *ftc; local
150 fa = fopen(nma, "w");
152 whash(fta, fa, fb, nhash, iflong, &keys, &hashes);
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfpoll.c32 int sfpoll(Sfio_t** fa, reg int n, int tm) argument
34 int sfpoll(fa, n, tm)
35 Sfio_t** fa; /* array of streams to poll */
44 if(n <= 0 || !fa)
61 { f = fa[r];
105 { f = fa[check[r]];
113 { f = fa[check[r]];
142 { f = fa[check[r]];
170 { f = fa[check[r]];
204 { f = fa[chec
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/trivial/
H A Dzfs_acl_find_001_pos.ksh71 fa=$(usr_exec find $INI_DIR -type f -name ${f##*/} \
73 if [[ $fa != $af ]]; then
H A Dzfs_acl_find_002_neg.ksh76 fa=$(usr_exec find $INI_DIR -type f -name ${f##*/} \
78 if [[ $fa == attribute.$j ]]; then
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_client.c195 smbfattr_t fa;
198 vattr_to_fattr(vp, vap, &fa);
199 smbfs_attrcache_fa(vp, &fa);
393 * NFS: smbfs_cache_fattr(vap, fa, vap, t, cr);
413 struct smbfattr fa; local
439 error = smbfs_getattr_cache(vp, &fa);
441 error = smbfs_getattr_otw(vp, &fa, cr);
450 smbfattr_to_vattr(vp, &fa, vap);
452 smbfattr_to_xvattr(&fa, vap);
464 smbfattr_to_vattr(vnode_t *vp, struct smbfattr *fa, struc argument
515 smbfattr_to_xvattr(struct smbfattr *fa, struct vattr *vap) argument
[all...]
H A Dsmbfs_smb.c890 struct smbfattr fa; local
894 error = smbfs_smb_query_info(np, name, len, &fa, scrp);
895 attr = fa.fa_attr;
908 struct smbfattr fa; local
912 error = smbfs_smb_query_info(np, name, len, &fa, scrp);
913 attr = fa.fa_attr;
1208 struct smbfattr fa; local
1214 bzero(&fa, sizeof (fa));
1265 fa
1574 uint16_t fa; local
[all...]
/illumos-gate/usr/src/boot/lib/libstand/
H A Dnfs.c84 struct nfsv2_fattrs fa; member in struct:nfs_read_repl
118 struct nfsv2_fattrs fa; /* all in network order */ member in struct:nfs_iodesc
165 struct nfsv3_fattrs fa; member in struct:nfsv3_readdir_repl
183 struct nfsv3_fattrs fa; /* all in network order */ member in struct:nfs_iodesc
286 struct nfsv2_fattrs fa; member in struct:repl
329 bcopy(&repl->fa, &newfd->fa, sizeof(newfd->fa));
451 struct nfsv2_fattrs *fa; local
490 nfs_root_node.fa
957 struct nfsv3_fattrs fa; member in struct:repl
1021 struct nfsv3_fattrs fa; member in struct:repl
1093 struct nfsv3_fattrs *fa; local
[all...]
/illumos-gate/usr/src/cmd/sh/
H A Dmain.c459 Ldup(int fa, int fb) argument
463 dup(fa | DUPFLG, fb);
464 close(fa);
469 if (fa >= 0) {
470 if (fa != fb) {
472 fcntl(fa, 0, fb); /* normal dup */
473 close(fa);
/illumos-gate/usr/src/cmd/mdb/common/modules/sctp/
H A Dsctp.c136 sctp_faddr_t fa[1]; local
142 if (mdb_vread(fa, sizeof (*fa), addr) == -1) {
147 statestr = sctp_faddr_state(fa->sf_state);
148 mdb_printf("%<u>%p\t%<b>%N%</b>\t%s%</u>\n", addr, &fa->sf_faddr,
150 mdb_printf("next\t\t%?p\tsaddr\t%N\n", fa->sf_next, &fa->sf_saddr);
151 mdb_printf("rto\t\t%?d\tsrtt\t\t%?d\n", fa->sf_rto, fa->sf_srtt);
152 mdb_printf("rttvar\t\t%?d\trtt_updates\t%?u\n", fa
[all...]
/illumos-gate/usr/src/cmd/awk/
H A Db.c75 #define NFA 20 /* cache this many dynamic fa's */
76 fa *fatab[NFA];
79 static fa *mkdfa(uchar *, int);
80 static int makeinit(fa *, int);
84 static void cfoll(fa *, Node *);
88 static void freefa(fa *);
89 static int cgoto(fa *, int, int);
91 fa *
95 fa *pfa;
126 fa *
[all...]
H A Dawk.h252 typedef struct fa { struct
264 } fa; typedef in typeref:struct:fa
267 extern fa *makedfa(uchar *, int);
268 extern int nematch(fa *, uchar *);
269 extern int match(fa *, uchar *);
270 extern int pmatch(fa *, uchar *);
H A Drun.c551 fa *pfa;
1234 fa *pfa;
1236 pfa = (fa *)a[2];
1736 fa *pfa;
1742 pfa = (fa *)a[1]; /* regular expression */
1800 register fa *pfa;
1809 pfa = (fa *) a[1]; /* regular expression */
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_unmount/
H A Dzfs_unmount_009_pos.ksh40 # 2. Verify that 'zfs unmount -a' will fail and 'zfs unmount -fa' will succeed
99 log_must zfs unmount -fa
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_smb.c374 struct smbfattr fa; local
381 bzero(&fa, sizeof (fa));
445 smb_time_NT2local(llongint, &fa.fa_createtime);
447 smb_time_NT2local(llongint, &fa.fa_atime);
449 smb_time_NT2local(llongint, &fa.fa_mtime);
451 smb_time_NT2local(llongint, &fa.fa_ctime);
454 fa.fa_attr = longint;
456 fa.fa_allocsz = llongint;
458 fa
[all...]
/illumos-gate/usr/src/lib/libdladm/common/
H A Dflowprop.c270 dladm_flow_attr_t fa; local
273 status = dladm_flow_info(handle, flow, &fa);
276 mrp = &(fa.fa_resource_props);
364 dladm_flow_attr_t fa; local
367 bzero(&fa, sizeof (dladm_flow_attr_t));
368 status = dladm_flow_info(handle, flow, &fa);
371 mrp = &(fa.fa_resource_props);
/illumos-gate/usr/src/cmd/oawk/
H A Db.c40 extern struct fa *cgotofn();
66 struct fa { struct
81 struct fa *st;
109 struct fa *
114 struct fa *fap;
428 struct fa *
440 struct fa *where[NSTATES];
447 struct fa *pfa;
785 if ((pfa = (struct fa *)malloc((numtrans + 1)
786 * sizeof (struct fa)))
[all...]
/illumos-gate/usr/src/uts/sun4u/starfire/sys/
H A Didn.h1259 #define IDNFIN_ARG_IS_FATAL(fa) ((fa) > IDNFIN_ARG_NONE)
1268 #define FINARG2IDNKERR(fa) \
1269 (((fa) == IDNFIN_ARG_SMRBAD) ? IDNKERR_SMR_CORRUPTED : \
1270 ((fa) == IDNFIN_ARG_CPUCFG) ? IDNKERR_CPU_CONFIG : \
1271 ((fa) == IDNFIN_ARG_HWERR) ? IDNKERR_HW_ERROR : \
1272 ((fa) == IDNFIN_ARG_CFGERR_FATAL) ? IDNKERR_HW_ERROR : \
1273 ((fa) == IDNFIN_ARG_CFGERR_MTU) ? IDNKERR_CONFIG_MTU : \
1274 ((fa) == IDNFIN_ARG_CFGERR_BUF) ? IDNKERR_CONFIG_BUF : \
1275 ((fa)
[all...]
/illumos-gate/usr/src/uts/common/io/1394/
H A Ds1394_fa.c199 s_priv->cmd_ext.fa.type = type;
/illumos-gate/usr/src/uts/common/sys/1394/
H A Ds1394.h912 s1394_fa_cmd_priv_t fa; member in union:s1394_cmd_priv_s::__anon6975
924 #define S1394_GET_FA_CMD_PRIV(cmd) (&(S1394_GET_CMD_PRIV(cmd)->cmd_ext.fa))
927 ((s_priv->cmd_ext.fa.type == S1394_FA_TYPE_FCP_CTL) || \
928 (s_priv->cmd_ext.fa.type == S1394_FA_TYPE_FCP_TGT))

Completed in 140 milliseconds

12