Lines Matching defs:file
4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
16 * file and include the License file at
37 * LDAP Data Interchange Format (LDIF) is a file format used to
46 * This class implements an LDIF file parser. You can construct
77 * LDIF data read from a specified file.
78 * @param file the name of the LDIF file to parse
81 public LDIF(String file) throws IOException {
82 FileInputStream fs = new FileInputStream(file);
86 m_source = file;
317 File file = new File(filename);
318 byte[] b = new byte[(int)file.length()];
509 * control: 1.2.3.4.10.210 true:< file:///usr/local/directory/cont.dta
511 * control: 1.2.3.4.10.210:< file:///usr/local/directory/cont.dta
641 * entire LDIF file.
642 * @return the string representation of the entire LDIF data file.
649 * Throws a LDIF file exception including the current line number.
720 /* End of file */
769 * Test driver - just reads and parses an LDIF file, printing
772 * @param args name of the LDIF file to parse
783 System.err.println("Failed to read LDIF file " + args[0] +