Searched defs:ps (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLoadTestsAutoTest.java103 private void printRow(PrintStream ps, String format, Object...objs) { argument
104 ps.println(String.format(format, objs));
113 PrintStream ps = new PrintStream(out);
115 ps.print("\n\n\n");
116 ps.println("** MEMINFO in pid " + Process.myPid()
140 printRow(ps, formatString, "", "native", "dalvik", "other", "total");
141 printRow(ps, formatString, "size:", nativeMax, dalvikMax, "N/A", nativeMax + dalvikMax);
142 printRow(ps, formatString, "allocated:", nativeAllocated, dalvikAllocated, "N/A",
144 printRow(ps, formatString, "free:", nativeFree, dalvikFree, "N/A",
147 printRow(ps, formatStrin
[all...]
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
H A Dc3_14pf.cpp386 Word16 ps = 0; /* initialization only needed to keep gcc silent */ local
453 ps = 0;
495 ps = ps1;
506 ps0 = ps;
513 ps = 0;
553 ps = ps1;
H A Dc4_17pf.cpp400 Word16 ps = 0; /* initialization only needed to keep gcc silent */ local
465 ps = 0;
505 ps = ps1;
516 ps0 = ps;
523 ps = 0;
563 ps = ps1;
574 ps0 = ps;
579 ps = 0;
618 ps = ps1;
H A Ds10_8pf.cpp192 Word16 psk, ps, ps0, ps1, ps2, sq, sq2;
247 ps = 0;
285 ps = ps2;
299 ps0 = ps;
315 ps = 0;
345 ps = ps2;
359 ps0 = ps;
377 ps = 0;
409 ps = ps2;
427 ps0 = ps;
584 Word16 ps; local
[all...]
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/
H A Dc2t64fx.c57 Word16 ps, psk, ps1, ps2, alpk, alp1, alp2, sq; local
117 ps = dn2[i];
118 if (ps >= 0)
H A Dc4t64fx.c106 Word16 * ps, /* (i/o) correlation of all fixed pulses */
137 Word16 psk, ps, alpk, alp, val, k_cn, k_dn, exp; local
284 ps = dn2[i];
285 if (ps >= 0)
294 dn2[i] = -ps;
305 ps = -1;
308 if(dn2[j] > ps)
310 ps = dn2[j];
557 ps = 0;
570 ps
964 search_ixiy( Word16 nb_pos_ix, Word16 track_x, Word16 track_y, Word16 * ps, Word16 * alp, Word16 * ix, Word16 * iy, Word16 dn[], Word16 dn2[], Word16 cor_x[], Word16 cor_y[], Word16 rrixiy[][MSIZE] ) argument
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java642 PrintStream ps = new PrintStream(s.getOutputStream());
667 ps.print(HTTP_VERSION_STRING + " " + HTTP_BAD_METHOD +
669 ps.write(buf, 0, 5);
670 ps.write(EOL);
671 ps.flush();
688 printStatus(ps);
689 printHeaders(ps);
692 psWriteEOL(ps);
699 send404(ps);
701 sendFile(ps);
752 psPrint(PrintStream ps, String s) argument
758 psWrite(PrintStream ps, byte[] bytes, int len) argument
764 psWriteEOL(PrintStream ps) argument
771 printStatus(PrintStream ps) argument
801 printHeaders(PrintStream ps) argument
844 send404(PrintStream ps) argument
853 sendFile(PrintStream ps) argument
[all...]
/frameworks/base/libs/utils/
H A DString16.cpp538 const size_t ps = prefix.size(); local
539 if (ps > size()) return false;
540 return strzcmp16(mString, ps, prefix.string(), ps) == 0;
545 const size_t ps = strlen16(prefix); local
546 if (ps > size()) return false;
547 return strncmp16(mString, prefix, ps) == 0;
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java113 static public void noteWakeupAlarm(PendingIntent ps) { argument
115 getDefault().noteWakeupAlarm(ps.getTarget());
/frameworks/base/services/java/com/android/server/
H A DPackageManagerService.java567 PackageSetting ps = mSettings.mPackages.get(ent.getKey());
568 uids[i] = (ps != null) ? ps.userId : -1;
961 PackageSetting ps = psit.next();
962 if ((ps.pkgFlags&ApplicationInfo.FLAG_SYSTEM) != 0
963 && !mPackages.containsKey(ps.name)
964 && !mSettings.mDisabledSysPackages.containsKey(ps.name)) {
966 String msg = "System package " + ps.name
972 mInstaller.remove(ps.name, true);
1053 void cleanupInstallFailedPackage(PackageSetting ps) { argument
2601 collectCertificatesLI(PackageParser pp, PackageSetting ps, PackageParser.Package pkg, File srcFile, int parseFlags) argument
[all...]

Completed in 166 milliseconds