Lines Matching refs:cookie
152 Cookie cookie{&New<NoopStatementState>{terminator}( in NoopUnit() local
157 cookie->GetIoErrorHandler().SetPendingError(iostat); in NoopUnit()
159 return cookie; in NoopUnit()
514 void IONAME(EnableHandlers)(Cookie cookie, bool hasIoStat, bool hasErr, in IONAME()
516 IoErrorHandler &handler{cookie->GetIoErrorHandler()}; in IONAME()
550 Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
551 IoStatementState &io{*cookie}; in IONAME()
562 bool IONAME(SetBlank)(Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
563 IoStatementState &io{*cookie}; in IONAME()
580 Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
581 IoStatementState &io{*cookie}; in IONAME()
597 bool IONAME(SetDelim)(Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
598 IoStatementState &io{*cookie}; in IONAME()
617 bool IONAME(SetPad)(Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
618 IoStatementState &io{*cookie}; in IONAME()
624 bool IONAME(SetPos)(Cookie cookie, std::int64_t pos) { in IONAME()
625 IoStatementState &io{*cookie}; in IONAME()
635 bool IONAME(SetRec)(Cookie cookie, std::int64_t rec) { in IONAME()
636 IoStatementState &io{*cookie}; in IONAME()
646 bool IONAME(SetRound)(Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
647 IoStatementState &io{*cookie}; in IONAME()
676 bool IONAME(SetSign)(Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
677 IoStatementState &io{*cookie}; in IONAME()
695 bool IONAME(SetAccess)(Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
696 IoStatementState &io{*cookie}; in IONAME()
730 bool IONAME(SetAction)(Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
731 IoStatementState &io{*cookie}; in IONAME()
772 Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
773 IoStatementState &io{*cookie}; in IONAME()
798 Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
799 IoStatementState &io{*cookie}; in IONAME()
829 Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
830 IoStatementState &io{*cookie}; in IONAME()
853 Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
854 IoStatementState &io{*cookie}; in IONAME()
888 bool IONAME(SetForm)(Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
889 IoStatementState &io{*cookie}; in IONAME()
916 Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
917 IoStatementState &io{*cookie}; in IONAME()
947 bool IONAME(SetRecl)(Cookie cookie, std::size_t n) { in IONAME()
948 IoStatementState &io{*cookie}; in IONAME()
973 bool IONAME(SetStatus)(Cookie cookie, const char *keyword, std::size_t length) { in IONAME()
974 IoStatementState &io{*cookie}; in IONAME()
1027 bool IONAME(SetFile)(Cookie cookie, const char *path, std::size_t chars) { in IONAME()
1028 IoStatementState &io{*cookie}; in IONAME()
1043 bool IONAME(GetNewUnit)(Cookie cookie, int &unit, int kind) { in IONAME()
1044 IoStatementState &io{*cookie}; in IONAME()
1070 bool IONAME(OutputDescriptor)(Cookie cookie, const Descriptor &descriptor) { in IONAME()
1071 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1074 bool IONAME(InputDescriptor)(Cookie cookie, const Descriptor &descriptor) { in IONAME()
1075 return descr::DescriptorIO<Direction::Input>(*cookie, descriptor); in IONAME()
1078 bool IONAME(OutputUnformattedBlock)(Cookie cookie, const char *x, in IONAME()
1080 IoStatementState &io{*cookie}; in IONAME()
1094 Cookie cookie, char *x, std::size_t length, std::size_t elementBytes) { in IONAME()
1095 IoStatementState &io{*cookie}; in IONAME()
1111 bool IONAME(OutputInteger8)(Cookie cookie, std::int8_t n) { in IONAME()
1112 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputInteger8")) { in IONAME()
1119 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1122 bool IONAME(OutputInteger16)(Cookie cookie, std::int16_t n) { in IONAME()
1123 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputInteger16")) { in IONAME()
1130 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1133 bool IONAME(OutputInteger32)(Cookie cookie, std::int32_t n) { in IONAME()
1134 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputInteger32")) { in IONAME()
1141 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1144 bool IONAME(OutputInteger64)(Cookie cookie, std::int64_t n) { in IONAME()
1145 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputInteger64")) { in IONAME()
1152 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1156 bool IONAME(OutputInteger128)(Cookie cookie, common::int128_t n) { in IONAME()
1157 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputInteger128")) { in IONAME()
1164 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1168 bool IONAME(InputInteger)(Cookie cookie, std::int64_t &n, int kind) { in IONAME()
1169 if (!cookie->CheckFormattedStmtType<Direction::Input>("InputInteger")) { in IONAME()
1176 return descr::DescriptorIO<Direction::Input>(*cookie, descriptor); in IONAME()
1179 bool IONAME(OutputReal32)(Cookie cookie, float x) { in IONAME()
1180 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputReal32")) { in IONAME()
1186 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1189 bool IONAME(OutputReal64)(Cookie cookie, double x) { in IONAME()
1190 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputReal64")) { in IONAME()
1196 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1199 bool IONAME(InputReal32)(Cookie cookie, float &x) { in IONAME()
1200 if (!cookie->CheckFormattedStmtType<Direction::Input>("InputReal32")) { in IONAME()
1206 return descr::DescriptorIO<Direction::Input>(*cookie, descriptor); in IONAME()
1209 bool IONAME(InputReal64)(Cookie cookie, double &x) { in IONAME()
1210 if (!cookie->CheckFormattedStmtType<Direction::Input>("InputReal64")) { in IONAME()
1216 return descr::DescriptorIO<Direction::Input>(*cookie, descriptor); in IONAME()
1219 bool IONAME(OutputComplex32)(Cookie cookie, float r, float i) { in IONAME()
1220 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputComplex32")) { in IONAME()
1228 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1231 bool IONAME(OutputComplex64)(Cookie cookie, double r, double i) { in IONAME()
1232 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputComplex64")) { in IONAME()
1240 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1243 bool IONAME(InputComplex32)(Cookie cookie, float z[2]) { in IONAME()
1244 if (!cookie->CheckFormattedStmtType<Direction::Input>("InputComplex32")) { in IONAME()
1251 return descr::DescriptorIO<Direction::Input>(*cookie, descriptor); in IONAME()
1254 bool IONAME(InputComplex64)(Cookie cookie, double z[2]) { in IONAME()
1255 if (!cookie->CheckFormattedStmtType<Direction::Input>("InputComplex64")) { in IONAME()
1262 return descr::DescriptorIO<Direction::Input>(*cookie, descriptor); in IONAME()
1266 Cookie cookie, const char *x, std::size_t length, int kind) { in IONAME()
1267 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputCharacter")) { in IONAME()
1274 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1277 bool IONAME(OutputAscii)(Cookie cookie, const char *x, std::size_t length) { in IONAME()
1278 return IONAME(OutputCharacter(cookie, x, length, 1)); in IONAME()
1282 Cookie cookie, char *x, std::size_t length, int kind) { in IONAME()
1283 if (!cookie->CheckFormattedStmtType<Direction::Input>("InputCharacter")) { in IONAME()
1289 return descr::DescriptorIO<Direction::Input>(*cookie, descriptor); in IONAME()
1292 bool IONAME(InputAscii)(Cookie cookie, char *x, std::size_t length) { in IONAME()
1293 return IONAME(InputCharacter)(cookie, x, length, 1); in IONAME()
1296 bool IONAME(OutputLogical)(Cookie cookie, bool truth) { in IONAME()
1297 if (!cookie->CheckFormattedStmtType<Direction::Output>("OutputLogical")) { in IONAME()
1304 return descr::DescriptorIO<Direction::Output>(*cookie, descriptor); in IONAME()
1307 bool IONAME(InputLogical)(Cookie cookie, bool &truth) { in IONAME()
1308 if (!cookie->CheckFormattedStmtType<Direction::Input>("InputLogical")) { in IONAME()
1315 return descr::DescriptorIO<Direction::Input>(*cookie, descriptor); in IONAME()
1318 std::size_t IONAME(GetSize)(Cookie cookie) { in IONAME()
1319 IoStatementState &io{*cookie}; in IONAME()
1334 std::size_t IONAME(GetIoLength)(Cookie cookie) { in IONAME()
1335 IoStatementState &io{*cookie}; in IONAME()
1349 void IONAME(GetIoMsg)(Cookie cookie, char *msg, std::size_t length) { in IONAME()
1350 IoStatementState &io{*cookie}; in IONAME()
1360 bool IONAME(InquireCharacter)(Cookie cookie, InquiryKeywordHash inquiry, in IONAME()
1362 IoStatementState &io{*cookie}; in IONAME()
1367 Cookie cookie, InquiryKeywordHash inquiry, bool &result) { in IONAME()
1368 IoStatementState &io{*cookie}; in IONAME()
1372 bool IONAME(InquirePendingId)(Cookie cookie, std::int64_t id, bool &result) { in IONAME()
1373 IoStatementState &io{*cookie}; in IONAME()
1378 Cookie cookie, InquiryKeywordHash inquiry, std::int64_t &result, int kind) { in IONAME()
1379 IoStatementState &io{*cookie}; in IONAME()
1394 enum Iostat IONAME(EndIoStatement)(Cookie cookie) { in IONAME()
1395 IoStatementState &io{*cookie}; in IONAME()