]> git.proxmox.com Git - rustc.git/blob - src/libstd/os/android/raw.rs
Imported Upstream version 1.1.0+dfsg1
[rustc.git] / src / libstd / os / android / raw.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Android-specific raw type definitions
12
13 #![stable(feature = "raw_ext", since = "1.1.0")]
14
15 use os::raw::{c_uint, c_uchar, c_ulonglong, c_longlong, c_ulong};
16 use os::unix::raw::{uid_t, gid_t};
17
18 #[stable(feature = "raw_ext", since = "1.1.0")]
19 pub type blkcnt_t = u32;
20 #[stable(feature = "raw_ext", since = "1.1.0")]
21 pub type blksize_t = u32;
22 #[stable(feature = "raw_ext", since = "1.1.0")]
23 pub type dev_t = u32;
24 #[stable(feature = "raw_ext", since = "1.1.0")]
25 pub type ino_t = u32;
26 #[stable(feature = "raw_ext", since = "1.1.0")]
27 pub type mode_t = u16;
28 #[stable(feature = "raw_ext", since = "1.1.0")]
29 pub type nlink_t = u16;
30 #[stable(feature = "raw_ext", since = "1.1.0")]
31 pub type off_t = i32;
32 #[stable(feature = "raw_ext", since = "1.1.0")]
33 pub type time_t = i32;
34
35 #[repr(C)]
36 #[stable(feature = "raw_ext", since = "1.1.0")]
37 pub struct stat {
38 #[stable(feature = "raw_ext", since = "1.1.0")]
39 pub st_dev: c_ulonglong,
40 #[stable(feature = "raw_ext", since = "1.1.0")]
41 pub __pad0: [c_uchar; 4],
42 #[stable(feature = "raw_ext", since = "1.1.0")]
43 pub __st_ino: ino_t,
44 #[stable(feature = "raw_ext", since = "1.1.0")]
45 pub st_mode: c_uint,
46 #[stable(feature = "raw_ext", since = "1.1.0")]
47 pub st_nlink: c_uint,
48 #[stable(feature = "raw_ext", since = "1.1.0")]
49 pub st_uid: uid_t,
50 #[stable(feature = "raw_ext", since = "1.1.0")]
51 pub st_gid: gid_t,
52 #[stable(feature = "raw_ext", since = "1.1.0")]
53 pub st_rdev: c_ulonglong,
54 #[stable(feature = "raw_ext", since = "1.1.0")]
55 pub __pad3: [c_uchar; 4],
56 #[stable(feature = "raw_ext", since = "1.1.0")]
57 pub st_size: c_longlong,
58 #[stable(feature = "raw_ext", since = "1.1.0")]
59 pub st_blksize: blksize_t,
60 #[stable(feature = "raw_ext", since = "1.1.0")]
61 pub st_blocks: c_ulonglong,
62 #[stable(feature = "raw_ext", since = "1.1.0")]
63 pub st_atime: time_t,
64 #[stable(feature = "raw_ext", since = "1.1.0")]
65 pub st_atime_nsec: c_ulong,
66 #[stable(feature = "raw_ext", since = "1.1.0")]
67 pub st_mtime: time_t,
68 #[stable(feature = "raw_ext", since = "1.1.0")]
69 pub st_mtime_nsec: c_ulong,
70 #[stable(feature = "raw_ext", since = "1.1.0")]
71 pub st_ctime: time_t,
72 #[stable(feature = "raw_ext", since = "1.1.0")]
73 pub st_ctime_nsec: c_ulong,
74 #[stable(feature = "raw_ext", since = "1.1.0")]
75 pub st_ino: c_ulonglong,
76 }