Lines Matching refs:result

67 	acpi_status result;  in toshiba_bluetooth_present()  local
75 result = acpi_evaluate_integer(handle, "_STA", NULL, &bt_present); in toshiba_bluetooth_present()
76 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_present()
89 acpi_status result; in toshiba_bluetooth_status() local
92 result = acpi_evaluate_integer(handle, "BTST", NULL, &status); in toshiba_bluetooth_status()
93 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_status()
105 acpi_status result; in toshiba_bluetooth_enable() local
134 result = acpi_evaluate_object(handle, "AUSB", NULL, NULL); in toshiba_bluetooth_enable()
135 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_enable()
140 result = acpi_evaluate_object(handle, "BTPO", NULL, NULL); in toshiba_bluetooth_enable()
141 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_enable()
151 acpi_status result; in toshiba_bluetooth_disable() local
153 result = acpi_evaluate_object(handle, "BTPF", NULL, NULL); in toshiba_bluetooth_disable()
154 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_disable()
159 result = acpi_evaluate_object(handle, "DUSB", NULL, NULL); in toshiba_bluetooth_disable()
160 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_disable()
182 int result; in toshiba_bt_rfkill_add() local
184 result = toshiba_bluetooth_present(device->handle); in toshiba_bt_rfkill_add()
185 if (result) in toshiba_bt_rfkill_add()
186 return result; in toshiba_bt_rfkill_add()
191 result = toshiba_bluetooth_enable(device->handle); in toshiba_bt_rfkill_add()
192 if (result) in toshiba_bt_rfkill_add()
193 return result; in toshiba_bt_rfkill_add()
195 return result; in toshiba_bt_rfkill_add()