Searched refs:opcode (Results 1 - 25 of 133) sorted by last modified time

123456

/haiku/src/servers/app/font/
H A DGlobalFontManager.cpp152 int32 opcode; local
153 if (message->FindInt32("opcode", &opcode) != B_OK)
156 switch (opcode) {
/haiku/src/preferences/filetypes/
H A DIconView.cpp646 int32 opcode; local
647 if (message->FindInt32("opcode", &opcode) != B_OK
648 || opcode != B_ATTR_CHANGED)
/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c6374 cmd->hdr_wide.opcode = iwm_cmd_opcode(code);
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c5840 cmd->hdr_wide.opcode = iwx_cmd_opcode(code);
H A Dif_iwxreg.h7785 iwx_cmd_id(uint8_t opcode, uint8_t groupid, uint8_t version) argument
7787 return opcode + (groupid << 8) + (version << 16);
7790 /* make uint16_t wide id out of uint8_t group and opcode */
7791 #define IWX_WIDE_ID(grp, opcode) ((grp << 8) | opcode)
7801 uint8_t opcode; member in struct:iwx_cmd_header_wide
/haiku/src/servers/package/
H A DVolume.cpp649 int32 opcode; local
650 if (message->FindInt32("opcode", &opcode) != B_OK)
653 switch (opcode) {
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacparser.h200 * psargs - Parse AML opcode arguments
431 UINT16 opcode);
/haiku/src/kits/interface/
H A DTextView.cpp900 int32 opcode; local
901 if (message->FindInt32("be:opcode", &opcode) == B_OK) {
902 switch (opcode) {
5795 message.AddInt32("be:opcode", B_INPUT_METHOD_LOCATION_REQUEST);
5828 message.AddInt32("be:opcode", B_INPUT_METHOD_STOPPED);
/haiku/src/kits/debugger/dwarf/
H A DDwarfFile.cpp2610 uint8 opcode = dataReader.Read<uint8>(0); local
2611 if ((opcode >> 6) != 0) {
2612 uint32 operand = opcode & 0x3f;
2614 switch (opcode >> 6) {
2648 switch (opcode) {
2986 TRACE_CFI(" unknown opcode %u!\n", opcode);
H A DLineNumberProgram.cpp53 WARNING("operand count for standard opcode %u does not what we "
93 uint8 opcode = dataReader.Read<uint8>(0); local
94 if (opcode >= fOpcodeBase) {
95 // special opcode
96 uint adjustedOpcode = opcode - fOpcodeBase;
105 } else if (opcode > 0) {
106 // standard opcode
107 switch (opcode) {
151 WARNING("unsupported standard opcode %u\n", opcode);
[all...]
H A DDwarfExpressionEvaluator.cpp201 uint8 opcode = fDataReader.Read<uint8>(0); local
202 if (opcode == DW_OP_piece) {
204 } else if (opcode == DW_OP_bit_piece) {
247 uint8 opcode = fDataReader.Read<uint8>(0);
248 if (opcode == DW_OP_piece) {
250 } else if (opcode == DW_OP_bit_piece) {
284 uint8 opcode = fDataReader.Read<uint8>(0); local
286 switch (opcode) {
671 if (opcode >= DW_OP_lit0 && opcode <
[all...]
/haiku/src/apps/people/
H A DPersonWindow.cpp234 int32 opcode; local
235 if (msg->FindInt32("opcode", &opcode) == B_OK) {
236 switch (opcode) {
/haiku/src/apps/deskbar/
H A DStatusView.cpp586 int32 opcode; local
587 if (message->FindInt32("opcode", &opcode) != B_OK)
591 switch (opcode) {
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_send.c300 if ((((const HEADER *)(const void *)buf1)->opcode == ns_o_update) &&
301 (((const HEADER *)(const void *)buf2)->opcode == ns_o_update))
/haiku/src/servers/launch/
H A DLaunchDaemon.cpp564 int32 opcode = message->GetInt32("opcode", 0); local
566 if (opcode != B_TEAM_DELETED || team < 0)
/haiku/src/apps/terminal/
H A DTermView.cpp1761 int32 opcode; local
1762 if (message->FindInt32("be:opcode", &opcode) == B_OK) {
1763 switch (opcode) {
3158 message.AddInt32("be:opcode", B_INPUT_METHOD_LOCATION_REQUEST);
3193 message.AddInt32("be:opcode", B_INPUT_METHOD_STOPPED);
/haiku/src/system/kernel/
H A Dmodule.cpp202 int32 opcode; member in struct:Module::module_notification
245 void Notify(int32 opcode, dev_t device, ino_t directory,
266 void _Notify(int32 opcode, dev_t device, ino_t directory,
1201 int32 opcode = event->GetInt32("opcode", -1); local
1207 if (opcode == B_ENTRY_MOVED) {
1213 opcode = B_ENTRY_REMOVED;
1216 opcode = B_ENTRY_CREATED;
1220 sModuleNotificationService.Notify(opcode, device, directory, node, name);
1240 if (event->GetInt32("opcode",
1565 _Notify(int32 opcode, dev_t device, ino_t directory, ino_t node, const char* name) argument
1667 Notify(int32 opcode, dev_t device, ino_t directory, ino_t node, const char* name) argument
[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/add-ons/kernel/drivers/disk/scsi/scsi_cd/
H A Dscsi_cd.cpp253 cmd->opcode = SCSI_OP_READ_TOC;
321 cmd.opcode = SCSI_OP_READ_SUB_CHANNEL;
347 cmd.opcode = SCSI_OP_MODE_SENSE_6;
432 cmd.opcode = SCSI_OP_MODE_SELECT_6;
458 cmd.opcode = SCSI_OP_PLAY_MSF;
529 cmd.opcode = SCSI_OP_STOP_PLAY;
544 cmd.opcode = SCSI_OP_PAUSE_RESUME;
584 cmd.opcode = SCSI_OP_SCAN;
619 cmd->opcode = SCSI_OP_READ_CD;
/haiku/src/apps/mail/
H A DEnclosures.cpp241 int32 opcode; local
242 if (msg->FindInt32("opcode", &opcode) == B_NO_ERROR) {
256 if (opcode == B_ENTRY_REMOVED) {
263 } else if (opcode == B_ENTRY_MOVED) {
H A DContent.cpp1219 int32 opcode;
1220 if (msg->FindInt32("opcode", &opcode) == B_NO_ERROR) {
1233 if (opcode == B_ENTRY_REMOVED) {
1236 } else if (opcode == B_ENTRY_MOVED) {
1372 if (msg->FindInt32("be:opcode", &im_op) == B_OK) {
/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/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/headers/os/drivers/
H A DUSB3.h218 status_t (*usb_ioctl)(uint32 opcode, void *buffer,
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DClientConnection.cpp2558 if (event->opcode == B_ENTRY_CREATED) {
2567 } else if (event->opcode == B_ENTRY_REMOVED) {
2579 ERROR("Ignoring unexpected query event: opcode: 0x%" B_PRIx32 "\n",
2580 event->opcode);
2611 if (event->opcode == B_ENTRY_REMOVED) {
2831 event->opcode = B_DEVICE_UNMOUNTED;
2921 if (!volume && event->opcode != B_DEVICE_UNMOUNTED)
2928 switch (event->opcode) {
2962 request->opcode = event->opcode;
[all...]

Completed in 369 milliseconds

123456