• Home
  • Raw
  • Download

Lines Matching refs:result

68 	acpi_status result;  in toshiba_bluetooth_present()  local
76 result = acpi_evaluate_integer(handle, "_STA", NULL, &bt_present); in toshiba_bluetooth_present()
77 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_present()
92 acpi_status result; in toshiba_bluetooth_status() local
95 result = acpi_evaluate_integer(handle, "BTST", NULL, &status); in toshiba_bluetooth_status()
96 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_status()
106 acpi_status result; in toshiba_bluetooth_enable() local
108 result = acpi_evaluate_object(handle, "AUSB", NULL, NULL); in toshiba_bluetooth_enable()
109 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_enable()
114 result = acpi_evaluate_object(handle, "BTPO", NULL, NULL); in toshiba_bluetooth_enable()
115 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_enable()
125 acpi_status result; in toshiba_bluetooth_disable() local
127 result = acpi_evaluate_object(handle, "BTPF", NULL, NULL); in toshiba_bluetooth_disable()
128 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_disable()
133 result = acpi_evaluate_object(handle, "DUSB", NULL, NULL); in toshiba_bluetooth_disable()
134 if (ACPI_FAILURE(result)) { in toshiba_bluetooth_disable()
238 int result; in toshiba_bt_rfkill_add() local
240 result = toshiba_bluetooth_present(device->handle); in toshiba_bt_rfkill_add()
241 if (result) in toshiba_bt_rfkill_add()
242 return result; in toshiba_bt_rfkill_add()
253 result = toshiba_bluetooth_sync_status(bt_dev); in toshiba_bt_rfkill_add()
254 if (result) { in toshiba_bt_rfkill_add()
256 return result; in toshiba_bt_rfkill_add()
272 result = rfkill_register(bt_dev->rfk); in toshiba_bt_rfkill_add()
273 if (result) { in toshiba_bt_rfkill_add()
279 return result; in toshiba_bt_rfkill_add()