/src/usr.bin/audiocfg/ |
drvctl.c | 57 prop_dictionary_t command_dict; local in function:drvctl_get_properties 64 command_dict = prop_dictionary_create(); 67 prop_dictionary_set_string_nocopy(command_dict, "drvctl-command", 70 prop_dictionary_set(command_dict, "drvctl-arguments", args_dict); 73 error = prop_dictionary_sendrecv_ioctl(command_dict, fd, 75 prop_object_release(command_dict);
|
/src/sbin/drvctl/ |
drvctl.c | 76 prop_dictionary_t command_dict, args_dict, results_dict, data_dict; local in function:main 161 command_dict = prop_dictionary_create(); 164 prop_dictionary_set_string_nocopy(command_dict, 168 prop_dictionary_set_and_rel(command_dict, "drvctl-arguments", 171 res = prop_dictionary_sendrecv_ioctl(command_dict, fd, 173 prop_object_release(command_dict);
|
/src/sys/kern/ |
kern_drvctl.c | 486 prop_dictionary_t command_dict, 494 args_dict = prop_dictionary_get(command_dict, "drvctl-arguments"); 541 prop_dictionary_t command_dict, results_dict; local in function:drvctl_command 546 error = prop_dictionary_copyin_ioctl(pref, ioctl_cmd, &command_dict); 552 prop_object_release(command_dict); 556 command_string = prop_dictionary_get(command_dict, "drvctl-command"); 578 error = (*dcd->dcd_func)(l, command_dict, results_dict); 584 prop_object_release(command_dict);
|
/src/usr.sbin/sysinst/ |
disks.c | 348 prop_dictionary_t command_dict; local in function:get_descr_drvctl 362 command_dict = prop_dictionary_create(); 365 prop_dictionary_set_string_nocopy(command_dict, "drvctl-command", 369 prop_dictionary_set(command_dict, "drvctl-arguments", args_dict); 372 error = prop_dictionary_sendrecv_ioctl(command_dict, fd, 374 prop_object_release(command_dict);
|
util.c | 2634 prop_dictionary_t command_dict, args_dict, results_dict, data_dict; local in function:may_swap_if_not_sdmmc 2643 command_dict = prop_dictionary_create(); 2647 prop_dictionary_set(command_dict, "drvctl-command", string); 2654 prop_dictionary_set(command_dict, "drvctl-arguments", 2658 res = prop_dictionary_sendrecv_ioctl(command_dict, fd, 2660 prop_object_release(command_dict);
|