Searched defs:st (Results 226 - 250 of 635) sorted by path

1234567891011>>

/external/e2fsprogs/lib/blkid/
H A Ddevno.c100 struct stat st; local
115 if (stat(path, &st) < 0)
118 if (S_ISBLK(st.st_mode) && st.st_rdev == devno) {
125 if (list && S_ISDIR(st.st_mode) && !lstat(path, &st) &&
126 S_ISDIR(st.st_mode))
H A Dgetsize.c139 struct stat st; local
150 if (fstat(fd, &st) >= 0 &&
151 (S_ISBLK(st.st_mode) || S_ISCHR(st.st_mode)))
152 part = st.st_rdev & 7;
163 struct stat64 st; local
164 if (fstat64(fd, &st) == 0)
166 struct stat st;
167 if (fstat(fd, &st) == 0)
169 if (S_ISREG(st
[all...]
H A Dprobe.c1507 struct stat st; local
1518 if (stat(dev->bid_name, &st) < 0) {
1535 (st.st_mtime <= dev->bid_time) &&
1545 (unsigned long)st.st_mtime, (unsigned long)diff));
1620 dev->bid_devno = st.st_rdev;
1628 dev->bid_name, (long long)st.st_rdev, type));
H A Dread.c385 struct stat st; local
396 if (fstat(fd, &st) < 0)
398 if ((st.st_mtime == cache->bic_ftime) ||
439 cache->bic_ftime = st.st_mtime;
H A Dsave.c65 struct stat st; local
79 if (((ret = stat(filename, &st)) < 0 && errno != ENOENT) ||
93 if (ret == 0 && S_ISREG(st.st_mode)) {
/external/e2fsprogs/lib/ext2fs/
H A Dfinddev.c85 struct stat st; local
99 if (stat(path, &st) < 0)
101 if (S_ISDIR(st.st_mode))
103 if (S_ISBLK(st.st_mode) && st.st_rdev == device) {
H A Dmkjournal.c432 struct stat st; local
440 if (stat(journal_dev->device_name, &st) < 0)
443 if (!S_ISBLK(st.st_mode))
480 fs->super->s_journal_dev = st.st_rdev;
497 struct stat st; local
548 if (fstat(fd, &st) < 0) {
575 journal_ino = st.st_ino;
H A Dread_bb_file.c85 struct compat_struct *st; local
87 st = (struct compat_struct *) priv_data;
88 if (st->invalid)
89 (st->invalid)(fs, blk);
100 struct compat_struct st; local
102 st.invalid = invalid;
104 return ext2fs_read_bb_FILE2(fs, f, bb_list, &st,
H A Dtdb.c837 struct stat st; local
850 if (fstat(tdb->fd, &st) == -1) {
854 if (st.st_size < (size_t)len) {
859 (int)len, (int)st.st_size));
867 tdb->map_size = st.st_size;
3812 struct stat st; local
3915 if (fstat(tdb->fd, &st) == -1)
3924 if (tdb_already_open(st.st_dev, st.st_ino)) {
3927 name, (int)st
4063 struct stat st; local
[all...]
H A Dunix_io.c476 ext2fs_struct_stat st; local
544 if (ext2fs_stat(io->name, &st) == 0) {
545 if (S_ISBLK(st.st_mode))
607 (ext2fs_stat(io->name, &st) == 0) &&
608 (S_ISBLK(st.st_mode))) {
/external/e2fsprogs/lib/uuid/
H A Dgen_uuid.c489 struct stat st; local
506 access_ret = stat(uuidd_path, &st);
507 if (access_ret == 0 && (st.st_mode & (S_ISUID | S_ISGID)) == 0)
/external/e2fsprogs/misc/
H A Dchattr.c195 STRUCT_STAT st; local
197 if (LSTAT (name, &st) == -1) {
228 if (!S_ISDIR(st.st_mode))
250 if (S_ISDIR(st.st_mode) && recursive)
H A De2image.c228 struct stat st; local
274 if (stat(device_name, &st) == 0)
275 hdr.fs_device = st.st_rdev;
277 if (fstat(fd, &st) == 0) {
278 hdr.image_device = st.st_dev;
279 hdr.image_inode = st.st_ino;
1446 struct stat st; local
1598 if (fstat(fd, &st)) {
1602 if (S_ISBLK(st.st_mode))
H A Dfilefrag.c128 ext2fs_struct_stat *st)
168 if (fm_extent->fe_logical + fm_extent->fe_length >= (__u64) st->st_size)
183 ext2fs_struct_stat *st)
241 blk_shift, st);
261 ext2fs_struct_stat *st,
268 const long bpib = st->st_blksize / 4;
281 i++, logical += st->st_blksize) {
303 fm_ext.fe_physical = block * st->st_blksize;
311 (last_block + 1) * st->st_blksize,
312 blk_shift, st);
126 print_extent_info(struct fiemap_extent *fm_extent, int cur_ex, unsigned long long expected, int blk_shift, ext2fs_struct_stat *st) argument
182 filefrag_fiemap(int fd, int blk_shift, int *num_extents, ext2fs_struct_stat *st) argument
260 filefrag_fibmap(int fd, int blk_shift, int *num_extents, ext2fs_struct_stat *st, unsigned long numblocks, int is_ext2) argument
336 ext2fs_struct_stat st; local
[all...]
H A Dfsck.c404 struct stat st; local
411 if (stat(prog, &st) == 0) break;
H A Dlsattr.c111 STRUCT_STAT st; local
114 if (LSTAT (name, &st) == -1) {
119 if (S_ISDIR(st.st_mode) && !dirs_opt)
130 STRUCT_STAT st; local
140 if (LSTAT (path, &st) == -1)
145 if (S_ISDIR(st.st_mode) && recursive &&
H A Dmklost+found.c35 struct stat st; local
70 if (stat (LPF, &st) == -1) {
74 } while (st.st_size <= (EXT2_NDIR_BLOCKS - 1) * st.st_blksize);
/external/e2fsprogs/tests/progs/
H A Drandom_exercise.c61 struct stat st; local
63 if (fstat(fd, &st) < 0) {
67 return st.st_ino;
/external/e2fsprogs/util/
H A Dsubst.c373 struct stat st; local
394 if (stat(outfn, &st) == 0)
395 chmod(outfn, st.st_mode & ~0222);
H A Dsymlinks.c273 static struct stat st; local
288 if (lstat(path, &st) == -1) {
290 } else if (st.st_dev == dev) {
291 if (S_ISLNK(st.st_mode)) {
293 } else if (recurse && S_ISDIR(st.st_mode)) {
369 struct stat st; local
375 if (lstat(path, &st) == -1)
377 else if (S_ISLNK(st.st_mode))
378 fix_symlink(path, st.st_dev);
380 dirwalk(path, strlen(path), st
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Djavax.servlet_2.5.0.v200910301333.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 391 milliseconds

1234567891011>>