OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:st_buf
(Results
1 - 4
of
4
) sorted by null
/external/e2fsprogs/misc/
ismounted.c
81
struct stat
st_buf
;
local
91
if (stat(file, &
st_buf
) == 0) {
92
if (S_ISBLK(
st_buf
.st_mode)) {
94
file_rdev =
st_buf
.st_rdev;
97
file_dev =
st_buf
.st_dev;
98
file_ino =
st_buf
.st_ino;
119
if (stat(device, &
st_buf
) == 0) {
120
if (S_ISBLK(
st_buf
.st_mode)) {
122
if (file_rdev && (file_rdev ==
st_buf
.st_rdev))
126
if (file_dev && ((file_dev ==
st_buf
.st_dev) &
[
all
...]
/external/e2fsprogs/lib/ext2fs/
ismounted.c
47
struct stat
st_buf
;
local
57
if (stat(file, &
st_buf
) == 0) {
58
if (S_ISBLK(
st_buf
.st_mode)) {
60
file_rdev =
st_buf
.st_rdev;
63
file_dev =
st_buf
.st_dev;
64
file_ino =
st_buf
.st_ino;
72
if (stat(mnt->mnt_fsname, &
st_buf
) == 0) {
73
if (S_ISBLK(
st_buf
.st_mode)) {
75
if (file_rdev && (file_rdev ==
st_buf
.st_rdev))
79
if (file_dev && ((file_dev ==
st_buf
.st_dev) &
243
struct stat
st_buf
;
local
304
struct stat
st_buf
;
local
[
all
...]
/external/e2fsprogs/resize/
main.c
168
struct stat64
st_buf
;
local
170
struct stat
st_buf
;
local
271
ret = fstat64(fd, &
st_buf
);
273
ret = fstat(fd, &
st_buf
);
292
if (!S_ISREG(
st_buf
.st_mode )) {
432
(((__u64) 1) << (sizeof(
st_buf
.st_size)*8 - 1)) - 1)
434
if ((new_file_size >
st_buf
.st_size) &&
484
if ((
st_buf
.st_size > new_file_size) &&
/external/oprofile/libutil/
op_file.c
90
struct stat *
st_buf
)
97
if (stat(name,
st_buf
) != 0)
Completed in 115 milliseconds