Home | History | Annotate | Download | only in libdm

Lines Matching refs:task

191 /* Create libdm General task structure */
195 libdm_task_t task;
199 task = NULL;
201 task = malloc(sizeof(*task));
202 if (task == NULL)
205 if ((task->ldm_task = prop_dictionary_create()) == NULL) {
206 free(task);
210 if ((prop_dictionary_set_string(task->ldm_task, DM_IOCTL_COMMAND,
212 prop_object_release(task->ldm_task);
213 free(task);
231 prop_dictionary_set(task->ldm_task, DM_IOCTL_VERSION,
239 return task;
509 /* Set cmd_data dictionary entry to task struct. */
521 /* Get cmd_data dictionary entry from task struct */