Searched refs:command (Results 176 - 200 of 320) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/generic/ata_adapter/
H A Data_adapter.cpp244 uint8 command; local
279 command = pci->read_io_8(device, channel->bus_master_base
282 command &= ~ATA_BM_COMMAND_READ_FROM_DEVICE;
284 command |= ATA_BM_COMMAND_READ_FROM_DEVICE;
287 command);
298 uint8 command; local
300 command = pci->read_io_8(device, channel->bus_master_base
303 command |= ATA_BM_COMMAND_START_STOP;
308 command);
319 uint8 command; local
[all...]
/haiku/src/add-ons/kernel/drivers/disk/virtual/remote_disk/
H A DRemoteDisk.cpp123 request.command = REMOTE_DISK_HELLO_REQUEST;
197 request.command = REMOTE_DISK_READ_REQUEST;
252 request->command = REMOTE_DISK_WRITE_REQUEST;
352 if (header->command != REMOTE_DISK_READ_REPLY)
441 && reply->command == expectedReply) {
/haiku/src/apps/terminal/
H A DAppearPrefView.cpp344 AppearancePrefView::_MakeFontMenu(uint32 command, argument
360 BMessage* message = new BMessage(command);
390 AppearancePrefView::_MakeFontSizeMenu(const char* label, uint32 command, argument
406 BMessage* message = new BMessage(command);
421 BMessage* message = new BMessage(command);
/haiku/src/add-ons/kernel/busses/ata/silicon_image_3112/
H A Dsilicon_image_3112.c625 // The data port is only 8 bit wide in the command register block.
653 // The data port is only 8 bit wide in the command register block.
680 uint8 command; local
715 command = *channel->bm_command_reg;
717 command &= ~ATA_BM_COMMAND_READ_FROM_DEVICE;
719 command |= ATA_BM_COMMAND_READ_FROM_DEVICE;
721 *channel->bm_command_reg = command;
735 uint8 command; local
739 command = *channel->bm_command_reg | ATA_BM_COMMAND_START_STOP;
741 *channel->bm_command_reg = command;
755 uint8 command; local
[all...]
/haiku/src/apps/icon-o-matic/shape/
H A DPathManipulator.cpp649 Command* command = NULL; local
654 command = fAddPointCommand;
660 command = fInsertPointCommand;
666 // command = new SelectPointsCommand(this, fPath,
683 command = fChangePointCommand;
695 // command = new SelectPointsCommand(this, fPath,
702 command = _FinishNudging();
707 return command;
1370 Command* command = NULL; local
1378 // command
1730 Command* command; local
[all...]
/haiku/src/add-ons/input_server/devices/mouse/
H A DMouseInputDevice.cpp775 uint32 command, BMessage* message)
777 TRACE("%s(%s, code: %lu)\n", __PRETTY_FUNCTION__, name, command);
781 if (command == B_NODE_MONITOR)
784 if (command == B_SET_TOUCHPAD_SETTINGS)
787 if (command >= B_MOUSE_TYPE_CHANGED
788 && command <= B_MOUSE_ACCELERATION_CHANGED)
774 Control(const char* name, void* cookie, uint32 command, BMessage* message) argument
/haiku/src/add-ons/input_server/devices/keyboard/
H A DKeyboardInputDevice.cpp685 uint32 command, BMessage* message)
689 command);
691 if (command == B_NODE_MONITOR)
693 else if (command >= B_KEY_MAP_CHANGED
694 && command <= B_KEY_REPEAT_RATE_CHANGED) {
696 device->UpdateSettings(command);
684 Control(const char* name, void* cookie, uint32 command, BMessage* message) argument
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DKeyCommandMap.cpp267 BString command; local
268 if (message.FindString("command", &command) == B_OK) {
276 if (command.StartsWith(paths.StringAt(i))) {
/haiku/src/apps/serialconnect/libvterm/include/
H A Dvterm.h167 int (*csi)(const char *leader, const long args[], int argcount, const char *intermed, char command, void *user);
168 int (*osc)(const char *command, size_t cmdlen, void *user);
169 int (*dcs)(const char *command, size_t cmdlen, void *user);
/haiku/src/apps/serialconnect/libvterm/src/
H A Dparser.c19 static void do_string_csi(VTerm *vt, const char *args, size_t arglen, char command) argument
100 if((*vt->parser_callbacks->csi)(leaderlen ? leader : NULL, csi_args, argcount, intermedlen ? intermed : NULL, command, vt->cbdata))
103 fprintf(stderr, "libvterm: Unhandled CSI %.*s %c\n", (int)arglen, args, command);
279 /* +1 to pos because we want to include this command byte as well */
294 /* +1 to pos because we want to include this command byte as well */
/haiku/src/add-ons/input_server/devices/easypen/
H A DEasyPenInputDevice.cpp127 serial->Write("z9", 2); // 8 data bits,odd parity <command> z 9
128 serial->Write("", 1); // Reset <command> NUL
129 serial->Write("DP", 2); // mode command D trigger command P
132 serial->Write("twP", 3); // Self-Test, Send Test Results, trigger command P
204 uint32 command, BMessage *message)
206 LOG("%s(%s, code: %lu)\n", __PRETTY_FUNCTION__, name, command);
208 if (command == B_CLICK_SPEED_CHANGED)
203 Control(const char *name, void *cookie, uint32 command, BMessage *message) argument
/haiku/src/add-ons/accelerants/intel_extreme/
H A Dengine.cpp43 // make sure the command is properly aligned
61 QueueCommands::Put(struct command &command, size_t size) argument
64 uint32 *data = command.Data();
/haiku/headers/os/device/
H A Dscsi.h153 uint8 command[16]; member in struct:__anon202
/haiku/headers/private/kernel/boot/net/
H A DiSCSITarget.h39 status_t SendCommand(const void* command, size_t commandSize,
/haiku/src/add-ons/kernel/busses/scsi/53c8xx/
H A Dsymbios.h81 SymInd command; /* 76 */ member in struct:__anon1391
/haiku/src/tests/kits/storage/
H A DBasicTest.h33 static void execCommand(const string &command);
/haiku/src/preferences/shortcuts/
H A DShortcutsSpec.cpp174 if (from->FindString("command", &temp) != B_NO_ERROR) {
176 printf(" Error, no command string in archive BMessage!\n");
200 ShortcutsSpec::SetCommand(const char* command) argument
204 fCommandLen = strlen(command) + 1;
207 strcpy(fCommand, command);
208 SetField(new BStringField(command), STRING_COLUMN_INDEX);
229 into->AddString("command", fCommand);
528 // Make sure we have enough room in our command string
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A Dagp.c144 agp_list_active(ai.interface.command | (ai.interface.status & AGP_3_MODE));
/haiku/src/add-ons/input_server/devices/tablet/
H A DTabletInputDevice.cpp503 uint32 command, BMessage* message)
505 TRACE("%s(%s, code: %lu)\n", __PRETTY_FUNCTION__, name, command);
509 if (command == B_NODE_MONITOR)
512 if (command == B_CLICK_SPEED_CHANGED)
502 Control(const char* name, void* cookie, uint32 command, BMessage* message) argument
/haiku/src/apps/charactermap/
H A DCharacterView.h19 void SetTarget(BMessenger target, uint32 command);
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Ddebug.cpp37 print_debugger_command_usage(const char* command) argument
/haiku/src/kits/media/
H A DMediaAddOn.cpp630 add_on_server_rescan_flavors_command command;
631 command.add_on_id = fAddon;
632 return SendToAddOnServer(ADD_ON_SERVER_RESCAN_ADD_ON_FLAVORS, &command,
633 sizeof(command));
/haiku/src/tests/kits/interface/picture/
H A DSVGViewView.cpp484 char command, prevCommand = 0; local
495 command = *ptr;
497 switch (command) {
554 if (command == 'C') {
593 if (command == 'Q') {
631 if (command == 'A') {
789 if (command == 'S') {
832 if (command == 'T') {
870 prevCommand = command;
/haiku/src/add-ons/kernel/busses/i2c/ocores/
H A Docores_i2c.h77 OcoresI2cRegsCommand command; member in union:OcoresI2cRegs::__anon5
/haiku/headers/private/kernel/platform/openfirmware/
H A Dopenfirmware.h79 extern intptr_t of_interpret(const char *command, intptr_t numArgs,

Completed in 819 milliseconds

1234567891011>>