Symbol: JobKey
headers/private/debugger/util/Worker.h
153
void AbortJob(const JobKey& key);
headers/private/debugger/util/Worker.h
154
Job* GetJob(const JobKey& key);
headers/private/debugger/util/Worker.h
162
status_t AddListener(const JobKey& key,
headers/private/debugger/util/Worker.h
164
void RemoveListener(const JobKey& key,
headers/private/debugger/util/Worker.h
171
typedef JobKey KeyType;
headers/private/debugger/util/Worker.h
174
size_t HashKey(const JobKey& key) const
headers/private/debugger/util/Worker.h
184
bool Compare(const JobKey& key, Job* value) const
headers/private/debugger/util/Worker.h
198
job_wait_status WaitForJob(Job* waitingJob, const JobKey& key);
headers/private/debugger/util/Worker.h
43
class JobKey {
headers/private/debugger/util/Worker.h
45
virtual ~JobKey();
headers/private/debugger/util/Worker.h
49
virtual bool operator==(const JobKey& other) const = 0;
headers/private/debugger/util/Worker.h
53
struct SimpleJobKey : public JobKey {
headers/private/debugger/util/Worker.h
63
virtual bool operator==(const JobKey& other) const;
headers/private/debugger/util/Worker.h
89
virtual const JobKey& Key() const = 0;
headers/private/debugger/util/Worker.h
99
job_wait_status WaitFor(const JobKey& key);
src/kits/debugger/jobs/ExpressionEvaluationJob.cpp
67
const JobKey&
src/kits/debugger/jobs/GetCPUStateJob.cpp
34
const JobKey&
src/kits/debugger/jobs/GetStackTraceJob.cpp
49
const JobKey&
src/kits/debugger/jobs/GetThreadStateJob.cpp
34
const JobKey&
src/kits/debugger/jobs/Jobs.h
106
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
129
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
165
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
189
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
222
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
244
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
263
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
286
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
316
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
70
virtual const JobKey& Key() const;
src/kits/debugger/jobs/Jobs.h
87
virtual const JobKey& Key() const;
src/kits/debugger/jobs/LoadImageDebugInfoJob.cpp
39
const JobKey&
src/kits/debugger/jobs/LoadSourceCodeJob.cpp
45
const JobKey&
src/kits/debugger/jobs/ResolveValueNodeJob.cpp
54
const JobKey&
src/kits/debugger/jobs/RetrieveMemoryBlockJob.cpp
36
const JobKey&
src/kits/debugger/jobs/WriteCoreFileJob.cpp
35
const JobKey&
src/kits/debugger/jobs/WriteMemoryJob.cpp
33
const JobKey&
src/kits/debugger/jobs/WriteValueNodeJob.cpp
52
const JobKey&
src/kits/debugger/util/Worker.cpp
123
Job::WaitFor(const JobKey& key)
src/kits/debugger/util/Worker.cpp
16
JobKey::~JobKey()
src/kits/debugger/util/Worker.cpp
335
Worker::AbortJob(const JobKey& key)
src/kits/debugger/util/Worker.cpp
348
Worker::GetJob(const JobKey& key)
src/kits/debugger/util/Worker.cpp
383
Worker::AddListener(const JobKey& key, JobListener* listener)
src/kits/debugger/util/Worker.cpp
396
Worker::RemoveListener(const JobKey& key, JobListener* listener)
src/kits/debugger/util/Worker.cpp
406
Worker::WaitForJob(Job* waitingJob, const JobKey& key)
src/kits/debugger/util/Worker.cpp
48
SimpleJobKey::operator==(const JobKey& other) const