Home
last modified time | relevance | path

Searched refs:procName (Results 1 – 9 of 9) 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/packages/Shell/src/com/android/shell/
DHeapDumpReceiver.java134 final String procName = intent.getStringExtra(EXTRA_PROCESS_NAME); in showDumpNotification() local
141 if (procName == null) { in showDumpNotification()
157 : procName; in showDumpNotification()
162 shareIntent.putExtra(EXTRA_PROCESS_NAME, procName); in showDumpNotification()
DHeapDumpProvider.java94 static Uri makeUri(@NonNull String procName) { in makeUri() argument
95 return Uri.parse("content://com.android.shell.heapdump/" + procName + FILENAME_SUFFIX); in makeUri()
/frameworks/base/core/java/com/android/internal/app/procstats/
DProcessStats.java1091 final String procName = readCommonString(in, version); in readFromParcel() local
1092 if (procName == null) { in readFromParcel()
1114 ProcessState proc = hadData ? mProcesses.get(procName, uid) : null; in readFromParcel()
1120 proc = new ProcessState(this, pkgName, uid, vers, procName); in readFromParcel()
1125 if (DEBUG_PARCEL) Slog.d(TAG, "Adding process: " + procName + " " + uid in readFromParcel()
1127 mProcesses.put(procName, uid, proc); in readFromParcel()
1179 String procName = readCommonString(in, version); in readFromParcel() local
1180 if (procName == null) { in readFromParcel()
1186 + " process " + procName + " hasProc=" + hasProc); in readFromParcel()
1187 ProcessState commonProc = mProcesses.get(procName, uid); in readFromParcel()
[all …]
DProcessState.java1234 public void dumpProcCheckin(PrintWriter pw, String procName, int uid, long now) { in dumpProcCheckin() argument
1237 pw.print(procName); in dumpProcCheckin()
1245 pw.print(procName); in dumpProcCheckin()
1253 pw.print(procName); in dumpProcCheckin()
1264 pw.print(procName); in dumpProcCheckin()
1348 String procName, int uid, long now) { in dumpDebug() argument
1350 proto.write(ProcessStatsProto.PROCESS, procName); in dumpDebug()
1430 final String procName, final String packageName, final boolean sharedUid) { in writeCompressedProcessName() argument
1433 proto.write(fieldId, procName); in writeCompressedProcessName()
1436 if (TextUtils.equals(procName, packageName)) { in writeCompressedProcessName()
[all …]
DAssociationState.java547 final String procName = stats.readCommonString(in, parcelVersion); in readFromParcel() local
549 final SourceKey key = new SourceKey(uid, procName, pkgName); in readFromParcel()
613 public boolean hasProcessOrPackage(String procName) { in hasProcessOrPackage() argument
614 if (mProcessName.equals(procName)) { in hasProcessOrPackage()
620 if (procName.equals(key.mProcess) || procName.equals(key.mPackage)) { in hasProcessOrPackage()
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java1876 final String procName; in handleMessage() local
1883 procName = mMemWatchDumpProcName; in handleMessage()
1884 Pair<Long, String> val = mMemWatchProcesses.get(procName, uid); in handleMessage()
1886 val = mMemWatchProcesses.get(procName, 0); in handleMessage()
1902 if (procName == null) { in handleMessage()
1907 "Showing dump heap notification from " + procName + "/" + uid); in handleMessage()
1916 dumpFinishedIntent.putExtra(EXTRA_HEAP_DUMP_PROCESS_NAME, procName); in handleMessage()
1922 String procName = (String) msg.obj; in handleMessage() local
1923 if (procName != null) { in handleMessage()
1925 if (procName.equals(mMemWatchDumpProcName)) { in handleMessage()
[all …]
DActiveServices.java2901 final String procName = r.processName; in bringUpServiceLocked() local
2906 app = mAm.getProcessRecordLocked(procName, r.appInfo.uid, false); in bringUpServiceLocked()
2946 if ((app=mAm.startProcessLocked(procName, r.appInfo, true, intentFlags, in bringUpServiceLocked()
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java13968 String procName = in.readString(); in readSummaryFromParcel() local
13969 Uid.Proc p = u.getProcessStatsLocked(procName); in readSummaryFromParcel()