Searched refs:opcode (Results 76 - 100 of 133) sorted by relevance

123456

/haiku/src/apps/people/
H A DPersonWindow.cpp234 int32 opcode; local
235 if (msg->FindInt32("opcode", &opcode) == B_OK) {
236 switch (opcode) {
/haiku/headers/os/drivers/
H A DUSB2.h201 status_t (*usb_ioctl)(uint32 opcode, void *buffer,
H A DUSB3.h218 status_t (*usb_ioctl)(uint32 opcode, void *buffer,
/haiku/headers/private/bluetooth/
H A DCommandManager.h40 fHeader->opcode = B_HOST_TO_LENDIAN_INT16(PACK_OPCODE(ogf, ocf));
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DServerConnection.cpp203 if (request->opcode == B_DEVICE_UNMOUNTED)
H A DVolume.cpp185 Volume::NotifyListener(int32 opcode, nspace_id nsid, vnode_id vnida, argument
188 return notify_listener(opcode, nsid, vnida, vnidb, vnidc, name);
H A DVolume.h61 int NotifyListener(int32 opcode, nspace_id nsid,
/haiku/src/system/boot/platform/pxe_ia32/
H A Dpxe_undi.h9 extern "C" uint16 call_pxe_bios(void *pxe, uint16 opcode, void *param);
/haiku/headers/private/kernel/boot/net/
H A DNetDefs.h115 uint16 opcode; /* ARP opcode (command). */ member in struct:arp_header
/haiku/src/add-ons/kernel/drivers/graphics/radeon_hd/
H A Ddevice.cpp44 static status_t device_ioctl(void* data, uint32 opcode,
/haiku/src/servers/mail/
H A DDeskbarView.cpp249 int32 opcode; local
250 message->FindInt32("opcode", &opcode);
252 switch (opcode) {
261 if (opcode == B_ENTRY_CREATED)
H A DMailDaemonApplication.cpp380 int32 opcode; local
381 msg->FindInt32("opcode", &opcode);
383 switch (opcode) {
393 if (opcode == B_ENTRY_CREATED)
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacparser.h200 * psargs - Parse AML opcode arguments
431 UINT16 opcode);
/haiku/src/system/kernel/device_manager/
H A Dlegacy_drivers.cpp805 int32 opcode = event->GetInt32("opcode", -1); local
806 if (opcode != B_STAT_CHANGED
1062 int32 opcode = event->GetInt32("opcode", -1); local
1067 if (opcode == B_ENTRY_MOVED) {
1074 opcode = B_ENTRY_CREATED;
1077 opcode = B_ENTRY_REMOVED;
1093 opcode == B_ENTRY_CREATED ? "added" : "removed");
1096 opcode
[all...]
/haiku/src/system/kernel/fs/
H A Dnode_monitor.cpp96 status_t NotifyEntryCreatedOrRemoved(int32 opcode, dev_t device,
227 \param opcode \c B_ENTRY_CREATED or \c B_ENTRY_REMOVED or \c B_ATTR_CHANGED.
239 notify_query_entry_event(int32 opcode, port_id port, int32 token, argument
249 message.AddInt32("opcode", opcode);
652 \param opcode \c B_ENTRY_CREATED or \c B_ENTRY_REMOVED.
662 NodeMonitorService::NotifyEntryCreatedOrRemoved(int32 opcode, dev_t device, argument
677 if (opcode != B_ENTRY_CREATED) {
692 message.AddInt32("opcode", opcode);
[all...]
/haiku/src/servers/net/
H A DNetServer.cpp924 int32 opcode; local
926 if (message->FindInt32("opcode", &opcode) != B_OK
927 || (opcode != B_ENTRY_CREATED && opcode != B_ENTRY_REMOVED)
936 if (opcode == B_ENTRY_CREATED)
/haiku/src/kits/tracker/
H A DVirtualDirectoryPoseView.cpp170 switch (message->GetInt32("opcode", 0)) {
463 VirtualDirectoryPoseView::_DispatchEntryCreatedOrRemovedMessage(int32 opcode, argument
468 message.AddInt32("opcode", opcode);
/haiku/src/add-ons/input_server/devices/serial_mouse/
H A DMouseInputDevice.cpp117 MouseInputDevice::InitFromSettings(void* cookie, uint32 opcode) argument
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dusb_scsi.c549 switch(command->opcode){
552 bool b_select = (MODE_SELECT_6 == command->opcode);
625 switch(command->opcode){
649 if(MODE_SENSE_6 == command->opcode){
/haiku/src/servers/bluetooth/
H A DLocalDeviceImpl.cpp291 BluetoothCommandOpcode(commandComplete->opcode));
293 request = FindPetition(event->ecode, commandComplete->opcode,
308 BluetoothCommandOpcode(commandStatus->opcode));
310 request = FindPetition(event->ecode, commandStatus->opcode,
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_mkquery.c103 int op, /*!< opcode of query */
133 hp->opcode = op;
144 * perform opcode specific processing
/haiku/src/add-ons/kernel/bus_managers/usb/
H A Dusb.cpp545 usb_ioctl(uint32 opcode, void *buffer, size_t bufferSize) argument
547 TRACE_MODULE("usb_ioctl(%" B_PRIu32 ", %p, %" B_PRIuSIZE ")\n", opcode,
550 switch (opcode) {
867 status_t (*usb_ioctl)(uint32 opcode, void *,size_t);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_mci.c319 u_int8_t opcode, u_int32_t bt_flags)
327 *(((u_int8_t *)pld) + MCI_GPM_COEX_B_BT_FLAGS_OP) = opcode;
338 (opcode == MCI_GPM_COEX_BT_FLAGS_READ)?"READ":
339 ((opcode == MCI_GPM_COEX_BT_FLAGS_SET)?"SET":"CLEAR"),
1188 u_int8_t type, opcode; local
1206 opcode = MCI_GPM_OPCODE(payload);
1209 switch (opcode)
318 ar9300_mci_send_coex_bt_flags(struct ath_hal *ah, HAL_BOOL wait_done, u_int8_t opcode, u_int32_t bt_flags) argument
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DRequests.h1224 int32 opcode; member in struct:NodeMonitoringRequest
1240 visitor->Visit(this, opcode);
1266 visitor->Visit(this, opcode);
1288 visitor->Visit(this, opcode);
1318 visitor->Visit(this, opcode);
1339 visitor->Visit(this, opcode);
/haiku/src/servers/input/
H A DInputServer.cpp1108 message->FindInt32("be:opcode", &code);
1109 PRINT(("%s be:opcode %" B_PRId32 "\n", __PRETTY_FUNCTION__, code));
1744 int32 opcode; local
1745 if (event->FindInt32("be:opcode", &opcode) == B_OK) {
1753 if (opcode == B_INPUT_METHOD_CHANGED
1762 && opcode == B_INPUT_METHOD_STARTED)
1771 opcode = B_INPUT_METHOD_STOPPED;
1774 if (opcode == B_INPUT_METHOD_STOPPED) {

Completed in 133 milliseconds

123456