Home
last modified time | relevance | path

Searched refs:TaskNotFound (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/base/request/request/services/src/service/command/
H A Dunsubscribe.rs27 reply.write(&(ErrorCode::TaskNotFound as i32))?; in unsubscribe()
33 reply.write(&(ErrorCode::TaskNotFound as i32))?; in unsubscribe()
41 reply.write(&(ErrorCode::TaskNotFound as i32))?; in unsubscribe()
H A Dtouch.rs27 reply.write(&(ErrorCode::TaskNotFound as i32))?; in touch()
35 reply.write(&(ErrorCode::TaskNotFound as i32))?; in touch()
51 reply.write(&(ErrorCode::TaskNotFound as i32))?; in touch()
H A Dshow.rs33 reply.write(&(ErrorCode::TaskNotFound as i32))?; in show()
39 reply.write(&(ErrorCode::TaskNotFound as i32))?; in show()
55 reply.write(&(ErrorCode::TaskNotFound as i32))?; in show()
H A Dget_task.rs31 reply.write(&(ErrorCode::TaskNotFound as i32))?; in get_task()
38 reply.write(&(ErrorCode::TaskNotFound as i32))?; in get_task()
48 reply.write(&(ErrorCode::TaskNotFound as i32))?; in get_task()
H A Dquery_mime_type.rs38 reply.write(&(ErrorCode::TaskNotFound as i32))?; in query_mime_type()
44 reply.write(&(ErrorCode::TaskNotFound as i32))?; in query_mime_type()
H A Dstop.rs28 reply.write(&(ErrorCode::TaskNotFound as i32))?; in stop()
34 reply.write(&(ErrorCode::TaskNotFound as i32))?; in stop()
H A Dresume.rs38 reply.write(&(ErrorCode::TaskNotFound as i32))?; in resume()
45 reply.write(&(ErrorCode::TaskNotFound as i32))?; in resume()
H A Dstart.rs35 reply.write(&(ErrorCode::TaskNotFound as i32))?; in start()
42 reply.write(&(ErrorCode::TaskNotFound as i32))?; in start()
H A Dquery.rs50 reply.write(&(ErrorCode::TaskNotFound as i32))?; in query()
66 reply.write(&(ErrorCode::TaskNotFound as i32))?; in query()
H A Dpause.rs39 reply.write(&(ErrorCode::TaskNotFound as i32))?; in pause()
45 reply.write(&(ErrorCode::TaskNotFound as i32))?; in pause()
H A Dremove.rs40 reply.write(&(ErrorCode::TaskNotFound as i32))?; in remove()
47 reply.write(&(ErrorCode::TaskNotFound as i32))?; in remove()
H A Dsubscribe.rs28 reply.write(&(ErrorCode::TaskNotFound as i32))?; in subscribe()
34 reply.write(&(ErrorCode::TaskNotFound as i32))?; in subscribe()
/ohos5.0/base/request/request/services/src/manage/scheduler/
H A Dmod.rs124 .ok_or(ErrorCode::TaskNotFound)?; in start_inner()
135 .ok_or(ErrorCode::TaskNotFound)?; in start_inner()
152 .ok_or(ErrorCode::TaskNotFound)?; in start_inner()
177 .ok_or(ErrorCode::TaskNotFound)?; in remove_task()
393 .ok_or(ErrorCode::TaskNotFound)?; in check_config_satisfy()
444 .ok_or(ErrorCode::TaskNotFound)?; in change_status()
447 return Err(ErrorCode::TaskNotFound); in change_status()
/ohos5.0/base/request/request/services/src/
H A Derror.rs25 TaskNotFound = 21900006, enumerator
43 assert_eq!(ErrorCode::TaskNotFound as i32, 21900006); in ut_enum_error_code()
/ohos5.0/base/request/request/services/src/manage/scheduler/queue/
H A Dmod.rs186 Err(ErrorCode::TaskNotFound) => continue, // If we cannot find the task, skip it. in reschedule_inner()
/ohos5.0/base/request/request/services/src/manage/
H A Ddatabase.rs572 None => return Err(ErrorCode::TaskNotFound), in get_task()
578 None => return Err(ErrorCode::TaskNotFound), in get_task()
H A Dtask_manager.rs301 Err(_) => ErrorCode::TaskNotFound, in check_subscriber()