Searched refs:hid (Results 1 - 25 of 36) sorted by relevance

12

/haiku/src/add-ons/kernel/drivers/bluetooth/h2/h2generic/
H A Dh2upper.h15 status_t send_packet(hci_id hid, bt_packet_t type, net_buffer* nbuf);
16 status_t send_command(hci_id hid, snet_buffer* snbuf);
H A Dh2util.h16 #define SET_DEVICE(nbuf, hid) \
17 (nbuf->DEVICEFIELD=(nbuf->DEVICEFIELD & 0xFFFFFF00) | (hid & 0xFF))
H A Dh2upper.cpp118 send_packet(hci_id hid, bt_packet_t type, net_buffer* nbuf) argument
120 bt_usb_dev* bdev = fetch_device(NULL, hid);
163 send_command(hci_id hid, snet_buffer* snbuf) argument
165 bt_usb_dev* bdev = fetch_device(NULL, hid);
/haiku/src/add-ons/kernel/bluetooth/btCoreData/
H A DConnectionInterface.h17 HciConnection* ConnectionByHandle(uint16 handle, hci_id hid);
19 hci_id hid);
23 hci_id hid);
24 status_t RemoveConnection(const bdaddr_t& destination, hci_id hid);
25 status_t RemoveConnection(uint16 handle, hci_id hid);
H A DConnectionInterface.cpp38 AddConnection(uint16 handle, int type, const bdaddr_t& dst, hci_id hid) argument
42 HciConnection* conn = ConnectionByHandle(handle, hid);
59 conn->Hid = hid;
73 RemoveConnection(const bdaddr_t& destination, hci_id hid) argument
83 if (conn->Hid == hid
102 RemoveConnection(uint16 handle, hci_id hid) argument
111 if (conn->Hid == hid && conn->handle == handle) {
149 ConnectionByHandle(uint16 handle, hci_id hid) argument
158 if (conn->Hid == hid && conn->handle == handle) {
168 ConnectionByDestination(const bdaddr_t& destination, hci_id hid) argument
[all...]
H A DBTCoreData.cpp26 ExistConnectionByDestination(const bdaddr_t& destination, hci_id hid = -1)
28 return ConnectionByDestination(destination, hid) != NULL;
33 ExistConnectionByHandle(uint16 handle, hci_id hid) argument
35 return ConnectionByHandle(handle, hid);
/haiku/src/add-ons/kernel/bluetooth/hci/
H A Dacl.h12 status_t AclAssembly(net_buffer* buffer, hci_id hid);
H A Dacl.cpp28 extern void RegisterConnection(hci_id hid, uint16 handle);
29 extern void unRegisterConnection(hci_id hid, uint16 handle);
34 AclAssembly(net_buffer* nbuf, hci_id hid) argument
71 HciConnection* conn = btCoreData->ConnectionByHandle(con_handle, hid);
75 conn = btCoreData->AddConnection(con_handle, BT_ACL, BDADDR_NULL, hid);
/haiku/src/add-ons/kernel/drivers/power/acpi_button/
H A Dacpi_button.cpp99 const char *hid; local
100 if (sDeviceManager->get_attr_string(parent, ACPI_DEVICE_HID_ITEM, &hid,
108 device->fixed = strcmp(hid, "PNP0C0C") != 0 && strcmp(hid, "PNP0C0E") != 0;
109 TRACE("Device found, hid: %s, fixed: %d\n", hid, device->fixed);
110 if (strcmp(hid, "PNP0C0C") == 0 || strcmp(hid, "ACPI_FPB") == 0)
112 else if (strcmp(hid, "PNP0C0E") == 0 || strcmp(hid, "ACPI_FS
258 const char *hid; local
319 const char *hid; local
[all...]
/haiku/src/add-ons/kernel/busses/mmc/
H A Dsdhci_acpi.cpp184 const char* hid; local
193 if (gDeviceManager->get_attr_string(parent, ACPI_DEVICE_HID_ITEM, &hid, false)) {
194 TRACE("No hid attribute\n");
203 TRACE("supports_device(hid:%s uid:%s)\n", hid, uid);
205 if (!(strcmp(hid, "80860F14") == 0
206 || strcmp(hid, "80860F16") == 0
207 || strcmp(hid, "80865ACA") == 0
208 || strcmp(hid, "80865AD0") == 0
209 || strcmp(hid, "INT33C
[all...]
/haiku/headers/private/bluetooth/
H A DbtCoreData.h144 const bdaddr_t& dst, hci_id hid);
146 // status_t (*RemoveConnection)(bdaddr_t destination, hci_id hid);
147 status_t (*RemoveConnection)(uint16 handle, hci_id hid);
160 struct HciConnection* (*ConnectionByHandle)(uint16 handle, hci_id hid);
162 const bdaddr_t& destination, hci_id hid);
191 hci_id hid);
192 inline bool ExistConnectionByHandle(uint16 handle, hci_id hid);
H A DPincodeWindow.h33 PincodeWindow(bdaddr_t address, hci_id hid);
/haiku/headers/os/bluetooth/
H A DLocalDevice.h31 static LocalDevice* GetLocalDevice(const hci_id hid);
55 LocalDevice(hci_id hid);
/haiku/src/add-ons/kernel/bus_managers/i2c/
H A DI2CModule.cpp43 i2c_register_device(i2c_bus _bus, i2c_addr slaveAddress, char* hid, argument
48 return bus->RegisterDevice(slaveAddress, hid, cid, acpiHandle);
H A DI2CPrivate.h76 char* hid, char** cid,
H A DI2CBus.cpp54 I2CBus::RegisterDevice(i2c_addr slaveAddress, char* hid, char** cid, argument
70 { ACPI_DEVICE_HID_ITEM, B_STRING_TYPE, { .string = hid }},
/haiku/headers/os/bluetooth/HCI/
H A DbtHCI_transport.h122 status_t (*PostTransportPacket)(hci_id hid, bt_packet_t type,
154 #define PACK_PORTCODE(type,hid,data) ((type & 0xFF) << 24 | (hid & 0xFF) << 16 | (data & 0xFFFF))
/haiku/src/servers/bluetooth/
H A DBluetoothServer.cpp237 hci_id hid; local
239 if (message->FindInt32("hci_id", &hid) == B_OK) {
244 if (lDeviceImpl->GetID() == hid)
255 BluetoothServer::LocateLocalDeviceImpl(hci_id hid) argument
262 if (lDeviceImpl->GetID() == hid)
286 hci_id hid; local
292 if (message->FindInt32("hci_id", &hid) == B_OK) {
346 hid = lDeviceImpl->GetID();
349 TRACE_BT("BluetoothServer: Device acquired %" B_PRId32 "\n", hid);
350 return reply->AddInt32("hci_id", hid);
[all...]
H A DBluetoothServer.h68 LocalDeviceImpl* LocateLocalDeviceImpl(hci_id hid);
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DModule.cpp103 char* hid = NULL; local
108 if (get_device_info(result, &hid, (char**)&cidList, 8,
110 if (hid != NULL) {
113 attrs[attrCount].value.string = hid;
155 free(hid);
H A DNamespaceDump.cpp116 char* hid = NULL; local
117 device->acpi->get_device_info(result, &hid, NULL, 0, NULL, NULL);
119 if (hid != NULL) {
120 strlcat(output, hid, sizeof(output));
121 free(hid);
/haiku/src/kits/bluetooth/
H A DLocalDevice.cpp35 hci_id hid; local
44 && reply.FindInt32("hci_id", &hid) == B_OK ) {
46 if (hid >= 0)
47 lDevice = new (std::nothrow)LocalDevice(hid);
70 LocalDevice::GetLocalDevice(const hci_id hid) argument
73 request.AddInt32("hci_id", hid);
565 LocalDevice::LocalDevice(hci_id hid) argument
568 fHid(hid)
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A DL2capEndpoint.cpp234 hci_id hid = btCoreData->RouteConnection(address->l2cap_bdaddr);
237 TRACE("%s: %" B_PRId32 " for route %s\n", __func__, hid,
241 if (hid > 0) {
243 address->l2cap_bdaddr, hid);
/haiku/src/add-ons/kernel/busses/pci/ecam/
H A DECAMPCIController.cpp96 const char* hid; local
97 if (gDeviceManager->get_attr_string(parent, ACPI_DEVICE_HID_ITEM, &hid, false) < B_OK)
100 if (strcmp(hid, "PNP0A03") != 0 && strcmp(hid, "PNP0A08") != 0)
/haiku/src/kits/bluetooth/UI/
H A DPincodeWindow.cpp51 PincodeWindow::PincodeWindow(bdaddr_t address, hci_id hid) argument
56 fHid(hid)

Completed in 203 milliseconds

12