Searched refs:opcode (Results 1 - 25 of 133) sorted by relevance

123456

/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNodeMonitoringEvent.cpp35 opcode = B_ENTRY_CREATED;
55 opcode = B_ENTRY_REMOVED;
72 opcode = B_ENTRY_MOVED;
94 opcode = B_STAT_CHANGED;
109 opcode = B_ATTR_CHANGED;
128 opcode = B_DEVICE_MOUNTED;
144 opcode = B_DEVICE_UNMOUNTED;
H A DNodeMonitor.cpp52 int32 opcode; local
53 if (message->FindInt32("opcode", &opcode) == B_OK) {
54 switch (opcode) {
/haiku/src/add-ons/accelerants/intel_extreme/
H A Dcommands.h16 uint32 opcode; member in struct:command
18 uint32* Data() { return &opcode; }
53 opcode = command;
66 opcode |= COMMAND_BLIT_RGBA;
131 opcode = XY_COMMAND_SCANLINE_BLIT;
/haiku/src/servers/bluetooth/
H A DLocalDeviceHandler.cpp84 LocalDeviceHandler::ClearWantedEvent(BMessage* msg, uint16 event, uint16 opcode) argument
102 // there is an opcode specified
103 if (opcode != 0) {
105 // The opcode matches
107 && ((uint16)opcodeFound == opcode)) {
110 printf("Removed event %#x and opcode %d from request %p\n",
111 event, opcode, msg);
136 LocalDeviceHandler::FindPetition(uint16 event, uint16 opcode, int32* indexFound) argument
157 // there is an opcode specified..
160 // ensure the opcode
[all...]
H A DLocalDeviceHandler.h41 void ClearWantedEvent(BMessage* msg, uint16 event, uint16 opcode = 0);
44 BMessage* FindPetition(uint16 event, uint16 opcode = 0, int32* indexFound = NULL);
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dtransform_procs.c44 switch (from->opcode) {
50 to->opcode = (from->opcode == READ_6) ? READ_10 : WRITE_10;
68 if (from->opcode == MODE_SENSE_6) {
69 to->opcode = MODE_SENSE_10;
73 to->opcode = MODE_SELECT_10;
102 switch (from->opcode) {
148 command->opcode = START_STOP_UNIT;
180 switch (command->opcode) {
229 switch (command->opcode) {
[all...]
H A Dscsi_commands.h159 uint8 opcode; member in struct:__anon122
164 uint8 opcode; member in struct:__anon123
174 uint8 opcode; member in struct:__anon124
183 uint8 opcode; member in struct:__anon125
195 uint8 opcode; member in struct:__anon126
211 uint8 opcode; member in struct:__anon127
221 uint8 opcode; member in struct:__anon128
231 uint8 opcode; member in struct:__anon129
248 uint8 opcode; member in struct:__anon131
267 uint8 opcode; member in struct:__anon133
274 uint8 opcode; member in struct:__anon134
[all...]
/haiku/src/servers/input/
H A DBottomlineWindow.cpp80 int32 opcode; local
81 if (event->FindInt32("be:opcode", &opcode) != B_OK
82 || opcode != B_INPUT_METHOD_CHANGED
88 SERIAL_PRINT(("IME : %" B_PRId32 ", %s\n", opcode, string));
/haiku/src/add-ons/kernel/network/notifications/
H A Dnotifications.cpp58 uint32 opcode = event.GetInt32("opcode", 0); local
59 if (opcode == 0)
62 TRACE("notify for %lx\n", opcode);
64 DefaultUserNotificationService::Notify(event, opcode);
/haiku/src/apps/musiccollection/
H A DQueryMonitor.cpp24 int32 opcode; local
26 && message->FindInt32("opcode", &opcode) == B_OK) {
27 switch (opcode) {
/haiku/src/kits/debugger/dwarf/
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/servers/launch/
H A DVolumeWatcher.cpp83 int32 opcode = message->GetInt32("opcode", -1); local
84 if (opcode == B_DEVICE_MOUNTED) {
92 } else if (opcode == B_DEVICE_UNMOUNTED) {
H A DUtility.cpp24 IssueDeviceCommand(const char* path, int opcode, void* buffer, argument
39 if (ioctl(device, opcode, buffer, bufferSize) != 0) {
40 fprintf(stderr, "Failed to process %d on %s: %s\n", opcode, path,
/haiku/src/add-ons/input_server/devices/keyboard/
H A DKeyboardInputDevice.h36 status_t UpdateSettings(uint32 opcode = 0);
45 void _UpdateSettings(uint32 opcode);
47 status_t _EnqueueInlineInputMethod(int32 opcode,
H A DKeyboardInputDevice.cpp181 int32 opcode; local
182 if (message->FindInt32("be:opcode", &opcode) != B_OK)
185 if (opcode == B_INPUT_METHOD_STOPPED)
238 KeyboardDevice::UpdateSettings(uint32 opcode) argument
246 fSettingsCommand = opcode;
528 KeyboardDevice::_UpdateSettings(uint32 opcode) argument
532 if (opcode == 0 || opcode == B_KEY_REPEAT_RATE_CHANGED) {
541 if (opcode
582 _EnqueueInlineInputMethod(int32 opcode, const char* string, bool confirmed, BMessage* keyDown) argument
708 int32 opcode; local
[all...]
/haiku/src/add-ons/input_server/devices/serial_mouse/
H A DMouseInputDevice.h51 status_t InitFromSettings(void* cookie, uint32 opcode = 0);
/haiku/src/add-ons/kernel/generic/scsi_periph/
H A Dsync.cpp36 cmd->opcode = SCSI_OP_SYNCHRONIZE_CACHE;
/haiku/src/kits/bluetooth/
H A DCommandManager.cpp28 header->opcode = B_HOST_TO_LENDIAN_INT16(PACK_OPCODE(ogf, ocf));
657 BluetoothCommandOpcode(uint16 opcode) argument
665 switch (GET_OPCODE_OGF(opcode)) {
667 return linkControlCommands[GET_OPCODE_OCF(opcode) - 1];
671 return linkPolicyCommands[GET_OPCODE_OCF(opcode) - 1];
675 return controllerBasebandCommands[GET_OPCODE_OCF(opcode) - 1];
679 return informationalParametersCommands[GET_OPCODE_OCF(opcode) - 1];
683 return statusParametersCommands[GET_OPCODE_OCF(opcode) - 1];
687 return testingCommands[GET_OPCODE_OCF(opcode) - 1];
/haiku/headers/posix/arch/x86_64/
H A Dsignal.h30 unsigned short opcode; member in struct:fpu_state
/haiku/src/system/boot/loader/net/
H A DARP.cpp78 // do we support the opcode?
79 || (header->opcode != htons(ARPOP_REQUEST)
80 && header->opcode != htons(ARPOP_REPLY))) {
85 if (header->opcode == htons(ARPOP_REQUEST)
92 if (header->opcode == htons(ARPOP_REPLY)
105 if (header->opcode == htons(ARPOP_REQUEST)) {
165 ARPService::_SendARPPacket(ip_addr_t ip, const mac_addr_t &mac, uint16 opcode) argument
174 header.opcode = htons(opcode);
/haiku/src/kits/debugger/target_host_interface/local/
H A DLocalTargetHostInterface.cpp286 int32 opcode = 0; local
287 if (message.FindInt32("opcode", &opcode) != B_OK)
294 error = interface->_HandleTeamEvent(team, opcode,
298 if (opcode == B_TEAM_CREATED && addToWaiters) {
312 LocalTargetHostInterface::_HandleTeamEvent(team_id team, int32 opcode, argument
317 switch (opcode) {
343 if (opcode == B_TEAM_CREATED)
/haiku/src/tests/system/libroot/os/
H A Dsystem_watching_test.cpp135 // get opcode
136 int32 opcode = 0; local
137 if (message.FindInt32("opcode", &opcode) != B_OK)
138 fprintf(stderr, "Failed to get message opcode!\n");
140 switch (opcode) {
210 fprintf(stderr, "Unknown opcode!\n");
/haiku/src/servers/net/
H A DAutoconfigLooper.cpp146 int32 opcode; local
165 if (device != fDevice || message->FindInt32("opcode", &opcode) != B_OK)
168 switch (opcode) {
/haiku/headers/private/drivers/
H A Dscsi_cmds.h224 uint8 opcode; member in struct:scsi_cmd_inquiry
403 uint8 opcode; member in struct:scsi_cmd_read_capacity
426 uint8 opcode; member in struct:scsi_cmd_read_capacity_long
466 uint8 opcode; member in struct:scsi_cmd_rw_6
481 uint8 opcode; member in struct:scsi_cmd_rw_10
499 uint8 opcode; member in struct:scsi_cmd_rw_12
517 uint8 opcode; member in struct:scsi_cmd_rw_16
540 uint8 opcode; member in struct:scsi_cmd_wsame_10
562 uint8 opcode; member in struct:scsi_cmd_wsame_16
584 uint8 opcode; member in struct:scsi_cmd_unmap
615 uint8 opcode; member in struct:scsi_cmd_request_sense
711 uint8 opcode; member in struct:scsi_cmd_prevent_allow
727 uint8 opcode; member in struct:scsi_cmd_ssu
746 uint8 opcode; member in struct:scsi_cmd_mode_select_6
762 uint8 opcode; member in struct:scsi_cmd_mode_sense_6
782 uint8 opcode; member in struct:scsi_cmd_mode_select_10
798 uint8 opcode; member in struct:scsi_cmd_mode_sense_10
945 uint8 opcode; member in struct:scsi_cmd_tur
958 uint8 opcode; member in struct:scsi_cmd_read_toc
1056 uint8 opcode; member in struct:scsi_cmd_read_subchannel
1121 uint8 opcode; member in struct:scsi_cmd_play_msf
1140 uint8 opcode; member in struct:scsi_cmd_stop_play
1153 uint8 opcode; member in struct:scsi_cmd_pause_resume
1170 uint8 opcode; member in struct:scsi_cmd_scan
1202 uint8 opcode; member in struct:scsi_cmd_read_cd
1256 uint8 opcode; member in struct:scsi_cmd_sync_cache
[all...]

Completed in 124 milliseconds

123456