Searched refs:lf (Results 1 - 25 of 40) sorted by relevance

12

/opensolaris-onvv-gate/usr/src/cmd/fs.d/ufs/lockfs/
H A Dlockfs.c257 struct lockfs lf; local
269 bzero((caddr_t)&lf, sizeof (struct lockfs));
271 lf.lf_flags = LOCKFS_MOD;
272 lf.lf_comlen = LOCKFS_MAXCOMMENTLEN;
273 lf.lf_comment = commentbuffer;
275 if (ioctl(fd, _FIOLFSS, &lf) == -1) {
281 switch (lf.lf_lock) {
285 if (LOCKFS_IS_BUSY(&lf))
291 if (LOCKFS_IS_BUSY(&lf))
295 fsmod = LOCKFS_IS_MOD(&lf);
373 struct lockfs lf; local
[all...]
/opensolaris-onvv-gate/usr/src/cmd/ypcmd/
H A Dstdethers.c48 char line[MAXHOSTNAMELEN + 256], *lf, hostname[sizeof (line)]; local
63 lf = strchr(line, '\n');
64 if (lf != NULL)
65 *lf = '\0';
/opensolaris-onvv-gate/usr/src/cmd/tbl/
H A Dt7.c51 int c, ct, vforml, lf; local
56 for(lf=prev(lform); lf>=0 && vspen(table[lf][c].col); lf=prev(lf))
57 vforml=lf;
118 int i, c, lf, lwid; local
144 if ((lf=left(nlin-1,c, &lwid))>=0)
146 fprintf(tabout, ".if \\n(#%c>=0 .sp -1\n",linestop[lf]
[all...]
H A Dt8.c40 int c, lf, ct, form, lwid, vspf, ip = -1, cmidx, exvspen, vforml; local
66 lf = prev(nl);
86 if (lf>=0)
87 if (vspen(table[lf][c].col)) vspf=1;
102 lf=prev(nl);
103 if (lf>=0 && vspen(table[lf][c].col))
124 if (watchout==0 && i+1<nlin && (lf=left(i,c, &lwid))>=0)
127 drawvert(lf, i, c, lwid);
132 for(lf
285 int c, s, pl, lwid, dv, lf, ct; local
[all...]
/opensolaris-onvv-gate/usr/src/lib/libast/common/port/
H A Dlcgen.c283 FILE* lf; local
305 if (!(lf = fopen(lib, "w")))
338 fprintf(lf, "/* : : generated by %s : : */\n", command);
339 fprintf(lf, "\n");
340 fprintf(lf, "#include \"lclib.h\"\n");
341 fprintf(lf, "#include \"lclang.h\"\n");
342 fprintf(lf, "\n");
511 fprintf(lf, "\nconst Lc_attribute_t attribute_%s[] =\n{\n", lp->link.code);
522 fprintf(lf, "{\"%s\",", b);
524 fprintf(lf, "LC
[all...]
/opensolaris-onvv-gate/usr/src/cmd/nscd/
H A Dnscd_log.c78 char *lf)
86 if (lf == NULL || *lf == 0) {
89 } else if (strcmp(lf, "/dev/null") == 0) {
90 (void) strlcpy(_nscd_logfile, lf, PATH_MAX);
95 } else if (strcmp(lf, "stderr") == 0) {
96 (void) strlcpy(_nscd_logfile, lf, PATH_MAX);
107 if ((newlogfd = open(lf, O_EXCL|O_WRONLY|O_CREAT, 0644)) < 0) {
116 if (lstat(lf, &before) < 0) {
120 lf, strerro
77 _nscd_set_lf( char *lf) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/eqn/
H A Dtext.c26 int lf, rf; /* temporary spots for left and right fonts */ variable
60 lf = rf = 0;
63 if (lf == 0)
64 lf = rf; /* save first */
71 lfont[yyval] = lf;
75 printf(".\t%dtext: S%d <- %s; b=%d,h=%d,lf=%c,rf=%c\n",
/opensolaris-onvv-gate/usr/src/cmd/pools/poolstat/
H A Dpoolstat.c54 #define PRINTABLE(i) ((lf->plf_ffs[(i)].pff_prt & D_FIELD) || \
55 (lf->plf_ffs[(i)].pff_prt & X_FIELD))
358 create_prt_sequence_list(char *arg, poolstat_line_format_t *lf) argument
367 NEW0(lf->plf_prt_seq);
368 lf->plf_ffs[0].pff_prt |= PRINTABLE(0) ? PABLE_FIELD : 0;
369 lf->plf_last = lf->plf_prt_seq;
370 lf->plf_last->ple_obj = &(lf->plf_ffs[0]);
371 for (i = 1; i < lf
635 prt_stat_line(poolstat_line_format_t *lf) argument
680 poolstat_line_format_t *lf; /* line format */ local
823 poolstat_line_format_t *lf; local
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/fs/ufs/
H A Dufs_snap.c69 struct lockfs lf; local
108 if ((error = ufs_fiolfss(vp, &lf)) != 0) {
113 if (!LOCKFS_IS_ULOCK(&lf)) {
119 lf.lf_lock = LOCKFS_WLOCK;
120 lf.lf_flags = 0;
121 lf.lf_comment = NULL;
122 if ((error = ufs_fiolfs(vp, &lf, 1)) != 0) {
212 lf.lf_lock = LOCKFS_ULOCK;
213 lf.lf_flags = 0;
214 if ((ufs_fiolfs(vp, &lf,
[all...]
H A Dlufs.c854 struct lockfs lf; local
876 error = ufs_fiolfss(vp, &lf);
880 if (!LOCKFS_IS_ULOCK(&lf)) {
884 lf.lf_lock = LOCKFS_WLOCK;
885 lf.lf_flags = 0;
886 lf.lf_comment = NULL;
887 error = ufs_fiolfs(vp, &lf, 1);
963 lf.lf_lock = LOCKFS_ULOCK;
964 lf.lf_flags = 0;
965 error = ufs_fiolfs(vp, &lf,
990 struct lockfs lf; local
[all...]
H A Dufs_alloc.c1498 allocsp_wlockfs(struct vnode *vp, struct lockfs *lf) argument
1504 err = ufs_fiolfss(vp, lf);
1507 } while (!LOCKFS_IS_ULOCK(lf));
1509 lf->lf_lock = LOCKFS_WLOCK;
1510 lf->lf_flags = 0;
1511 lf->lf_comment = NULL;
1512 err = ufs__fiolfs(vp, lf, 1, 0);
1524 allocsp_unlockfs(struct vnode *vp, struct lockfs *lf) argument
1528 lf->lf_lock = LOCKFS_ULOCK;
1529 lf
1554 struct lockfs lf; local
[all...]
/opensolaris-onvv-gate/usr/src/cmd/lp/filter/postscript/font/devpost/charlib/
H A DMakefile30 OLD_LH Sl bx ci ff lc lf lh \
/opensolaris-onvv-gate/usr/src/cmd/lp/filter/postscript/font/devpost/
H A DS217 lf 50 2 235
H A DS.big209 lf 50 2 235
H A DS.small144 lf 50 2 235
/opensolaris-onvv-gate/usr/src/cmd/loadkeys/type_4/
H A Dkorea33 key 3 all lf(2)
55 key 25 all lf(3)
56 key 26 all lf(4)
79 key 49 all lf(5)
81 key 51 all lf(6)
102 key 72 all lf(7)
103 key 73 all lf(8)
125 key 95 all lf(9)
127 key 97 all lf(10)
148 key 118 all lf(1
[all...]
H A Dreset33 key 3 all lf(2)
55 key 25 all lf(3)
56 key 26 all lf(4)
79 key 49 all lf(5)
81 key 51 all lf(6)
102 key 72 all lf(7)
103 key 73 all lf(8)
125 key 95 all lf(9)
127 key 97 all lf(10)
148 key 118 all lf(1
[all...]
H A Dtraditional_chinese30 key 3 all lf(2)
52 key 25 all lf(3)
53 key 26 all lf(4)
76 key 49 all lf(5)
78 key 51 all lf(6)
99 key 72 all lf(7)
100 key 73 all lf(8)
122 key 95 all lf(9)
124 key 97 all lf(10)
145 key 118 all lf(1
[all...]
/opensolaris-onvv-gate/usr/src/cmd/power/
H A Dparse.c347 * and record the real/lf-delimited line count at *lcnt.
352 char *next, *lf; local
356 while (lf = strchr(next, '\n')) {
358 if (lf == line || (*(lf - 1) != '\\') || *(lf + 1) == '\0')
360 next = lf + 1;
362 return (lf);
/opensolaris-onvv-gate/usr/src/cmd/vi/port/
H A Dex_vops3.c53 int (*lf)(); variable
84 lf = f;
349 lf = lindent;
387 lf = 0;
543 if (lf == vmove && wcursor > linebuf)
555 if (lf == lindent && linebuf[0] == '(')
/opensolaris-onvv-gate/usr/src/common/tsol/
H A Dstol.c233 uint_t lf = (f & ~L_CHECK_AR); /* because L_DEFAULT == 0 */ local
250 ((lf == L_NO_CORRECTION) || (lf == L_DEFAULT))) {
293 } else if (IS_HEX(lf, s)) {
/opensolaris-onvv-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_log.c908 struct log_file *lf; local
922 * "lf" structure. this is
926 lf = lbp->lb_logfile;
927 mutex_enter(&(lf)->lf_lock);
929 lf->lf_refcnt++;
930 mutex_exit(&(lf)->lf_lock);
933 lf->lf_path, lbp->lb_path));
938 if (error = nfslog_logfile_rename(lf->lf_path, lbp->lb_path))
946 (void) nfslog_logfile_rename(lbp->lb_path, lf->lf_path);
959 LOG_FILE_RELE(lf); /* releas
1006 nfslog_logfile_wait(struct log_file *lf) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/troff/troff.d/
H A Dt6.c623 int lf; local
625 if ((lf = fontbase[fbits(i)]->ligfont) == 0) /* font lacks ligatures */
628 if (cbits(j) == 'i' && (lf & LFI))
630 else if (cbits(j) == 'l' && (lf & LFL))
632 else if (cbits(j) == 'f' && (lf & LFF)) {
633 if ((lf & (LFFI|LFFL)) && lg != 2) {
635 if (cbits(k)=='i' && (lf&LFFI))
637 else if (cbits(k)=='l' && (lf&LFFL))
/opensolaris-onvv-gate/usr/src/lib/krb5/plugins/kdb/db2/
H A Dadb_openclose.c53 int lf; local
72 lf = THREEPARAMOPEN(lockfilename, O_RDWR | O_CREAT | O_EXCL, 0600);
73 if (lf == -1)
75 (void) close(lf);
/opensolaris-onvv-gate/usr/src/cmd/mdb/sun4u/modules/opl/oplhwd/
H A Doplhwd.c265 int lf; local
271 for (lf = 0; lf < HWD_LEAVES_PER_PCI_CHANNEL; lf++) {
272 leafp = &pcip->pci_leaf[lf];
276 lf, leafp->leaf_status,
281 lf, leafp->leaf_status,

Completed in 461 milliseconds

12