Searched refs:ios (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-10.0-release/contrib/libstdc++/src/
H A Dios-inst.cc35 #include <ios>
H A Dios_failure.cc35 #include <ios>
H A Dstreambuf-inst.cc35 #include <ios>
H A Dios_locale.cc35 #include <ios>
H A Dfunctexcept.cc34 #include <ios>
H A DMakefile.am142 ios.cc \
159 ios-inst.cc \
H A Dios.cc35 #include <ios>
H A Dios_init.cc35 #include <ios>
121 // besides <iostream> static object, ie just using <ios> with
/freebsd-10.0-release/contrib/libstdc++/include/backward/
H A Diostream.h37 using std::ios;
/freebsd-10.0-release/contrib/libstdc++/include/precompiled/
H A Dstdc++.h63 #include <ios>
/freebsd-10.0-release/usr.sbin/ppp/
H A Dtty.c101 struct termios ios; /* To be able to reset from raw mode */ member in struct:ttydevice
435 struct termios ios; local
449 tcgetattr(p->fd, &ios);
450 cfmakeraw(&ios);
452 ios.c_cflag |= CLOCAL | CCTS_OFLOW | CRTS_IFLOW;
454 ios.c_cflag |= CLOCAL;
457 ios.c_cflag |= HUPCL;
459 if (tcsetattr(p->fd, TCSANOW, &ios) == -1)
502 if (!physical_IsSync(p) && tcsetattr(p->fd, TCSAFLUSH, &dev->ios) == -1)
534 struct termios ios; local
678 struct termios ios; local
[all...]
/freebsd-10.0-release/contrib/libc++/src/
H A Dstrstream.cpp232 bool pos_in = __which & ios::in;
233 bool pos_out = __which & ios::out;
237 case ios::beg:
238 case ios::end:
242 case ios::cur:
257 case ios::beg:
260 case ios::cur:
263 case ios::end:
290 bool pos_in = __which & ios::in;
291 bool pos_out = __which & ios
[all...]
/freebsd-10.0-release/contrib/libstdc++/config/io/
H A Dbasic_file_stdio.h46 #include <ios>
/freebsd-10.0-release/sys/dev/mmc/
H A Dbridge.h135 struct mmc_ios ios; /* Current state of the host */ member in struct:mmc_host
/freebsd-10.0-release/sys/arm/at91/
H A Dat91_mci.c550 struct mmc_ios *ios; local
555 ios = &sc->host.ios;
566 * Whatever we come up with, store it back into ios->clock so that the
569 if (ios->clock == 0) {
574 if ((at91_master_clock % (ios->clock * 2)) == 0)
575 clkdiv = ((at91_master_clock / ios->clock) / 2) - 1;
577 clkdiv = (at91_master_clock / ios->clock) / 2;
579 if (clkdiv == 1 && ios->clock == 25000000 && freq <= 15000000) {
585 ios
[all...]
/freebsd-10.0-release/sys/arm/lpc/
H A Dlpc_mmc.c549 *(int *)result = sc->lm_host.ios.bus_mode;
552 *(int *)result = sc->lm_host.ios.bus_width;
555 *(int *)result = sc->lm_host.ios.chip_select;
558 *(int *)result = sc->lm_host.ios.clock;
576 *(int *)result = sc->lm_host.ios.power_mode;
579 *(int *)result = sc->lm_host.ios.vdd;
602 sc->lm_host.ios.bus_mode = value;
605 sc->lm_host.ios.bus_width = value;
608 sc->lm_host.ios.chip_select = value;
611 sc->lm_host.ios
640 struct mmc_ios *ios = &sc->lm_host.ios; local
[all...]
/freebsd-10.0-release/sys/arm/ti/
H A Dti_mmchs.c967 struct mmc_ios *ios; local
980 ios = &host->ios;
987 switch (ios->bus_width) {
1006 if (sc->sc_cur_power_mode != ios->power_mode) {
1008 if (ios->power_mode == power_up) {
1014 if ((ios->vdd == -1) || (ios->vdd >= vdd_240)) {
1044 } else if (ios->power_mode == power_off) {
1056 } else if (ios
[all...]
H A Dti_sdhci.c276 struct mmc_ios *ios; local
280 ios = &slot->host.ios;
289 if (ios->bus_width == bus_width_8)
/freebsd-10.0-release/sys/dev/sdhci/
H A Dsdhci.c677 struct mmc_ios *ios = &slot->host.ios; local
681 if (ios->power_mode == power_off) {
686 sdhci_set_clock(slot, ios->clock);
687 sdhci_set_power(slot, (ios->power_mode == power_off)?0:ios->vdd);
688 if (ios->bus_width == bus_width_4)
692 if (ios->timing == bus_timing_hs)
1296 *result = slot->host.ios.bus_mode;
1299 *result = slot->host.ios
[all...]
/freebsd-10.0-release/sys/powerpc/mpc85xx/
H A Dfsl_sdhc.c1145 *(int *)result = host->ios.bus_mode;
1148 *(int *)result = host->ios.bus_width;
1151 *(int *)result = host->ios.chip_select;
1154 *(int *)result = host->ios.clock;
1172 *(int *)result = host->ios.power_mode;
1175 *(int *)result = host->ios.vdd;
1192 host->ios.bus_mode = value;
1195 host->ios.bus_width = value;
1198 host->ios.chip_select = value;
1201 host->ios
1235 struct mmc_ios *ios = &host->ios; local
[all...]
/freebsd-10.0-release/lib/libc++/
H A DMakefile22 ios.cpp\
123 ios\
/freebsd-10.0-release/contrib/llvm/lib/Archive/
H A DArchiveWriter.cpp372 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
373 std::ios::binary;
/freebsd-10.0-release/contrib/libstdc++/include/std/
H A Dstd_iosfwd.h135 typedef basic_ios<char> ios; ///< @isiosfwd typedef
/freebsd-10.0-release/contrib/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp472 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
473 std::ios::binary;
/freebsd-10.0-release/contrib/atf/atf-run/
H A Dmisc_helpers.cpp40 #include <ios>

Completed in 179 milliseconds

12