MCPcopy Create free account
hub / github.com/axhlzy/FridaDebugger / getPausedSession

Method getPausedSession

agent/debugger.ts:585–597  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

583 }
584
585 private getPausedSession(): StalkerSession | null {
586 const session = this.getSession(this.currentThreadId);
587 if (session === null) {
588 return null;
589 }
590
591 if (!session.paused) {
592 log(`[stalker] thread ${session.threadId} is not paused`, "yellow");
593 return null;
594 }
595
596 return session;
597 }
598
599 private finishSession(session: StalkerSession): void {
600 session.semaphore.destroy();

Callers 9

stepInMethod · 0.95
stepOutMethod · 0.95
nextMethod · 0.95
backtraceMethod · 0.95
disassembleMethod · 0.95
stackMethod · 0.95
registersMethod · 0.95
setRegisterMethod · 0.95
runUntilPointerMethod · 0.95

Calls 2

getSessionMethod · 0.95
logFunction · 0.85

Tested by

no test coverage detected