Home | History | Annotate | Download | only in include

Lines Matching full:openmode

57     typedef T3 openmode;
58 static constexpr openmode app;
59 static constexpr openmode ate;
60 static constexpr openmode binary;
61 static constexpr openmode in;
62 static constexpr openmode out;
63 static constexpr openmode trunc;
263 typedef unsigned int openmode;
264 typedef openmode open_mode;
265 static const openmode app = 0x01;
266 static const openmode ate = 0x02;
267 static const openmode binary = 0x04;
268 static const openmode in = 0x08;
269 static const openmode out = 0x10;
270 static const openmode trunc = 0x20;