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

123456

/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);
H A Dutils_module_tests.c214 struct wpabuf *pw; local
225 pw = ext_password_get(data, "foo");
226 if (pw != NULL)
228 ext_password_free(pw);
232 pw = ext_password_get(NULL, "foo");
233 if (pw != NULL)
235 ext_password_free(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);
H A Dutils_module_tests.c214 struct wpabuf *pw; local
225 pw = ext_password_get(data, "foo");
226 if (pw != NULL)
228 ext_password_free(pw);
232 pw = ext_password_get(NULL, "foo");
233 if (pw != NULL)
235 ext_password_free(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);
H A Dutils_module_tests.c214 struct wpabuf *pw; local
225 pw = ext_password_get(data, "foo");
226 if (pw != NULL)
228 ext_password_free(pw);
232 pw = ext_password_get(NULL, "foo");
233 if (pw != NULL)
235 ext_password_free(pw);
/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/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")) {
H A Dspp.php58 $pw = $row['osu_password']; variable
60 $pw = $row['password']; variable
65 if (strlen($pw) < 1) {
70 $A1 = md5($user . ':' . $realm . ':' . $pw);
H A Dadd-free.php37 $pw = $row['password']; variable
39 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', machine_managed='1' WHERE rowid=$rowid")) {
/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());
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DDebuggingClassWriter.java95 PrintWriter pw = new PrintWriter(new OutputStreamWriter(out));
96 TraceClassVisitor tcv = new TraceClassVisitor(null, pw);
98 pw.flush();
/external/scrypt/tests/
H A Dscrypt_test.cpp33 const char *pw, *salt; member in struct:android::scrypt_test_setting_t
65 for (i = 0; post_settings[i].pw != NULL; i++) {
70 crypto_scrypt((const uint8_t*) s.pw, strlen(s.pw), (const uint8_t*) s.salt,
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDefItem.java393 PrintWriter pw = Writers.printWriterFor(out);
395 pw.println(getClass().getName() + " {");
396 pw.println(" accessFlags: " + Hex.u2(accessFlags));
397 pw.println(" superclass: " + superclass);
398 pw.println(" interfaces: " +
400 pw.println(" sourceFile: " +
404 annotationsDirectory.debugPrint(pw);
406 pw.println("}");
H A DClassDataItem.java199 PrintWriter pw = Writers.printWriterFor(out);
203 pw.println(" sfields[" + i + "]: " + staticFields.get(i));
208 pw.println(" ifields[" + i + "]: " + instanceFields.get(i));
213 pw.println(" dmeths[" + i + "]:");
214 directMethods.get(i).debugPrint(pw, verbose);
219 pw.println(" vmeths[" + i + "]:");
220 virtualMethods.get(i).debugPrint(pw, verbose);
/external/chromium_org/third_party/icu/source/common/
H A Duarrsort.c170 void *px, void *pw) {
203 uprv_memcpy(pw, array+left*itemSize, itemSize);
205 uprv_memcpy(array+right*itemSize, pw, itemSize);
216 subQuickSort(array, start, right, itemSize, cmp, context, px, pw);
224 subQuickSort(array, left, limit, itemSize, cmp, context, px, pw);
168 subQuickSort(char *array, int32_t start, int32_t limit, int32_t itemSize, UComparator *cmp, const void *context, void *px, void *pw) argument
/external/icu/icu4c/source/common/
H A Duarrsort.c170 void *px, void *pw) {
203 uprv_memcpy(pw, array+left*itemSize, itemSize);
205 uprv_memcpy(array+right*itemSize, pw, itemSize);
216 subQuickSort(array, start, right, itemSize, cmp, context, px, pw);
224 subQuickSort(array, left, limit, itemSize, cmp, context, px, pw);
168 subQuickSort(char *array, int32_t start, int32_t limit, int32_t itemSize, UComparator *cmp, const void *context, void *px, void *pw) argument
/external/libcxx/test/depr/depr.c.headers/
H A Dstdlib_h.pass.cpp75 wchar_t* pw = 0; local
78 static_assert((std::is_same<decltype(mbtowc(pw,"",0)), int>::value), "");
80 static_assert((std::is_same<decltype(mbstowcs(pw,"",0)), size_t>::value), "");

Completed in 1549 milliseconds

123456