Home
last modified time | relevance | path

Searched refs:procName (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/libnblog/
DWriter.cpp46 char procName[16]; in Writer() local
47 int status = prctl(PR_GET_NAME, procName); in Writer()
49 procName[0] = '\0'; in Writer()
51 size_t length = strlen(procName); in Writer()
55 memcpy(mPidTag + sizeof(pid_t), procName, length); in Writer()
/frameworks/base/core/java/com/android/internal/app/procstats/
DProcessStats.java1066 final String procName = readCommonString(in, version); in readFromParcel() local
1067 if (procName == null) { in readFromParcel()
1089 ProcessState proc = hadData ? mProcesses.get(procName, uid) : null; in readFromParcel()
1095 proc = new ProcessState(this, pkgName, uid, vers, procName); in readFromParcel()
1100 if (DEBUG_PARCEL) Slog.d(TAG, "Adding process: " + procName + " " + uid in readFromParcel()
1102 mProcesses.put(procName, uid, proc); in readFromParcel()
1154 String procName = readCommonString(in, version); in readFromParcel() local
1155 if (procName == null) { in readFromParcel()
1161 + " process " + procName + " hasProc=" + hasProc); in readFromParcel()
1162 ProcessState commonProc = mProcesses.get(procName, uid); in readFromParcel()
[all …]
DAssociationState.java421 final String procName = stats.readCommonString(in, parcelVersion); in readFromParcel() local
423 final SourceKey key = new SourceKey(uid, procName, pkgName); in readFromParcel()
463 public boolean hasProcessOrPackage(String procName) { in hasProcessOrPackage() argument
467 if (procName.equals(key.mProcess) || procName.equals(key.mPackage)) { in hasProcessOrPackage()
DProcessState.java1232 public void dumpProcCheckin(PrintWriter pw, String procName, int uid, long now) { in dumpProcCheckin() argument
1235 pw.print(procName); in dumpProcCheckin()
1243 pw.print(procName); in dumpProcCheckin()
1251 pw.print(procName); in dumpProcCheckin()
1262 pw.print(procName); in dumpProcCheckin()
1346 String procName, int uid, long now) { in writeToProto() argument
1348 proto.write(ProcessStatsProto.PROCESS, procName); in writeToProto()
/frameworks/base/services/core/java/com/android/server/am/
DActiveServices.java2562 final String procName = r.processName; in bringUpServiceLocked() local
2567 app = mAm.getProcessRecordLocked(procName, r.appInfo.uid, false); in bringUpServiceLocked()
2605 if ((app=mAm.startProcessLocked(procName, r.appInfo, true, intentFlags, in bringUpServiceLocked()
DActivityManagerService.java1786 final String procName; in handleMessage() local
1794 procName = mContext.getString(R.string.android_system_label); in handleMessage()
1796 procName = mMemWatchDumpProcName; in handleMessage()
1798 Pair<Long, String> val = mMemWatchProcesses.get(procName, uid); in handleMessage()
1800 val = mMemWatchProcesses.get(procName, 0); in handleMessage()
1811 if (procName == null) { in handleMessage()
1816 "Showing dump heap notification from " + procName + "/" + uid); in handleMessage()
1825 String text = mContext.getString(titleId, procName); in handleMessage()
1831 intent.putExtra(DumpHeapActivity.KEY_PROCESS, procName); in handleMessage()
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java13963 String procName = in.readString(); in readSummaryFromParcel() local
13964 Uid.Proc p = u.getProcessStatsLocked(procName); in readSummaryFromParcel()