Searched refs:pw (Results 1 - 25 of 264) sorted by relevance

1234567891011

/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DReportAPI.java73 public void print(PrintWriter pw, boolean detail, boolean html) { argument
74 pw.print(" ");
75 removed.print(pw, detail, html);
77 pw.println("</br>");
79 pw.println();
80 pw.print("--> ");
82 added.print(pw, detail, html);
274 PrintWriter pw = null;
276 pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(os, "UTF-8")));
290 pw
440 printResults(Collection<? extends APIInfo> c, PrintWriter pw, boolean html, boolean isChangedAPIs) argument
[all...]
H A DCollectAPI.java42 PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(fos, "UTF-8")));
47 pw.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
48 pw.println("<html>");
49 pw.println("<head>");
50 pw.println("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">");
51 pw.println("<title>" + title + "</title>");
52 pw.println("</head>");
53 pw.println("<body>");
55 pw.println("<h1>" + title + "</h1>");
79 pw
[all...]
H A DSwatDeprecated.java37 private PrintWriter pw = new PrintWriter(System.out); field in class:SwatDeprecated
123 pw.println("replacing '" + srcTag + "'");
124 pw.println(" with '" + trgTag + "'");
125 pw.println();
126 pw.println(" source: '" + srcPrefix + "'");
127 pw.println("destination: '" + dstPrefix + "'");
128 pw.println(" overwrite: " + overwrite);
129 pw.println(" verbosity: " + verbosity);
130 pw.flush();
140 pw
[all...]
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DStringDumper.java28 public void run(String classPath, PrintWriter pw) throws IOException { argument
29 StringReader stringReader = new DumpStringReader(pw);
42 pw.flush();
53 private final PrintWriter pw; field in class:StringDumper.DumpStringReader
56 public DumpStringReader(PrintWriter pw) { argument
57 this.pw = pw;
64 pw.println(className.replace('/', '.'));
66 pw.print("\t");
68 pw
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDefaultErrorHandler.java56 public DefaultErrorHandler(PrintWriter pw) argument
58 m_pw = pw;
64 public DefaultErrorHandler(PrintStream pw) argument
66 m_pw = new PrintWriter(pw, true);
119 PrintWriter pw = getErrorWriter();
121 printLocation(pw, exception);
122 pw.println("Parser warning: " + exception.getMessage());
200 PrintWriter pw = getErrorWriter();
202 printLocation(pw, exception);
203 pw
310 printLocation(PrintStream pw, TransformerException exception) argument
315 printLocation(java.io.PrintStream pw, org.xml.sax.SAXParseException exception) argument
320 printLocation(PrintWriter pw, Throwable exception) argument
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DSmaliHelpFormatter.java42 PrintWriter pw = new PrintWriter(System.out);
43 super.printOptions(pw, getWidth(), debugOptions, getLeftPadding(), getDescPadding());
44 pw.flush();
/external/emma/core/java12/com/vladium/util/exception/
H A DIThrowableWrapper.java40 * this method delegates to super.printStackTrace(pw) where 'super' is the
45 void __printStackTrace (PrintWriter pw); argument
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dext_password.c104 void ext_password_free(struct wpabuf *pw) argument
106 if (pw == NULL)
108 os_memset(wpabuf_mhead(pw), 0, wpabuf_len(pw));
110 if (munlock(wpabuf_head(pw), wpabuf_len(pw)) < 0) {
115 wpabuf_free(pw);
H A Dext_password.h22 void ext_password_free(struct wpabuf *pw);
/external/wpa_supplicant_8/src/utils/
H A Dext_password.c104 void ext_password_free(struct wpabuf *pw) argument
106 if (pw == NULL)
108 os_memset(wpabuf_mhead(pw), 0, wpabuf_len(pw));
110 if (munlock(wpabuf_head(pw), wpabuf_len(pw)) < 0) {
115 wpabuf_free(pw);
H A Dext_password.h22 void ext_password_free(struct wpabuf *pw);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dext_password.c104 void ext_password_free(struct wpabuf *pw) argument
106 if (pw == NULL)
108 os_memset(wpabuf_mhead(pw), 0, wpabuf_len(pw));
110 if (munlock(wpabuf_head(pw), wpabuf_len(pw)) < 0) {
115 wpabuf_free(pw);
H A Dext_password.h22 void ext_password_free(struct wpabuf *pw);
/external/toybox/toys/posix/
H A Did.c88 struct passwd *pw; local
97 pw = xgetpwnam(username);
98 uid = euid = pw->pw_uid;
99 gid = egid = pw->pw_gid;
100 if (TT.is_groups) printf("%s : ", pw->pw_name);
104 pw = xgetpwuid(i ? uid : euid);
105 if (toys.optflags&FLAG_u) s_or_u(pw->pw_name, pw->pw_uid, 1);
111 showid("uid=", pw->pw_uid, pw
[all...]
/external/toybox/toys/pending/
H A Dgroupdel.c49 struct passwd *pw; local
51 for (endpwent(); (pw = getpwent());)
52 if (pw->pw_gid == grp->gr_gid) break;
54 if (pw) error_exit("can't remove primary group of user '%s'", pw->pw_name);
H A Dipcs.c153 struct passwd *pw; local
211 if ((pw = getpwuid(buf.shm_perm.uid)))
212 printf("%-10d %-10.10s", shmid, pw->pw_name);
221 if ((pw = getpwuid(buf.shm_perm.uid)))
222 printf("%-10d %-10.10s", shmid, pw->pw_name);
227 if ((pw = getpwuid(buf.shm_perm.cuid))) printf(" %-10s", pw->pw_name);
231 if ((pw = getpwuid(buf.shm_perm.uid))) printf(" %-10s", pw->pw_name);
237 if ((pw
255 struct passwd *pw; local
342 struct passwd *pw; local
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DShell.java29 PrintWriter pw; field in class:Shell
40 public Shell(PrintWriter pw, PrintWriter err) { argument
41 this.pw = pw;
46 pw = new PrintWriter(ps);
51 Shell s = new Shell(this.pw, this.err);
183 pw.println("");
186 pw.println(cols[i] + " = " +
202 pw.print(csep + cols[i]);
207 pw
[all...]
/external/tlsdate/src/
H A Dutil-plan9.c70 struct passwd *pw; local
80 pw = getpwnam(user);
82 if (NULL == pw)
86 uid = pw->pw_uid;
89 gid = pw->pw_gid;
92 if (pw->pw_gid != gr->gr_gid)
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/index/
H A DIndexGenerator.java67 PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter(outFile)));
69 pw.println("# Generated by " + IndexGenerator.class.getName() + " on " + fmt.format(now));
70 pw.println("# from contents of " + inDir.getCanonicalPath());
71 pw.println(copyfmt.format(now));
74 pw.println(i.next());
77 pw.println("# Found " + count + " files");
78 pw.println("# End of file");
82 pw.close();
/external/wpa_supplicant_8/hs20/server/www/
H A Dadd-mo.php16 $pw = $_POST["password"]; variable
17 if (strlen($id) < 32 || !isset($user) || !isset($pw)) {
45 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', type='password' WHERE rowid=$rowid")) {
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes_siv.h12 int aes_siv_encrypt(const u8 *key, const u8 *pw,
/external/wpa_supplicant_8/src/crypto/
H A Daes_siv.h12 int aes_siv_encrypt(const u8 *key, const u8 *pw,
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes_siv.h12 int aes_siv_encrypt(const u8 *key, const u8 *pw,
/external/curl/lib/
H A Dnetrc.c80 struct passwd pw, *pw_res; local
82 if(!getpwuid_r(geteuid(), &pw, pwbuf, sizeof(pwbuf), &pw_res)
84 home = strdup(pw.pw_dir);
92 struct passwd *pw; local
93 pw= getpwuid(geteuid());
94 if(pw) {
95 home = pw->pw_dir;
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
H A DAbstractVisitor.java135 * @param pw the print writer to be used.
137 public void print(final PrintWriter pw) { argument
138 printList(pw, text);
179 * @param pw the writer to be used to print the tree.
183 static void printList(final PrintWriter pw, final List l) { argument
187 printList(pw, (List) o);
189 pw.print(o.toString());

Completed in 2503 milliseconds

1234567891011