| /bind-9.11.3/unit/atf-src/tools/ |
| H A D | atf-report.cpp | 84 //! This is meant to be subclassed, and each subclass can redefine any 87 //! This class is not tied to a output stream nor a file because, depending 186 //! The ticker_writer class implements a formatter that is user-friendly 188 //! read format. It is not meant to be parseable and its format can 293 // to specify the current column, which is needed because we have 585 converter(std::istream& is) : argument 586 tools::atf_report::atf_tps_reader(is) 631 "atf-report is a tool that parses the output of atf-run and "
|
| H A D | atffile.cpp | 69 tokenizer(std::istream& is, size_t curline) : argument 71 (is, true, eof_type, nl_type, text_type, curline) 90 detail::atf_atffile_reader::atf_atffile_reader(std::istream& is) : argument 91 m_is(is) 243 reader(std::istream& is, const tools::fs::directory& dir) : argument 244 detail::atf_atffile_reader(is), 334 std::ifstream is(filename.c_str()); 335 if (!is) 338 reader r(is, dir); 340 is [all...] |
| H A D | atffile_test.cpp | 116 atffile_reader(std::istream& is) : argument 117 detail::atf_atffile_reader(is) 156 "# This is a comment on a line of its own.\n" 157 "# And this is another one.\n" 190 "conf: var7 = \"This is a long value.\"\n" 203 "got_conf(var7, This is a long value.)", 232 "prop: var7 = \"This is a long value.\"\n" 245 "got_prop(var7, This is a long value.)",
|
| H A D | config_file.cpp | 59 tokenizer(std::istream& is, size_t curline) : argument 61 (is, true, eof_type, nl_type, text_type, curline) 81 config_reader(std::istream& is) : argument 82 atf_config_reader(is) 109 std::ifstream is(config_path.c_str()); 110 if (is) { 111 config_reader reader(is); 130 detail::atf_config_reader::atf_config_reader(std::istream& is) : argument 131 m_is(is)
|
| H A D | config_file_test.cpp | 72 config_reader(std::istream& is) : argument 73 detail::atf_config_reader(is) 112 "# This is a comment on a line of its own.\n" 113 "# And this is another one.\n" 146 "var7 = \"This is a long value.\"\n" 159 "got_var(var7, This is a long value.)",
|
| H A D | io_test.cpp | 59 systembuf_check_data(std::istream& is, std::size_t length) argument 63 while (is >> chr) { 102 std::istream is(&sb); 103 systembuf_check_data(is, length); 122 std::ifstream is("test_write.txt"); 123 systembuf_check_data(is, length); 124 is.close(); 297 // XXX This assumes that the pipe's buffer is big enough to accept 328 // that it is annoying. Reenable at some point if we make atf store 330 // failes), because this message is th [all...] |
| H A D | parser.cpp | 227 tokenizer(std::istream& is, size_t curline) : argument 229 (is, true, eof_type, nl_type, text_type, curline) 303 impl::read_headers(std::istream& is, size_t curline) argument 319 header::tokenizer tkz(is, curline); 341 if (!is.good())
|
| H A D | parser_test.cpp | 50 const parse_error e(123, "This is the message"); 51 ATF_REQUIRE_EQ("123: This is the message", std::string(e)); 136 tokenizer(std::istream& is, bool skipws) : argument 138 (is, skipws, eof_type, nl_type, word_type) 156 tokenizer(std::istream& is, bool skipws) : argument 158 (is, skipws, eof_type, nl_type, word_type) 179 tokenizer(std::istream& is, bool skipws) : argument 181 (is, skipws, eof_type, nl_type, word_type) 200 tokenizer(std::istream& is, bool skipws) : argument 202 (is, skipw 734 header_reader(std::istream& is) argument [all...] |
| H A D | reader.cpp | 93 tokenizer(std::istream& is, size_t curline) : argument 95 (is, true, eof_type, nl_type, text_type, curline) 142 impl::atf_tps_reader::atf_tps_reader(std::istream& is) : argument 143 m_is(is)
|
| H A D | reader_test.cpp | 106 tps_reader(std::istream& is) : argument 107 impl::atf_tps_reader(is) 352 "tc-so: This test is meant to simulate a diff.\n" 373 "got_tc_stdout_line( This test is meant to simulate a diff.)",
|
| H A D | test-program.cpp | 92 tokenizer(std::istream& is, size_t curline) : argument 94 (is, true, eof_type, nl_type, text_type, curline) 121 metadata_reader(std::istream& is) : argument 122 detail::atf_tp_reader(is) 217 // This leaks memory in case of a failure, but it is OK. Exiting will 409 detail::atf_tp_reader::atf_tp_reader(std::istream& is) : argument 410 m_is(is) 445 // Any non-empty value is valid. 477 // Any non-empty value is valid. 683 throw std::runtime_error("Results file is empt [all...] |
| H A D | test_program_test.cpp | 146 tp_reader(std::istream& is) : argument 147 detail::atf_tp_reader(is) 195 "descr: This is the description\n" 207 "got_tc(test_case_1, {descr=This is the description, ident=test_case_1, timeout=300})", 1022 // is implemented.
|
| /forgerock/opendj2/src/quicksetup/org/opends/quicksetup/installer/webstart/ |
| H A D | WebStartInstaller.java | 58 * This is an implementation of the Installer class that is used to install 64 * This object has as parameter a WebStartDownloader object that is downloading 72 * it in the path specified by the user and that is contained in the 76 * When there is an update during the installation it will notify the 80 * This class is supposed to be fully independent of the graphical layout. 103 * Actually performs the install in this thread. The thread is blocked. 525 * @param is the input stream with the contents of the zip file. 534 private void extractZipFiles(InputStream is, int minRatio, int maxRatio) argument 537 new ZipExtractor(is, minRati [all...] |
| /forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/ |
| H A D | ZipExtractor.java | 58 private InputStream is; field in class:ZipExtractor 69 * @throws IllegalArgumentException if the zip file is not a zip file 82 * @throws IllegalArgumentException if the zip file is not a zip file 98 * @throws IllegalArgumentException if the zip file is not a zip file 118 * @param is InputStream of zip file content 125 public ZipExtractor(InputStream is, int minRatio, int maxRatio, argument 129 this.is = is; 169 ZipInputStream zipIn = new ZipInputStream(is); 172 /* This map is update 272 copyZipEntry(ZipEntry entry, File destination, ZipInputStream is, int ratioBeforeCompleted, int ratioWhenCompleted, Map<String, ArrayList<String>> permissions) argument [all...] |
| /forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/installer/webstart/ |
| H A D | WebStartInstaller.java | 57 * This is an implementation of the Installer class that is used to install 63 * This object has as parameter a WebStartDownloader object that is downloading 71 * it in the path specified by the user and that is contained in the 75 * When there is an update during the installation it will notify the 79 * This class is supposed to be fully independent of the graphical layout. 102 * Actually performs the install in this thread. The thread is blocked. 528 * @param is the inputstream with the contents of the zip file. 537 private void extractZipFiles(InputStream is, int minRatio, int maxRatio) argument 540 new ZipExtractor(is, minRati [all...] |
| /forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/ |
| H A D | ZipExtractor.java | 59 private InputStream is; field in class:ZipExtractor 70 * @throws IllegalArgumentException if the zip file is not a zip file 83 * @throws IllegalArgumentException if the zip file is not a zip file 99 * @throws IllegalArgumentException if the zip file is not a zip file 119 * @param is InputStream of zip file content 126 public ZipExtractor(InputStream is, int minRatio, int maxRatio, argument 130 this.is = is; 170 ZipInputStream zipIn = new ZipInputStream(is); 173 /* This map is update 273 copyZipEntry(ZipEntry entry, File destination, ZipInputStream is, int ratioBeforeCompleted, int ratioWhenCompleted, Map<String, ArrayList<String>> permissions) argument [all...] |
| /forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/ |
| H A D | UnicodeInputStreamReader.java | 47 * @param is 50 public UnicodeInputStreamReader(InputStream is) argument 52 super(new InputStreamReader(is, "UTF-8")); 61 * information on decoding that is performed. 75 * \\uXXXX is converted to one Unicode character having the value 76 * represented by the four hex digits. \\ is converted to \ \X any character 77 * preceded by \ is converted to that character. 80 * the array of characters that is filled in
|
| /forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/ |
| H A D | QuotaExhaustionAction.java | 36 * Interface to define the resulting behavior when the session quota is exhausted. 43 * Performs an action, when the session quota is exhausted. The action implementation should destroy at least one 46 * @param is the to-be-actived InternalSession 50 public boolean action(InternalSession is, Map<String, Long> existingSessions); argument
|
| H A D | SessionConstraint.java | 54 * If this is the "session upgarde" case, the session quota 55 * checking is bypassed when activating the new session. This 56 * is due to the fact that during the session upgrade process 58 * session is successfully activated. 61 * because there is indeed a new valid session being created. 62 * As a result, there is a very small window where both old 63 * session and the new session are both valid and if there is 67 * is considered as acceptable here. 111 * @param is 115 protected static boolean checkQuotaAndPerformAction(InternalSession is) { argument 192 getSessionQuota(InternalSession is) argument [all...] |
| /forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/service/ |
| H A D | DenyAccessAction.java | 32 * <code> DenyAccessAction</code> if session quota is exhausted 37 public boolean action(InternalSession is, Map<String, Long> sessions) { argument
|
| H A D | DestroyAllAction.java | 65 public boolean action(InternalSession is, Map sessions) { argument
|
| H A D | DestroyNextExpiringAction.java | 56 public boolean action(InternalSession is, Map<String, Long> sessions) { argument
|
| H A D | DestroyOldestAction.java | 62 public boolean action(InternalSession is, Map<String, Long> sessions) { argument
|
| /forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/ |
| H A D | RequestSecurityTokenResponse.java | 87 // Make sure this is a Response 149 * received from server. This method is used primarily at the client side. 150 * The schema of the XML document is defined in WS-Trust. 168 * input stream. This method is used primarily at the client side. 169 * The schema of the XML document is defined in WS-Trust. 171 * @param is an InputStream 176 public static RequestSecurityTokenResponse parseXML(InputStream is) argument 178 Document doc = XMLUtils.toDOMDocument(is, debug);
|
| /forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/ |
| H A D | MapHelper.java | 42 * is a hash are ignored as comments, while lines which do not contain an assignment are just ignored. 46 * @throws IOException if there is an IO problem when reading the file (like it doesn't exist, etc.) 49 InputStream is = null; 52 is = MapHelper.class.getResourceAsStream(fileName); 55 if (is == null) { 59 return readMap(is); 61 IOUtils.closeIfNotNull(is); 67 * is a hash are ignored as comments, while lines which do not contain an assignment are just ignored. 69 * @param is A stream to read properties from. 71 * @throws IOException if there is a 73 readMap(InputStream is) argument [all...] |