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

1234567891011

/haiku-fatelf/src/kits/device/
H A DUSBRoster.cpp223 int32 opcode; local
224 if (message->FindInt32("opcode", &opcode) < B_OK)
227 switch (opcode) {
/haiku-fatelf/src/kits/network/libbind/resolv/
H A Dres_debug.c155 ns_opcode opcode; local
171 opcode = (ns_opcode) ns_msg_getflag(*handle, ns_f_opcode);
185 p_section(section, opcode));
280 u_int opcode, rcode, id; local
286 opcode = ns_msg_getflag(handle, ns_f_opcode);
299 ";; ->>HEADER<<- opcode: %s, status: %s, id: %d\n",
300 _res_opcodes[opcode], p_rcode(rcode), id);
324 p_section(ns_s_qd, opcode), qdcount);
326 p_section(ns_s_an, opcode), ancount);
328 p_section(ns_s_ns, opcode), nscoun
629 p_section(int section, int opcode) argument
[all...]
/haiku-fatelf/src/kits/storage/
H A DNodeMonitorHandler.cpp49 int32 opcode; local
50 if (msg->FindInt32("opcode", &opcode) == B_OK) {
51 switch (opcode) {
/haiku-fatelf/src/servers/bluetooth/
H A DDeviceManager.cpp29 int32 opcode; local
30 if (msg->FindInt32("opcode", &opcode) == B_OK) {
31 switch (opcode) {
136 msg.AddInt32("opcode", B_ENTRY_REMOVED);
154 msg->AddInt32("opcode", B_ENTRY_CREATED);
/haiku-fatelf/src/servers/midi/
H A DDeviceWatcher.cpp149 int32 opcode;
150 if (message->FindInt32("opcode", &opcode) != B_OK)
159 switch (opcode) {
/haiku-fatelf/src/system/boot/loader/net/
H A DiSCSITarget.cpp185 cmd.opcode = SCSI_OP_READ_CAPACITY;
224 cmd.opcode = SCSI_OP_READ_16;
422 TRACE("response: opcode = %x, status class = %u, status detail = %u, transit = %u, data length = %lu\n",
423 resp.opcode, resp.statusClass, resp.statusDetail, resp.transit, resp.dataSegmentLength);
484 TRACE("response: opcode = %x, response = %u\n",
485 resp.opcode, resp.response);
540 TRACE("response: opcode = %x\n",
541 resp.opcode);
560 if (resp.opcode != ISCSI_OPCODE_TEXT_RESPONSE) {
561 PANIC("response opcode unexpecte
[all...]
/haiku-fatelf/src/servers/cddb_daemon/
H A Dcddb_daemon.cpp60 int32 opcode; local
61 if (message->FindInt32("opcode", &opcode) == B_OK) {
62 if (opcode == B_DEVICE_MOUNTED) {
/haiku-fatelf/src/add-ons/input_server/devices/tablet/
H A DTabletInputDevice.cpp516 int32 opcode; local
517 if (message->FindInt32("opcode", &opcode) != B_OK
518 || (opcode != B_ENTRY_CREATED && opcode != B_ENTRY_REMOVED)
522 if (opcode == B_ENTRY_CREATED)
/haiku-fatelf/src/bin/gdb/gdb/
H A Df-exp.y144 enum exp_opcode opcode;
204 %token <opcode> ASSIGN_MODIFY
786 enum exp_opcode opcode;
964 yylval.opcode = dot_ops[i].opcode;
1122 yylval.opcode = f77_keywords[i].opcode;
H A Dparser-defs.h228 enum exp_opcode opcode;
227 enum exp_opcode opcode; member in struct:op_print
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dh8300-dis.c23 #include "opcode/h8300.h"
31 const struct h8_opcode *opcode; member in struct:h8_instruction
91 pi->opcode = p;
96 pi->opcode = p;
367 /* Find the first entry in the table for this opcode. */
397 /* Find the exact opcode/arg combo. */
398 for (qi = h8_instructions; qi->opcode->name; qi++)
400 const struct h8_opcode *q = qi->opcode;
715 if (strcmp (qi->opcode->name, "adds") == 0
716 || strcmp (qi->opcode
[all...]
H A Dia64-gen.c1 /* ia64-gen.c -- Generate a shrunk set of opcode tables
22 /* While the ia64-opc-* set of opcode tables are easy to maintain,
28 branching based on the bits of the opcode being disassembled. The
61 /* The main opcode table entry. Each entry is a unique combination of
66 /* The base name of this opcode. The names of its completers are
69 /* The base opcode entry. Which one to use is a fairly arbitrary choice;
71 struct ia64_opcode *opcode; member in struct:main_entry
72 /* The list of completers that can be applied to this opcode. */
84 /* The set of possible completers for an opcode. */
97 opcode)
[all...]
/haiku-fatelf/src/bin/gdb/include/opcode/
H A Dcgen.h864 format. Each insn's opcode table entry contains a format table entry.
866 so one can reduce the size of the opcode table by recording the format table
910 (opcode & mask) == value. */
924 /* The opcode portion of the base insn. */
928 /* Extra opcode values beyond base_value. */
933 /* Instruction opcode table.
936 /* ??? Some ports already have an opcode table yet still need to use the rest
937 of what cgen_insn has. Plus keeping the opcode data with the operand
958 /* Instruction opcode value. */
1048 const CGEN_OPCODE *opcode;
1034 const CGEN_OPCODE *opcode; member in struct:cgen_insn
[all...]
H A Da29k.h25 unsigned long opcode; member in struct:a29k_opcode
/haiku-fatelf/src/tests/kits/storage/
H A DVolumeTest.cpp538 int32 opcode; local
542 CHK(message.FindInt32("opcode", &opcode) == B_OK);
546 CHK(opcode == B_DEVICE_MOUNTED);
552 int32 opcode; local
554 CHK(message.FindInt32("opcode", &opcode) == B_OK);
556 CHK(opcode == B_DEVICE_UNMOUNTED);
/haiku-fatelf/src/add-ons/kernel/bus_managers/ata/
H A DATADevice.cpp295 request->SetIsWrite(command->opcode == SCSI_OP_WRITE_6);
307 request->SetIsWrite(command->opcode == SCSI_OP_WRITE_10);
324 request->SetIsWrite(command->opcode == SCSI_OP_WRITE_12);
341 request->SetIsWrite(command->opcode == SCSI_OP_WRITE_16);
373 ATADevice::Control(uint32 opcode, void *buffer, size_t length) argument
375 if (opcode == B_GET_DEVICE_NAME) {
/haiku-fatelf/src/add-ons/input_server/methods/canna/
H A DCannaLooper.cpp142 uint32 opcode, result; local
143 msg->FindInt32("be:opcode", (int32*)&opcode);
145 switch (opcode) {
262 msg->AddInt32("be:opcode", B_INPUT_METHOD_LOCATION_REQUEST);
322 msg->AddInt32("be:opcode", B_INPUT_METHOD_CHANGED);
346 msg->AddInt32("be:opcode", B_INPUT_METHOD_CHANGED);
376 msg->AddInt32("be:opcode", B_INPUT_METHOD_CHANGED);
475 msg->AddInt32("be:opcode", B_INPUT_METHOD_STOPPED);
486 msg->AddInt32("be:opcode", B_INPUT_METHOD_STARTE
[all...]
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Dserdrv.c625 static int SerialIoctl(const int opcode, void *args) { argument
630 printf( "SerialIoctl: op %d arg %p\n", opcode, args ? args : "<NULL>");
633 switch (opcode)
H A Dserpardr.c684 static int SerparIoctl(const int opcode, void *args) argument
689 printf("SerparIoctl: op %d arg %p\n", opcode, args ? args : "<NULL>");
692 switch (opcode)
/haiku-fatelf/src/servers/index/
H A DIndexServer.cpp35 int32 opcode; local
36 message->FindInt32("opcode", &opcode) ;
37 switch (opcode) {
/haiku-fatelf/src/apps/people/
H A DPersonWindow.cpp230 int32 opcode; local
231 if (msg->FindInt32("opcode", &opcode) == B_OK) {
232 switch (opcode) {
/haiku-fatelf/src/tests/kits/net/preflet/InterfacesAddOn/
H A DInterfacesListView.cpp435 int32 opcode; local
439 if (message->FindInt32("opcode", &opcode) != B_OK)
453 switch (opcode) {
/haiku-fatelf/headers/os/bluetooth/HCI/
H A DbtHCI.h23 const char* BluetoothCommandOpcode(uint16 opcode);
/haiku-fatelf/src/add-ons/kernel/busses/scsi/buslogic/
H A Dbuslogic.h48 uchar opcode; /* operation code - see CCB_OP_* below */ member in struct:_bl_ccb32
/haiku-fatelf/src/apps/mail/
H A DEnclosures.cpp318 int32 opcode; local
319 if (msg->FindInt32("opcode", &opcode) == B_NO_ERROR)
335 if (opcode == B_ENTRY_REMOVED)
344 else if (opcode == B_ENTRY_MOVED)

Completed in 142 milliseconds

1234567891011