Home
last modified time | relevance | path

Searched refs:df (Results 1 – 25 of 96) sorted by relevance

1234

/titanic_44/usr/src/cmd/sendmail/src/
H A Dcollect.c200 SM_FILE_T *df; local
209 df = bfopen(dfname, QueueFileMode, DataFileBufferSize,
213 if (df == NULL)
221 dfd = sm_io_getinfo(df, SM_IO_WHAT_FD, NULL);
230 return df;
286 register SM_FILE_T *df; local
304 df = NULL;
515 (void) sm_io_putc(df, SM_TIME_DEFAULT,
668 df = collect_eoh(e, numhdrs, hdrslen);
669 if (df == NULL)
[all …]
/titanic_44/usr/src/cmd/backup/dump/
H A Ddumpitime.c80 FILE *df; in inititimes() local
96 if ((df = fopen(increm, "r")) == NULL) { in inititimes()
116 (void) flock(fileno(df), LOCK_SH); in inititimes()
117 readitimes(df); in inititimes()
118 (void) fclose(df); in inititimes()
122 readitimes(df) in readitimes() argument
123 FILE *df; in readitimes()
130 if (getrecord(df, idp) < 0) {
198 FILE *df; in putitime() local
206 if ((df = safe_fopen(increm, "r+", 0664)) == (FILE *)NULL) { in putitime()
[all …]
/titanic_44/usr/src/lib/libm/common/C/
H A Dacos.c98 double z, p, q, r, w, s, c, df; in acos() local
143 df = s; in acos()
144 ((int *) &df)[LOWORD] = 0; in acos()
145 c = (z - df * df) / (s + df); in acos()
151 return (2.0 * (df + w)); in acos()
/titanic_44/usr/src/cmd/stat/vmstat/
H A Dvmstat.c45 struct iodev_filter df; variable
123 df.if_max_iodevs = 4; in main()
124 df.if_allowed_types = IODEV_DISK; in main()
125 df.if_nr_names = 0; in main()
126 df.if_names = safe_alloc(df.if_max_iodevs * sizeof (char *)); in main()
127 (void) memset(df.if_names, 0, df.if_max_iodevs * sizeof (char *)); in main()
130 df.if_nr_names < df.if_max_iodevs) { in main()
131 df.if_names[df.if_nr_names] = *argv; in main()
132 df.if_nr_names++; in main()
140 ss = acquire_snapshot(kc, types, &df); in main()
[all …]
/titanic_44/usr/src/lib/libc/port/gen/
H A Dstrlcat.c43 char *df = dst; in strlcat() local
49 while (left-- != 0 && *df != '\0') in strlcat()
50 df++; in strlcat()
51 l1 = df - dst; in strlcat()
/titanic_44/usr/src/cmd/fs.d/ufs/df/
H A DMakefile28 LIBPROG= df
33 OBJS= df.o
45 POFILE= df.po
46 XGETFLAGS += -a -x df.xcl
/titanic_44/usr/src/cmd/krb5/kadmin/gui/dataclasses/
H A DPrincipal.java43 private static DateFormat df; field in Principal
262 PrExpireTime = df.parse(exp); in setExpiry()
290 PwExpireTime = df.parse(exp); in setPwExpiry()
310 return df.format(ModTime); in getModTime()
321 return df.format(PrExpireTime); in getExpiry()
328 return df.format(LastSuccess); in getLastSuccess()
335 return df.format(LastFailure); in getLastFailure()
342 return df.format(LastPwChange); in getLastPwChange()
351 return df.format(PwExpireTime); in getPwExpireTime()
477 df = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,
/titanic_44/usr/src/cmd/fs.d/
H A DMakefile32 DFPROG= df
47 CLEANFILES += deffs.o df.o ff.o fsck.o fssnapsup.o \
57 USRSBINF= df clri fsck volcopy ff
63 USRBIN2USRSBIN= df
64 USRXPG4BIN2USRSBIN= df
101 $(DFPROG).po := XGETFLAGS += -a -x df.xcl
123 df: deffs.o $(FSLIB) $$(@F).o target
173 -$(RM) $@; $(SYMLINK) ./df $@
/titanic_44/usr/src/cmd/stat/iostat/
H A Diostat.c143 struct iodev_filter df; variable
228 df.if_allowed_types |= IODEV_DISK; in main()
230 df.if_allowed_types |= IODEV_IOPATH_LTI; in main()
234 df.if_allowed_types |= IODEV_IOPATH_LTI; in main()
240 df.if_allowed_types |= IODEV_PARTITION; in main()
250 df.if_allowed_types |= IODEV_CONTROLLER; in main()
270 newss = acquire_snapshot(kc, types, &df); in main()
323 newss = acquire_snapshot(kc, types, &df); in main()
345 free(df.if_names); in main()
1165 df.if_max_iodevs = safe_strtoi(optarg, "invalid limit"); in do_args()
[all …]
/titanic_44/usr/src/uts/common/fs/smbsrv/
H A Dsmb_fsinfo.c419 struct statvfs64 df; in smb_fssize() local
426 if ((rc = smb_fsop_statfs(sr->user_cr, node, &df)) != 0) { in smb_fssize()
432 fssize->fs_sectors_per_unit = df.f_frsize >> 9; in smb_fssize()
433 if (df.f_bavail > df.f_blocks) in smb_fssize()
434 df.f_bavail = 0; in smb_fssize()
436 fssize->fs_volume_units = df.f_blocks; in smb_fssize()
437 fssize->fs_volume_avail = df.f_bavail; in smb_fssize()
438 fssize->fs_caller_units = df.f_blocks; in smb_fssize()
439 fssize->fs_caller_avail = df.f_bavail; in smb_fssize()
/titanic_44/usr/src/uts/common/krtld/
H A Dkobj_subr.c88 char *df = dst; in stand_strlcat() local
94 while (left-- != 0 && *df != '\0') in stand_strlcat()
95 df++; in stand_strlcat()
96 l1 = df - dst; in stand_strlcat()
/titanic_44/usr/src/cmd/stat/common/
H A Dacquire_iodevs.c345 iodev_match(struct iodev_snapshot *dev, struct iodev_filter *df) in iodev_match() argument
354 if (df == NULL) in iodev_match()
358 if (df->if_nr_names == NULL) in iodev_match()
359 return (!(df->if_skip_floppy && is_floppy)); in iodev_match()
363 for (i = 0; i < df->if_nr_names; i++) { in iodev_match()
364 ifn = df->if_names[i]; in iodev_match()
402 struct iodev_filter *df) in choose_iodevs() argument
408 nr_iodevs = df ? df->if_max_iodevs : UNLIMITED_IODEVS; in choose_iodevs()
420 if (!iodev_match(tmp, df)) in choose_iodevs()
454 if ((df->if_nr_names == NULL) || (nr_iodevs != nr_iodevs_orig)) { in choose_iodevs()
[all …]
/titanic_44/usr/src/lib/efcode/include/fcode/
H A Dprivate.h115 #define DFORTH_LO(df) (((u_dforth_t)(df)) & 0xffffffff) argument
116 #define DFORTH_HI(df) ((((u_dforth_t)(df)) >> 32) & 0xffffffff) argument
/titanic_44/usr/src/lib/print/libpapi-common/common/
H A Dmisc.c75 char *df = dst; in strlcat() local
81 while (left-- != 0 && *df != '\0') in strlcat()
82 df++; in strlcat()
83 l1 = df - dst; in strlcat()
/titanic_44/usr/src/lib/libbc/libc/gen/common/
H A Dqeconvert.c46 dm.df = floating_form; /* E format. */
98 dm.df = fixed_form; /* F format. */
149 dm.df = floating_form;
H A Dseconvert.c46 dm.df = floating_form; /* E format. */
98 dm.df = fixed_form; /* F format. */
149 dm.df = floating_form;
H A Ddouble_decim.c85 if (pm->df == floating_form) { /* For E format, simply in decimal_round()
353 ((pm->df == floating_form) && (pm->ndigits < 1))) { /* Gross overflow or bad in _unpacked_to_decimal()
395 if (pm->df == floating_form) in _unpacked_to_decimal()
410 if (((pm->df == fixed_form) && (pm->ndigits >= 0)) || in _unpacked_to_decimal()
411 ((pm->df == floating_form) && ((pm->ndigits + 1) > intdigs))) { /* Need to compute in _unpacked_to_decimal()
413 if (pm->df == floating_form) { /* Need more significant in _unpacked_to_decimal()
430 if (pm->df == floating_form) { /* Combine integer and fraction for E in _unpacked_to_decimal()
H A Deconvert.c47 dm.df = floating_form; /* E format. */
101 dm.df = fixed_form; /* F format. */
/titanic_44/usr/src/cmd/backup/restore/
H A Ddirs.c54 static FILE *df, *mf; variable
127 if ((df = safe_fopen(dirfile, "w", 0600)) == (FILE *)NULL) { in extractdirs()
173 (void) fflush(df); in extractdirs()
175 if (ferror(df)) in extractdirs()
177 (void) fclose(df); in extractdirs()
464 (void) fwrite(dirbuf, 1, DIRBLKSIZ, df); in putent()
465 if (ferror(df)) in putent()
487 (void) fwrite(dirbuf, (size_t)dirloc, 1, df); in flushent()
488 if (ferror(df)) in flushent()
490 g_seekpt = ftello64(df); in flushent()
/titanic_44/usr/src/cmd/power/
H A Dsvc-power47 /usr/bin/df -k -F ufs |
70 if [ X`df -n / | awk '{print $3}'` != "Xzfs" ] ; then
/titanic_44/usr/src/lib/libc/port/fp/
H A Deconvert.c70 dm.df = floating_form; /* E format. */ in econvert()
115 dm.df = floating_form; /* E format. */ in seconvert()
160 dm.df = floating_form; /* E format. */ in qeconvert()
H A Dfconvert.c49 dm.df = fixed_form; /* F format. */ in fconvert()
103 dm.df = fixed_form; /* F format. */ in sfconvert()
157 dm.df = fixed_form; /* F format. */ in qfconvert()
H A Dgconvert.c141 dm.df = floating_form; in gconvert()
168 dm.df = floating_form; in sgconvert()
195 dm.df = floating_form; in qgconvert()
/titanic_44/usr/src/cmd/ps/
H A Dps.c1063 struct def_field *df, *sorted[NFIELDS]; in usage() local
1089 for (df = &fname[0]; df < &fname[NFIELDS]; df++) in usage()
1090 sorted[i++] = df; in usage()
1095 if (pos + strlen((df = sorted[i])->fname) + 1 >= 80) { in usage()
1100 (void) fprintf(stderr, "%s%s", pos > 8 ? " " : "", df->fname); in usage()
1101 pos += strlen(df->fname) + 1; in usage()
1154 struct def_field *df; in parse_format() local
1179 for (df = &fname[0]; df < &fname[NFIELDS]; df++) in parse_format()
1180 if (strcmp(name, df->fname) == 0) { in parse_format()
1185 if (df >= &fname[NFIELDS]) { in parse_format()
[all …]
/titanic_44/usr/src/cmd/boot/scripts/
H A Dupdate_grub.ksh65 rootfstype=`df -n ${ALT_ROOT:-/} | awk '{print $3}'`
89 rootpool=`df -k ${ALT_ROOT:-/} | tail +2 | cut -d/ -f1`

1234