HomeSort by relevance Sort by last modified time
    Searched refs:pss (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/boringssl/src/crypto/x509/
rsa_pss.c 103 RSA_PSS_PARAMS *pss = d2i_RSA_PSS_PARAMS(NULL, &p, plen);
104 if (pss == NULL) {
108 *pmaskHash = rsa_mgf1_decode(pss->maskGenAlgorithm);
109 return pss;
212 RSA_PSS_PARAMS *pss = RSA_PSS_PARAMS_new();
213 if (!pss) {
218 pss->saltLength = ASN1_INTEGER_new();
219 if (!pss->saltLength ||
220 !ASN1_INTEGER_set(pss->saltLength, saltlen)) {
225 if (!rsa_md_to_algor(&pss->hashAlgorithm, sigmd) |
    [all...]
  /system/extras/pssbench/
main.cpp 35 // Tally up all of the Pss from the various maps
37 int64_t pss = 0; local
40 if (sscanf(line, "Pss: %" SCNd64 " kB", &v) == 1) {
42 fprintf(stderr, "pss line: %llu\n", (unsigned long long) v);
43 pss += v;
49 // Return the Pss value in bytes, not kilobytes
50 return pss * 1024;
81 int64_t pss = 0; local
83 pss = get_pss(pid);
86 printf("iterations:%d pid:%d pss:%lld\n", iterations, pid, (long long)pss)
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
lynx-core.c 92 struct pssentry pss; local
103 /* Get the pss entry from the core file */
108 amt = sizeof pss;
109 if (bfd_bread ((void *) &pss, amt, abfd) != amt)
123 strncpy (core_command (abfd), pss.pname, PNMLEN + 1);
127 tcontext_size = pss.threadcnt * sizeof (core_st_t);
152 pss.ssize,
153 pss.slimit,
160 pss.data_len + pss.bss_len
    [all...]
  /frameworks/base/cmds/statsd/tools/loadtest/
run_loadtest.sh 3 # Script that measures statsd's PSS under an increasing number of metrics.
6 pss=""
29 # Reads statsd's pid and PSS.
31 # Command that reads the PSS for statsd. This also gives us its pid.
36 pss=$(echo "${BASH_REMATCH[1]}" | tr -d , | sed 's/\.//g')
67 echo "Before the test, statsd's PSS is ${pss}"
76 # (4) Wait several seconds, then read the PSS.
78 echo "During the test, statsd's PSS is ${pss}"
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/
physmem.c 96 struct pst_static pss; local
97 if (0 <= pstat_getstatic (&pss, sizeof pss, 1, 0))
99 double pages = pss.physical_memory;
100 double pagesize = pss.page_size;
200 struct pst_static pss; local
202 if (0 <= pstat_getstatic (&pss, sizeof pss, 1, 0)
206 double pagesize = pss.page_size;
  /external/toybox/toys/other/
pmap.c 35 long long start, end, pss, tpss = 0, dirty, tdirty = 0, swap, tswap = 0, local
55 xprintf("Address%*cKbytes PSS Dirty Swap Mode Mapping\n",
78 if (0<sscanf(line, "Pss: %lld", &pss)
86 printf("% 7lld %7lld %7lld ", pss, dirty, swap);
87 tpss += pss;
  /frameworks/base/services/core/java/com/android/server/am/
ProcessMemInfo.java 26 long pss; field in class:ProcessMemInfo
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
GarbageMonitor.java 180 info.head = (info.head + 1) % info.pss.length;
181 info.pss[info.head] = info.currentPss = dinfo.getTotalPss();
186 Log.v(TAG, "update: pid " + pid + " has pss=0, it probably died");
222 long pss, limit; field in class:GarbageMonitor.MemoryIconDrawable
233 public void setPss(long pss) {
234 if (pss != this.pss) {
235 this.pss = pss;
251 if (limit > 0 && pss > 0)
313 long pss, limit; field in class:GarbageMonitor.MemoryGraphIcon
420 public long[] pss = new long[256]; field in class:GarbageMonitor.ProcessMemInfo
    [all...]
  /system/extras/procmem/
procmem.c 39 /* qsort compare function to compare maps by PSS */
149 "Vss", "Rss", "Pss", "Uss", "ShCl", "ShDi", "PrCl", "PrDi", "Name");
247 (long)mi->usage.pss / 1024,
259 (long)mi->usage.pss / 1024,
276 (long)total_usage.pss / 1024,
290 (long)total_usage.pss / 1024,
308 " -p Sort by PSS.\n"
320 if (mb->usage.pss < ma->usage.pss) return -1;
321 if (mb->usage.pss > ma->usage.pss) return 1
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/device/metric/
ProcessMaxMemoryCollector.java 38 * Collects PSS and USS (private dirty) memory usage values from dumpsys meminfo. The result will be
39 * reported as a test run metric with key in the form of PSS#ProcName[#DeviceNum], in KB.
50 /** Peak PSS per process */
88 Long pss = local
90 .get(DumpsysProcessMeminfoItem.PSS);
94 if (pss == null || uss == null) {
99 // Track PSS values
106 mPssMemoryPerProcess.get(device).get(proc).addNumericValue(pss);
117 if (procPss.getOrDefault(proc, 0L) < pss) {
118 procPss.put(proc, pss);
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_session.cc 177 int64 execution_count, PerStepState* pss,
187 void ProcessStats(int64 step_id, PerStepState* pss, ProfileHandler* ph,
495 PerStepState* pss, CallOptions* call_opts, const RunStepRequestWrapper& req,
513 if (pss->report_tensor_allocations_upon_oom) {
516 if (pss->collect_costs) {
519 if (pss->collect_timeline) {
522 if (pss->collect_rpcs) {
525 if (pss->collect_partition_graphs) {
528 if (pss->collect_costs || pss->collect_timeline)
1446 PerStepState pss; local
1585 PerStepState pss; local
    [all...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 146 int pss; member in struct:android::stats_t
185 // Container used to retrieve graphics memory pss
206 ssize_t pss = memtrack_proc_graphics_pss(p); local
207 if (pss < 0) {
208 ALOGW("failed to get graphics pss: %zd", pss);
209 return pss;
211 graphics_mem->graphics = pss / 1024;
213 pss = memtrack_proc_gl_pss(p);
214 if (pss < 0)
252 unsigned pss = 0, swappable_pss = 0, rss = 0; local
597 jlong pss = 0; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_dirty_surfaces.h 86 util_dirty_surfaces_use_for_sampling_with(struct pipe_context *pipe, struct util_dirty_surfaces *dss, struct pipe_sampler_view *psv, struct pipe_sampler_state *pss, util_dirty_surface_flush_t flush)
89 util_dirty_surfaces_use_levels_for_sampling(pipe, dss, (unsigned)pss->min_lod + psv->u.tex.first_level,
90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush);
  /system/extras/libpagemap/
pm_memusage.c 41 mu->vss = mu->rss = mu->pss = mu->uss = mu->swap = 0;
53 a->pss += b->pss;
  /tools/loganalysis/src/com/android/loganalysis/item/
ProcrankItem.java 45 public static final String PSS = "PSS";
58 public ProcrankValue(String processName, int vss, int rss, int pss, int uss) {
62 mPss = pss;
77 * @param pss The PSS in KB
80 public void addProcrankLine(int pid, String processName, int vss, int rss, int pss, int uss) {
81 mProcrankLines.put(pid, new ProcrankValue(processName, vss, rss, pss, uss));
125 * Get the PSS for a given PID.
191 line.put(PSS, procrankValue.mPss)
    [all...]
  /system/extras/showmap/
showmap.cpp 17 unsigned pss; member in struct:mapinfo
103 } else if (!strcmp(field, "Pss:")) {
104 mi->pss = size;
145 current->pss += map->pss;
227 printf("%s size RSS PSS clean dirty clean dirty swap swapPSS", addr2);
257 mi->pss,
288 total.pss += mi->pss;
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
MemHealthRecord.java 54 public MemHealthRecord(String procName, long timeMs, long dalvikHeap, long nativeHeap, long pss,
62 mPss = pss;
76 long nativeHeap, long pss, boolean inForeground) {
77 this(procName, timeMs, dalvikHeap, nativeHeap, pss, 0, 0, 0, 0, 0, 0, 0, 0, inForeground);
94 int pss = parseMeminfoLine(meminfo, "TOTAL\\s+(\\d+)"); local
105 if (nativeHeap < 0 || dalvikHeap < 0 || pss < 0) {
110 procName, timeMs, dalvikHeap, nativeHeap, pss, asJavaHeap,
133 List<Long> pss = getForegroundPss(records); local
143 // nativeHeap, dalvikHeap, and pss all have the same size, just use one
151 out.printf("Average PSS: %d\n", getAverage(pss))
174 List<Long> pss = getBackgroundPss(records); local
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
StartupMetricsTest.java 185 * Aggregates the procrank data by the pss, rss, and uss values.
191 // final maps for pss, rss, and uss.
197 // aggregate pss, rss, uss across all processes.
204 Integer pss = procrank.getPss(pid); local
207 if (pss != null) {
208 pssTotal += pss;
209 pssOutput.put(procrank.getProcessName(pid), pss.toString());
216 ussTotal += pss;
229 reportMetrics(listener, "startup-procrank-pss", pssOutput);
  /frameworks/base/core/proto/android/os/
procrank.proto 43 optional int64 pss = 4;
  /tools/loganalysis/src/com/android/loganalysis/parser/
CompactMemInfoParser.java 28 * For now we are only interested in the pss of the processes. So we only parse the lines
32 * "proc,[type],[name],[pid],[pss],[activities].
49 * the list of processes, their pids and their pss.
61 long pss = Long.parseLong(m.group(4)); local
67 item.addPid(pid, name, type, pss, swap, activities);
  /system/extras/memtrack/
memtrack.h 36 // Get the PSS information from the file data. If there are no more
37 // PSS values to be found, return false.
38 bool getPss(size_t *pss);
  /frameworks/base/core/java/com/android/internal/app/procstats/
ProcessState.java 109 long pss = 0; field in class:ProcessState.PssAggr
113 pss = (long)( (pss*(double)samples) + (newPss*(double)newSamples) )
299 if (DEBUG_PARCEL) Slog.d(TAG, "Reading pss table...");
458 public void addPss(long pss, long uss, long rss, boolean always, int type, long duration,
493 mCommonProcess.mPssTable.mergeStats(mCurState, 1, pss, pss, pss, uss, uss, uss,
504 pss, pss, pss, uss, uss, uss, rss, rss, rss)
    [all...]
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java 46 * reports the total PSS in kilobytes of each processes.
212 int pss = 0; local
216 pss = getPss(processName);
217 Log.i(TAG, appName + "=" + pss);
218 if (pss < 0) {
222 pssData.add(pss);
224 results.putInt(mNameToResultKey.get(appName), pss); local
  /system/extras/librank/
librank.c 62 declare_sort(pss); variable
245 {"pss", 0, 0, 'p'},
379 printf(" %6s %7s %6s %6s %6s ", "RSStot", "VSS", "RSS", "PSS", "USS");
393 printf("%6zdK %7s %6s %6s %6s ", li->total_usage.pss / 1024, "", "", "", "");
408 mi->usage.pss / 1024,
430 " -p Sort processes by PSS.\n"
433 " (Default sort order is PSS.)\n"
472 (*((struct library_info**)a))->total_usage.pss,
473 (*((struct library_info**)b))->total_usage.pss
487 create_sort(pss, numcmp
    [all...]
  /cts/hostsidetests/incident/src/com/android/server/cts/
PrintProtoTest.java 130 private static void verifyPrintSpoolerStateProto(PrintSpoolerStateProto pss, final int filterLevel) throws Exception {
131 verifyPrintSpoolerInternalStateProto(pss.getInternalState(), filterLevel);

Completed in 335 milliseconds

1 2 3 4