Searched refs:workBundle (Results 1 – 9 of 9) sorted by relevance
33 * @param workBundle `WorkBundle` object containing a list of `Work` objects36 * - `OK` - Works in @p workBundle were successfully queued.40 * - `NO_MEMORY` - Not enough memory to queue @p workBundle.44 queue(WorkBundle workBundle) generates (Status status);
30 * @param workBundle List of completed `Work` objects.32 oneway onWorkDone(WorkBundle workBundle);
52 * @param workBundle `WorkBundle` object containing a list of `Work` objects55 * - `OK` - Works in @p workBundle were successfully queued.59 * - `NO_MEMORY` - Not enough memory to queue @p workBundle.63 queue(WorkBundle workBundle) generates (Status status);
355 WorkBundle workBundle; in compQueue() local356 Status hidlStatus = objcpy(&workBundle, *items, nullptr); in compQueue()361 Return<Status> transStatus = mRemoteComp->queue(workBundle); in compQueue()
385 WorkBundle workBundle; in onWorkDone_nb() local388 if (objcpy(&workBundle, c2workItems, strongComponent ? in onWorkDone_nb()394 Return<void> transStatus = listener->onWorkDone(workBundle); in onWorkDone_nb()432 Return<Status> Component::queue(const WorkBundle& workBundle) { in queue() argument436 if (objcpy(&c2works, workBundle) != C2_OK) { in queue()
27 oneway onWorkDone(WorkBundle workBundle);
46 * @param workBundle WorkBundle object containing Works to queue to the49 * - OK - Works in \p workBundle were successfully queued.52 * - NO_MEMORY - Not enough memory to queue \p workBundle.56 queue(WorkBundle workBundle) generates (Status status);
82 virtual Return<Status> queue(const WorkBundle& workBundle) override;
336 virtual Return<void> onWorkDone(const WorkBundle& workBundle) override { in onWorkDone()338 c2_status_t status = objcpy(&workItems, workBundle); in onWorkDone()955 WorkBundle workBundle; in queue() local956 Status hidlStatus = objcpy(&workBundle, *items, &mBufferPoolSender); in queue()961 Return<Status> transStatus = base()->queue(workBundle); in queue()