Searched refs:startSeq (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/app/ |
D | IActivityManager.aidl | 198 void attachApplication(in IApplicationThread app, long startSeq); in attachApplication() argument 199 void finishAttachApplication(long startSeq, long timestampApplicationOnCreateNs); in finishAttachApplication() argument
|
D | ActivityThread.java | 8380 private void attach(boolean system, long startSeq) { in attach() argument 8384 mStartSeq = startSeq; in attach() 8393 mgr.attachApplication(mAppThread, startSeq); in attach() 8682 long startSeq = 0; in main() local 8686 startSeq = Long.parseLong( in main() 8692 thread.attach(false, startSeq); in main()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ProcessRecord.java | 853 void setStartSeq(long startSeq) { in setStartSeq() argument 854 mStartSeq = startSeq; in setStartSeq()
|
D | ProcessList.java | 2151 final long startSeq = ++mProcStartSeqCounter; 2152 app.setStartSeq(startSeq); 2156 mPendingStarts.put(startSeq, app); 2163 requiredAbi, instructionSet, invokeWith, startSeq)); 2172 startSeq, false); 2192 final String invokeWith, final long startSeq) { 2201 handleProcessStartedLocked(app, startResult, startSeq); 2207 mPendingStarts.remove(startSeq);
|
D | ActivityManagerService.java | 4588 int pid, int callingUid, long startSeq) { in attachApplicationLocked() argument 4600 if (app != null && (app.getStartUid() != callingUid || app.getStartSeq() != startSeq)) { in attachApplicationLocked() 4602 final ProcessRecord pending = mProcessList.mPendingStarts.get(startSeq); in attachApplicationLocked() 4607 + " startSeq:" + startSeq in attachApplicationLocked() 4626 if (app == null && startSeq > 0) { in attachApplicationLocked() 4627 final ProcessRecord pending = mProcessList.mPendingStarts.get(startSeq); in attachApplicationLocked() 4629 && pending.getStartSeq() == startSeq in attachApplicationLocked() 4631 pending.isUsingWrapper(), startSeq, true)) { in attachApplicationLocked() 4899 finishAttachApplicationInner(startSeq, callingUid, pid); in attachApplicationLocked() 4915 public final void attachApplication(IApplicationThread thread, long startSeq) { in attachApplication() argument [all …]
|