Home
last modified time | relevance | path

Searched refs:startSeq (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DProcessList.java1529 app.startSeq = 0;
1758 if (app.startSeq != 0) {
1760 + " with non-zero startSeq:" + app.startSeq);
1770 final long startSeq = app.startSeq = ++mProcStartSeqCounter;
1774 mPendingStarts.put(startSeq, app);
1786 handleProcessStartedLocked(app, startResult, startSeq);
1792 mPendingStarts.remove(startSeq);
1808 startSeq, false);
1934 new String[]{PROC_START_SEQ_IDENT + app.startSeq});
1944 new String[]{PROC_START_SEQ_IDENT + app.startSeq});
[all …]
DProcessRecord.java286 long startSeq; // Seq no. indicating the latest process start associated with field in ProcessRecord
475 pw.print(prefix); pw.print("startSeq="); pw.println(startSeq); in dump()
DActivityManagerService.java767 if (existingApp != null && existingApp.startSeq == app.startSeq) { in remove()
786 if (existingApp != null && existingApp.startSeq == app.startSeq in removeIfNoThread()
4792 int pid, int callingUid, long startSeq) { in attachApplicationLocked() argument
4804 if (app != null && (app.startUid != callingUid || app.startSeq != startSeq)) { in attachApplicationLocked()
4806 final ProcessRecord pending = mProcessList.mPendingStarts.get(startSeq); in attachApplicationLocked()
4811 + " startSeq:" + startSeq in attachApplicationLocked()
4814 + " startSeq:" + app.startSeq; in attachApplicationLocked()
4830 if (app == null && startSeq > 0) { in attachApplicationLocked()
4831 final ProcessRecord pending = mProcessList.mPendingStarts.get(startSeq); in attachApplicationLocked()
4832 if (pending != null && pending.startUid == callingUid && pending.startSeq == startSeq in attachApplicationLocked()
[all …]
/frameworks/base/core/java/android/app/
DIActivityManager.aidl128 void attachApplication(in IApplicationThread app, long startSeq); in attachApplication() argument
DActivityThread.java7111 private void attach(boolean system, long startSeq) { in attach() argument
7120 mgr.attachApplication(mAppThread, startSeq); in attach()
7373 long startSeq = 0; in main() local
7377 startSeq = Long.parseLong( in main()
7383 thread.attach(false, startSeq); in main()