Searched refs:st_blocks (Results 1 - 25 of 44) sorted by relevance

12

/macosx-10.10/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dstat.pl26 $st_atime,$st_mtime,$st_ctime,$st_blksize,$st_blocks) = stat(shift(@_));
/macosx-10.10/ksh-23/ksh/src/lib/libast/port/
H A Diblocks.c29 * mail gsf@research.att.com when you figure out the stat.st_blocks units
76 return (st->st_blocks <= 0 || st->st_size <= 0) ? 0 : st->st_blocks;
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dfileblocks.c51 st_blocks (off_t size) function
H A Dsystem.h366 HP-UX counts st_blocks in 1024-byte units,
368 counts st_blocks in 4K units. */
374 off_t st_blocks ();
375 # define ST_NBLOCKS(statbuf) (st_blocks ((statbuf).st_size))
378 # define ST_NBLOCKS(statbuf) ((statbuf).st_blocks)
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dmailstat.c43 * st_nlink always 1, unless st_blocks is not present, in which case it's
46 * st_blocks total number of messages, if present in struct stat
87 st_ret.st_blocks = 0;
140 st_ret.st_blocks++;
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dstat.h131 __int32_t st_blocks; /* blocks allocated for file */ member in struct:ostat
176 blkcnt_t st_blocks; /* [XSI] blocks allocated for file */ \
215 blkcnt_t st_blocks; /* [XSI] blocks allocated for file */ member in struct:stat
264 blkcnt_t st_blocks; /* [XSI] Blocks allocated for file */ member in struct:user64_stat
297 blkcnt_t st_blocks; /* [XSI] Blocks allocated for file */ member in struct:user32_stat
333 blkcnt_t st_blocks; /* [XSI] blocks allocated for file */ member in struct:user64_stat64
365 blkcnt_t st_blocks; /* [XSI] blocks allocated for file */ member in struct:user32_stat64
/macosx-10.10/shell_cmds-179/find/
H A Dls.c71 (void)printf("%6lu %8"PRId64" ", (u_long) sb->st_ino, sb->st_blocks);
/macosx-10.10/text_cmds-88/sort/
H A Dsystem.h259 ? st_blocks ((statbuf).st_size) : 0)
272 /* HP-UX counts st_blocks in 1024-byte units.
277 /* AIX PS/2 counts st_blocks in 4K units. */
284 ? (statbuf).st_blocks * ST_BLKSIZE(statbuf)/ST_NBLOCKSIZE : 0)
291 # define ST_NBLOCKS(statbuf) ((statbuf).st_blocks)
/macosx-10.10/file_cmds-242/du/
H A Ddu.c276 ftsparnum[0] += ftsnum[0] += p->fts_statp->st_blocks;
321 (void) prthumanval(howmany(p->fts_statp->st_blocks,
331 (intmax_t)howmany(p->fts_statp->st_blocks, blocksize),
343 ftsparnum[0] += p->fts_statp->st_blocks;
/macosx-10.10/apr-32/apr/apr/file_io/netware/
H A Dfilestat.c77 finfo->csize = (apr_off_t)info->st_blocks * (apr_off_t)DEV_BSIZE;
79 finfo->csize = (apr_off_t)info->st_blocks * (apr_off_t)512;
/macosx-10.10/apr-32/apr/apr/file_io/unix/
H A Dfilestat.c125 finfo->csize = (apr_off_t)info->st_blocks * (apr_off_t)DEV_BSIZE;
127 finfo->csize = (apr_off_t)info->st_blocks * (apr_off_t)512;
/macosx-10.10/file_cmds-242/ls/
H A Dls.c749 if (sp->st_blocks > maxblock)
750 maxblock = sp->st_blocks;
758 btotal += sp->st_blocks;
H A Dprint.c358 dp->s_block, (u_int64_t)howmany(sp->st_blocks, blocksize));
589 (int)sizefield, (u_int64_t)howmany(sp->st_blocks, blocksize));
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkMain.c241 nullStdin = fstat(0, &st) || (S_ISCHR(st.st_mode) && !st.st_blocks);
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkMain.c241 nullStdin = fstat(0, &st) || (S_ISCHR(st.st_mode) && !st.st_blocks);
/macosx-10.10/tcl-105/tk84/tk/macosx/
H A DtkMacOSXInit.c366 if (fstat(0, &st) || (S_ISCHR(st.st_mode) && st.st_blocks == 0)) {
/macosx-10.10/webdavfs-367/mount.tproj/
H A Dwebdav_file.c604 wstat->st_blocks = node->attr_stat_info.attr_stat.st_blocks;
769 statbuf.attr_stat.st_blocks = 0; /* we just created it */
870 statbuf.attr_stat.st_blocks = ((statbuf.attr_stat.st_size + S_BLKSIZE - 1) / S_BLKSIZE);
1183 statbuf.attr_stat.st_blocks = ((statbuf.attr_stat.st_size + S_BLKSIZE - 1) / S_BLKSIZE);
H A Dwebdav_parse.c1704 statbuf.attr_stat.st_blocks = ((statbuf.attr_stat.st_size + S_BLKSIZE - 1) / S_BLKSIZE);
1759 statbuf.attr_stat.st_blocks = ((statbuf.attr_stat.st_size + S_BLKSIZE - 1) / S_BLKSIZE);
1917 statbuf->attr_stat.st_blocks = ((statbuf->attr_stat.st_size + S_BLKSIZE - 1) / S_BLKSIZE);
/macosx-10.10/file_cmds-242/stat/
H A Dstat.c108 "st_blksize=%k st_blocks=%b" SHELL_F
714 small = (sizeof(st->st_blocks) == 4);
715 data = st->st_blocks;
/macosx-10.10/tcl-105/tk/tk/macosx/
H A DtkMacOSXInit.c347 (S_ISCHR(st.st_mode) && st.st_blocks == 0)))) {
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclIOUtil.c97 tmp3 = (Tcl_WideInt) buf.st_blocks;
139 oldStyleBuf->st_blocks = (blkcnt_t) buf.st_blocks;
141 oldStyleBuf->st_blocks = (unsigned long) buf.st_blocks;
2036 buf->st_blocks = Tcl_LongAsWide(oldStyleStatBuffer.st_blocks);
/macosx-10.10/file_cmds-242/pax/
H A Dbuf_subs.c777 if (((off_t)(arcn->sb.st_blocks * BLKMULT)) >= arcn->sb.st_size)
/macosx-10.10/webdavfs-367/webdav_fs.kextproj/webdav_fs.kmodproj/
H A Dwebdav.h319 blkcnt_t st_blocks; /* [XSI] blocks allocated for file */ member in struct:webdav_stat
/macosx-10.10/zsh-61/zsh/Src/Modules/
H A Dstat.c307 statulprint((unsigned long)sbuf->st_blocks, optr);
/macosx-10.10/Heimdal-398.1.2/appl/ftp/ftpd/
H A Dls.c157 file->bsize = block_convert(st->st_blocks);
531 total_blocks += block_convert(fi[i].st.st_blocks);

Completed in 385 milliseconds

12