Lines Matching refs:c_short
94 pub st_mode: c_short,
95 pub st_nlink: c_short,
96 pub st_uid: c_short,
97 pub st_gid: c_short,
204 pub const S_IEXEC: c_short = 0o0100;
205 pub const S_IWRITE: c_short = 0o0200;
206 pub const S_IREAD: c_short = 0o0400;
207 pub const S_IFCHR: c_short = 0o2_0000;
208 pub const S_IFDIR: c_short = 0o4_0000;
209 pub const S_IFMT: c_short = 0o16_0000;
210 pub const S_IFIFO: c_short = 0o1_0000;
211 pub const S_IFBLK: c_short = 0o6_0000;
212 pub const S_IFREG: c_short = 0o10_0000;