OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JobInfo
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/chrome/browser/chromeos/drive/
job_list.h
65
struct
JobInfo
{
66
explicit
JobInfo
(JobType job_type);
97
bool IsActiveFileTransferJobInfo(const
JobInfo
& job_info);
104
virtual void OnJobAdded(const
JobInfo
& job_info) {}
109
virtual void OnJobDone(const
JobInfo
& job_info,
113
virtual void OnJobUpdated(const
JobInfo
& job_info) {}
125
virtual std::vector<
JobInfo
> GetJobInfoList() = 0;
job_list.cc
79
JobInfo
::
JobInfo
(JobType in_job_type)
87
std::string
JobInfo
::ToString() const {
104
bool IsActiveFileTransferJobInfo(const
JobInfo
& job_info) {
job_scheduler.h
57
virtual std::vector<
JobInfo
> GetJobInfoList() OVERRIDE;
161
// only for filling
JobInfo
for the operation so that observers can get the
228
JobInfo
job_info;
355
void NotifyJobAdded(const
JobInfo
& job_info);
356
void NotifyJobDone(const
JobInfo
& job_info,
358
void NotifyJobUpdated(const
JobInfo
& job_info);
job_scheduler_unittest.cc
49
JobInfo
info;
51
EventLog(EventType type, const
JobInfo
& info) : type(type), info(info) {
73
virtual void OnJobAdded(const
JobInfo
& info) OVERRIDE {
77
virtual void OnJobUpdated(const
JobInfo
& info) OVERRIDE {
81
virtual void OnJobDone(const
JobInfo
& info, FileError error) OVERRIDE {
811
TEST_F(JobSchedulerTest,
JobInfo
) {
880
std::vector<
JobInfo
> jobs = scheduler_->GetJobInfoList();
[
all
...]
job_scheduler.cc
189
std::vector<
JobInfo
> JobScheduler::GetJobInfoList() {
190
std::vector<
JobInfo
> job_info_list;
782
const
JobInfo
& job_info = job_entry->job_info;
832
JobInfo
* job_info = &entry->job_info;
892
JobInfo
* job_info = &job_entry->job_info;
[
all
...]
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
event_router.h
90
virtual void OnJobAdded(const drive::
JobInfo
& job_info) OVERRIDE;
91
virtual void OnJobUpdated(const drive::
JobInfo
& job_info) OVERRIDE;
92
virtual void OnJobDone(const drive::
JobInfo
& job_info,
149
DriveJobInfoWithStatus(const drive::
JobInfo
& info,
151
drive::
JobInfo
job_info;
event_router.cc
102
const drive::
JobInfo
& job_info) {
252
// Pass dummy value to
JobInfo
's constructor for make it default constructible.
258
const drive::
JobInfo
& info, const std::string& status)
486
void EventRouter::OnJobAdded(const drive::
JobInfo
& job_info) {
491
void EventRouter::OnJobUpdated(const drive::
JobInfo
& job_info) {
508
void EventRouter::OnJobDone(const drive::
JobInfo
& job_info,
private_api_drive.cc
333
std::vector<drive::
JobInfo
> jobs = job_list->GetJobInfoList();
/external/chromium_org/chrome/browser/chromeos/system/
ash_system_tray_delegate.cc
156
// Converts drive::
JobInfo
to ash::DriveOperationStatus.
158
bool ConvertToDriveOperationStatus(const drive::
JobInfo
& info,
182
// Converts drive::
JobInfo
that has finished in |error| state
185
bool ConvertToFinishedDriveOperationStatus(const drive::
JobInfo
& info,
196
// Converts a list of drive::
JobInfo
to a list of ash::DriveOperationStatusList.
198
const std::vector<drive::
JobInfo
>& list) {
[
all
...]
/external/chromium_org/chrome/browser/ui/webui/chromeos/
drive_internals_ui.cc
659
std::vector<drive::
JobInfo
> info_list = job_list->GetJobInfoList();
663
const drive::
JobInfo
& info = info_list[i];
[
all
...]
Completed in 83 milliseconds