Lines Matching refs:result

71 	acpi_status result;  in toshiba_bluetooth_present()  local
79 result = acpi_evaluate_integer(handle, "_STA", NULL, &bt_present); in toshiba_bluetooth_present()
80 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_present()
93 acpi_status result; in toshiba_bluetooth_status() local
96 result = acpi_evaluate_integer(handle, "BTST", NULL, &status); in toshiba_bluetooth_status()
97 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_status()
107 acpi_status result; in toshiba_bluetooth_enable() local
109 result = acpi_evaluate_object(handle, "AUSB", NULL, NULL); in toshiba_bluetooth_enable()
110 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_enable()
115 result = acpi_evaluate_object(handle, "BTPO", NULL, NULL); in toshiba_bluetooth_enable()
116 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_enable()
126 acpi_status result; in toshiba_bluetooth_disable() local
128 result = acpi_evaluate_object(handle, "BTPF", NULL, NULL); in toshiba_bluetooth_disable()
129 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_disable()
134 result = acpi_evaluate_object(handle, "DUSB", NULL, NULL); in toshiba_bluetooth_disable()
135 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_disable()
239 int result; in toshiba_bt_rfkill_add() local
241 result = toshiba_bluetooth_present(device->handle); in toshiba_bt_rfkill_add()
242 if (result) in toshiba_bt_rfkill_add()
243 return result; in toshiba_bt_rfkill_add()
254 result = toshiba_bluetooth_sync_status(bt_dev); in toshiba_bt_rfkill_add()
255 if (result) { in toshiba_bt_rfkill_add()
257 return result; in toshiba_bt_rfkill_add()
273 result = rfkill_register(bt_dev->rfk); in toshiba_bt_rfkill_add()
274 if (result) { in toshiba_bt_rfkill_add()
280 return result; in toshiba_bt_rfkill_add()