Lines Matching defs:cookie
37 auto cookie{IONAME(BeginInternalFormattedOutput)(
39 EXPECT_TRUE(IONAME(OutputReal64)(cookie, x));
40 auto status{IONAME(EndIoStatement)(cookie)};
63 auto cookie{IONAME(BeginInternalFormattedOutput)(
65 EXPECT_TRUE(IONAME(OutputInteger64)(cookie, x));
66 auto status{IONAME(EndIoStatement)(cookie)};
84 auto cookie{IONAME(BeginInternalFormattedOutput)(
88 IONAME(OutputAscii)(cookie, "WORLD", 5);
89 IONAME(OutputInteger64)(cookie, 678);
90 IONAME(OutputInteger32)(cookie, 0xfeedface);
91 IONAME(OutputLogical)(cookie, true);
94 auto status{IONAME(EndIoStatement)(cookie)};
139 auto cookie{IONAME(BeginInternalArrayFormattedOutput)(
146 IONAME(OutputAscii)(cookie, "WORLD", 5);
147 IONAME(OutputAscii)(cookie, "HELLO", 5);
148 IONAME(OutputInteger64)(cookie, 789);
150 IONAME(OutputInteger64)(cookie, j);
154 const auto status{IONAME(EndIoStatement)(cookie)};
172 auto cookie{IONAME(BeginInternalListInput)(input, sizeof input - 1)};
183 ASSERT_TRUE(IONAME(InputComplex32)(cookie, &z[j]))
188 auto status{IONAME(EndIoStatement)(cookie)};
196 cookie = IONAME(BeginInternalListOutput)(output, bufferSize - 1);
198 ASSERT_TRUE(IONAME(OutputComplex32)(cookie, z[j], z[j + 1]))
204 status = IONAME(EndIoStatement)(cookie);
220 auto cookie{IONAME(BeginInternalFormattedOutput)(
239 IONAME(OutputDescriptor)(cookie, desc);
241 // Ensure no errors were encountered in initializing the cookie and descriptor
242 auto formatStatus{IONAME(EndIoStatement)(cookie)};
253 // Begin list-directed output on cookie by descriptor
254 cookie = IONAME(BeginInternalListOutput)(buffer, sizeof buffer);
255 IONAME(OutputDescriptor)(cookie, desc);
258 auto listDirectedStatus{IONAME(EndIoStatement)(cookie)};
933 auto cookie{IONAME(BeginInternalFormattedInput)(
942 IONAME(EnableHandlers)(cookie, true, true, true, true, true);
943 IONAME(InputReal64)(cookie, u.x);
951 IONAME(GetIoMsg)(cookie, iomsg, bufferSize - 1);
952 auto status{IONAME(EndIoStatement)(cookie)};
967 auto cookie{IONAME(BeginInternalListOutput)(buffer, sizeof buffer)};
973 EXPECT_TRUE(IONAME(OutputDescriptor)(cookie, desc));
974 auto status{IONAME(EndIoStatement)(cookie)};