File tree 5 files changed +12
-12
lines changed
src/unix/linux_like/android
5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 30
30
pub st_dev: c_ulonglong,
31
31
__pad0: [ c_uchar; 4 ] ,
32
32
__st_ino: crate :: ino_t,
33
- pub st_mode: c_uint ,
33
+ pub st_mode: crate :: mode_t ,
34
34
pub st_nlink: crate :: nlink_t,
35
35
pub st_uid: crate :: uid_t,
36
36
pub st_gid: crate :: gid_t,
52
52
pub st_dev: c_ulonglong,
53
53
__pad0: [ c_uchar; 4 ] ,
54
54
__st_ino: crate :: ino_t,
55
- pub st_mode: c_uint ,
55
+ pub st_mode: crate :: mode_t ,
56
56
pub st_nlink: crate :: nlink_t,
57
57
pub st_uid: crate :: uid_t,
58
58
pub st_gid: crate :: gid_t,
Original file line number Diff line number Diff line change 9
9
pub struct stat {
10
10
pub st_dev: crate :: dev_t,
11
11
pub st_ino: crate :: ino_t,
12
- pub st_mode: c_uint ,
12
+ pub st_mode: crate :: mode_t ,
13
13
pub st_nlink: crate :: nlink_t,
14
14
pub st_uid: crate :: uid_t,
15
15
pub st_gid: crate :: gid_t,
32
32
pub struct stat64 {
33
33
pub st_dev: crate :: dev_t,
34
34
pub st_ino: crate :: ino_t,
35
- pub st_mode: c_uint ,
35
+ pub st_mode: crate :: mode_t ,
36
36
pub st_nlink: crate :: nlink_t,
37
37
pub st_uid: crate :: uid_t,
38
38
pub st_gid: crate :: gid_t,
Original file line number Diff line number Diff line change 10
10
pub struct stat {
11
11
pub st_dev: crate :: dev_t,
12
12
pub st_ino: crate :: ino_t,
13
- pub st_mode: c_uint ,
13
+ pub st_mode: crate :: mode_t ,
14
14
pub st_nlink: c_uint,
15
15
pub st_uid: crate :: uid_t,
16
16
pub st_gid: crate :: gid_t,
33
33
pub struct stat64 {
34
34
pub st_dev: crate :: dev_t,
35
35
pub st_ino: crate :: ino_t,
36
- pub st_mode: c_uint ,
36
+ pub st_mode: crate :: mode_t ,
37
37
pub st_nlink: c_uint,
38
38
pub st_uid: crate :: uid_t,
39
39
pub st_gid: crate :: gid_t,
Original file line number Diff line number Diff line change 11
11
pub st_dev: crate :: dev_t,
12
12
pub st_ino: crate :: ino_t,
13
13
pub st_nlink: c_ulong,
14
- pub st_mode: c_uint ,
14
+ pub st_mode: crate :: mode_t ,
15
15
pub st_uid: crate :: uid_t,
16
16
pub st_gid: crate :: gid_t,
17
17
pub st_rdev: crate :: dev_t,
31
31
pub st_dev: crate :: dev_t,
32
32
pub st_ino: crate :: ino_t,
33
33
pub st_nlink: c_ulong,
34
- pub st_mode: c_uint ,
34
+ pub st_mode: crate :: mode_t ,
35
35
pub st_uid: crate :: uid_t,
36
36
pub st_gid: crate :: gid_t,
37
37
pub st_rdev: crate :: dev_t,
Original file line number Diff line number Diff line change @@ -528,16 +528,16 @@ s_no_extra_traits! {
528
528
}
529
529
530
530
pub struct dirent {
531
- pub d_ino: u64 ,
532
- pub d_off: i64 ,
531
+ pub d_ino: crate :: ino_t ,
532
+ pub d_off: crate :: off_t ,
533
533
pub d_reclen: c_ushort,
534
534
pub d_type: c_uchar,
535
535
pub d_name: [ c_char; 256 ] ,
536
536
}
537
537
538
538
pub struct dirent64 {
539
- pub d_ino: u64 ,
540
- pub d_off: i64 ,
539
+ pub d_ino: crate :: ino64_t ,
540
+ pub d_off: crate :: off_t ,
541
541
pub d_reclen: c_ushort,
542
542
pub d_type: c_uchar,
543
543
pub d_name: [ c_char; 256 ] ,
You can’t perform that action at this time.
0 commit comments