Searched refs:opcode (Results 101 - 125 of 133) sorted by relevance

123456

/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareVolume.cpp2035 switch (request->opcode) {
2186 B_QUERY_UPDATE, request->opcode, nsid, 0, vnida, vnidb,
2194 NotifyListener(request->opcode, nsid, vnida, vnidb, vnidc, name);
2246 B_QUERY_UPDATE, request->opcode, nsid, 0, vnida, vnidb,
2253 NotifyListener(request->opcode, nsid, vnida, vnidb, vnidc, name);
2284 NotifyListener(request->opcode, nsid, vnida, vnidb, vnidc, name);
2307 NotifyListener(request->opcode, nsid, vnida, vnidb, vnidc, NULL);
2331 NotifyListener(request->opcode, nsid, vnida, vnidb, vnidc, name);
/haiku/headers/os/bluetooth/HCI/
H A DbtHCI_command.h14 uint16 opcode; /* OCF & OGF */ member in struct:hci_command_header
19 /* Command opcode pack/unpack */
/haiku/src/add-ons/kernel/drivers/graphics/intel_extreme/
H A Ddevice.cpp45 static status_t device_ioctl(void* data, uint32 opcode, void* buffer,
/haiku/src/kits/debugger/debugger_interface/local/
H A DLocalDebuggerInterface.cpp947 int32 opcode = 0;
948 if (message.FindInt32("opcode", &opcode) != B_OK)
952 switch (opcode)
/haiku/src/add-ons/kernel/busses/scsi/buslogic/
H A Dbuslogic.c460 bl_ccb->opcode = BL_CCB_OP_INITIATE_RETLEN_SG;
503 bl_ccb->opcode = BL_CCB_OP_INITIATE_RETLEN_SG;
530 bl_ccb->opcode = BL_CCB_OP_INITIATE_RETLEN;
/haiku/src/servers/input/
H A DAddOnManager.cpp794 changeMessage.AddInt32("be:opcode", B_INPUT_DEVICE_ADDED);
796 changeMessage.AddInt32("be:opcode", B_INPUT_DEVICE_REMOVED);
802 changeMessage.AddInt32("be:opcode", B_INPUT_DEVICE_STARTED);
804 changeMessage.AddInt32("be:opcode", B_INPUT_DEVICE_STOPPED);
919 int32 opcode; local
920 if (message->FindInt32("opcode", &opcode) != B_OK)
923 switch (opcode) {
/haiku/src/servers/mount/
H A DAutoMounter.cpp453 int32 opcode;
454 if (message->FindInt32("opcode", &opcode) != B_OK)
457 switch (opcode) {
/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/add-ons/kernel/busses/scsi/53c8xx/
H A D53c8xx.c298 uint32 opcode; local
303 opcode = s->op_in;
307 opcode = s->op_out;
318 t[sgcount].count = LE(opcode | pe[sgcount].size);
329 t[i].count = LE(opcode | pe[i].size);
/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);
/haiku/src/kits/network/libnetapi/
H A DNetworkSettings.cpp534 int32 opcode; local
535 if (message->FindInt32("opcode", &opcode) != B_OK
553 if (opcode == B_STAT_CHANGED
/haiku/src/kits/translation/
H A DTranslatorRoster.cpp225 int32 opcode; local
226 if (message->FindInt32("opcode", &opcode) != B_OK)
229 switch (opcode) {
/haiku/src/servers/package/
H A DVolume.cpp649 int32 opcode; local
650 if (message->FindInt32("opcode", &opcode) != B_OK)
653 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/file_systems/cdda/
H A Dcdda.cpp545 toc.opcode = SCSI_OP_READ_TOC;
/haiku/src/system/kernel/
H A Dport.cpp236 void Notify(uint32 opcode, port_id team);
488 PortNotificationService::Notify(uint32 opcode, port_id port) argument
493 event.AddInt32("event", opcode);
496 DefaultNotificationService::Notify(event, opcode);
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp2102 int32 opcode = 0; local
2103 if (message->FindInt32("opcode", &opcode) != B_OK)
2106 if (opcode != B_ENTRY_CREATED
2111 switch (opcode) {
/haiku/src/add-ons/kernel/bus_managers/scsi/
H A Ddevices.cpp247 cmd->opcode = SCSI_OP_REQUEST_SENSE;
/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...]
/haiku/src/add-ons/kernel/bus_managers/ata/
H A DATAChannel.cpp336 ATAChannel::Control(uint8 targetID, uint32 opcode, void *buffer, size_t length) argument
339 return fDevices[targetID]->Control(opcode, buffer, length);
/haiku/src/servers/net/
H A DDHCPClient.cpp118 uint8 opcode; member in struct:dhcp_message
188 // ASSERT(this == offsetof(this, opcode));
887 message.opcode = BOOT_REQUEST;
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Digc_i225.c718 * @opcode: opcode to be used for the write command
721 s32 igc_write_erase_flash_command_i225(struct igc_hw *hw, u32 opcode, argument
746 flswctl = address | opcode;
827 /* Set address and 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/tests/kits/storage/
H A DQueryTest.cpp1334 QueryTest::CheckUpdateMessages(uint32 opcode, QueryTestEntry **entries, argument
1352 CPPUNIT_ASSERT( message.FindInt32("opcode", (int32*)&msgOpcode)
1354 CPPUNIT_ASSERT( msgOpcode == opcode );
1367 if (opcode == B_ENTRY_CREATED) {
/haiku/src/apps/deskbar/
H A DStatusView.cpp586 int32 opcode; local
587 if (message->FindInt32("opcode", &opcode) != B_OK)
591 switch (opcode) {

Completed in 215 milliseconds

123456