Searched refs:command (Results 76 - 100 of 320) sorted by relevance

1234567891011>>

/haiku/src/servers/registrar/
H A DMessagingService.h18 virtual void HandleMessagingCommand(uint32 command, const void *data,
69 void SetCommandHandler(uint32 command, MessagingCommandHandler *handler);
72 MessagingCommandHandler *_GetCommandHandler(uint32 command) const;
/haiku/src/add-ons/kernel/busses/scsi/ahci/
H A Dsata_request.h21 void SetATACommand(uint8 command);
22 void SetATA28Command(uint8 command, uint32 lba,
24 void SetATA48Command(uint8 command, uint64 lba,
H A Dsata_request.cpp57 sata_request::SetATACommand(uint8 command) argument
62 // This is a command
63 fFis[2] = command;
68 sata_request::SetATA28Command(uint8 command, uint32 lba, uint8 sectorCount) argument
70 SetATACommand(command);
81 sata_request::SetATA48Command(uint8 command, uint64 lba, uint16 sectorCount) argument
83 SetATACommand(command);
129 dprintf("ahci: sata_request::finish ATA command 0x%02x failed:"
184 dprintf("ahci: sata_request::abort called for command 0x%02x\n", fFis[2]);
/haiku/src/system/libroot/posix/unistd/
H A Dsystem.cpp20 system(const char *command) argument
22 if (!command)
25 const char *argv[] = { "/bin/sh", "-c", command, NULL };
/haiku/src/add-ons/kernel/bus_managers/agp_gart/
H A Dagp_gart.cpp18 in the status and command registers. Currently programming zero's which will
192 fix_rate_support(uint32 command) argument
194 if ((command & AGP_3_MODE) != 0) {
195 if ((command & AGP_3_8x) != 0)
196 command |= AGP_3_4x;
198 command &= ~AGP_RATE_MASK | AGP_3_8x | AGP_3_4x;
199 command |= AGP_SBA;
203 if ((command & AGP_2_4x) != 0)
204 command |= AGP_2_2x;
205 if ((command
215 fix_rate_command(uint32 command) argument
236 check_capabilities(agp_device_info &deviceInfo, uint32 &command) argument
352 set_agp_command(agp_device_info &deviceInfo, uint32 command) argument
889 set_agp_mode(uint32 command) argument
[all...]
/haiku/headers/private/drivers/
H A Data_types.h14 // contains the command block interpreted under different conditions with
15 // first byte being first command register, second byte second command register
32 uint8 command; member in struct:ata_task_file::__anon91
45 uint8 command; member in struct:ata_task_file::__anon92
68 uint8 command; member in struct:ata_task_file::__anon93
120 uint8 command; member in struct:ata_task_file::__anon95
134 uint8 command; member in struct:ata_task_file::__anon96
160 uint8 command; member in struct:ata_task_file::__anon97
179 uint8 command; member in struct:ata_task_file::__anon99
[all...]
/haiku/src/libs/icon/flat_icon/
H A DPathCommandQueue.cpp105 // we read the command buffer and then use the
108 // read command buffer
116 uint8 command; local
117 if (!_ReadCommand(command))
124 switch (command) {
212 PathCommandQueue::_AppendCommand(uint8 command) argument
214 // NOTE: a path command uses 2 bits, so 4 of
216 // after we have appended the fourth command,
226 fCommandByte |= command << fCommandPos;
243 PathCommandQueue::_ReadCommand(uint8& command) argument
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/stateview/
H A DStateView.cpp168 Command* command = NULL;
169 if (fCurrentState->MessageReceived(message, &command)) {
170 Perform(command);
407 // (central place to prevent command stack mix up)
419 Command* command = NULL; local
420 if (fCurrentState->HandleKeyDown(key, modifiers, &command)) {
421 Perform(command);
433 // (central place to prevent command stack mix up)
445 Command* command = NULL; local
446 if (fCurrentState->HandleKeyUp(key, modifiers, &command)) {
483 SetUpdateTarget(BHandler* target, uint32 command) argument
506 Perform(Command* command) argument
[all...]
/haiku/src/system/kernel/debug/
H A Ddebug_builtin_commands.cpp43 debugger_command *command, *specified = NULL; local
57 // only print out the help of the specified command (and all of its aliases)
58 kprintf("debugger command for \"%s\" and aliases:\n", specified->name);
64 for (command = get_debugger_commands(); command != NULL;
65 command = command->next) {
66 if (specified && command->func != specified->func)
68 if (start != NULL && strncmp(start, command->name, startLength))
71 kprintf(" %-20s\t\t%s\n", command
[all...]
/haiku/src/kits/media/
H A DMediaNode.cpp593 const node_start_command* command local
597 Start(command->performance_time);
603 const node_stop_command* command local
607 Stop(command->performance_time, command->immediate);
613 const node_seek_command* command local
617 Seek(command->media_time, command->performance_time);
623 const node_set_run_mode_command* command local
628 fRunMode = command
635 const node_time_warp_command* command local
653 const node_roll_command* command local
690 const node_set_timesource_command* command local
773 const node_request_completed_command* command local
[all...]
/haiku/src/kits/bluetooth/UI/
H A DPincodeWindow.cpp155 void* command = buildPinCodeRequestReply(fBdaddr, local
159 if (command == NULL) {
164 request.AddData("raw command", B_ANY_TYPE, command, size);
186 void* command = buildPinCodeRequestNegativeReply(fBdaddr, &size); local
188 if (command == NULL) {
193 request.AddData("raw command", B_ANY_TYPE, command, size);
/haiku/src/add-ons/translators/rtf/
H A DRTF.cpp112 } else if (RTF::Command *command = dynamic_cast<RTF::Command *>(&element)) {
113 printf("<Command: %s", command->Name());
114 if (command->HasOption())
115 printf(", Option %" B_PRId32, command->Option());
370 if (Command *command = dynamic_cast<Command *>(element)) {
371 if (command != NULL && !strcmp(name, command->Name()))
372 return command;
389 Command *command = dynamic_cast<Command *>(group->ElementAt(0)); local
390 if (command !
401 Command *command = dynamic_cast<Command *>(ElementAt(0)); local
463 Command *command = new Command(); local
481 Command *command = dynamic_cast<Command *>(ElementAt(1)); local
838 Command(RTF::Command *command) argument
[all...]
/haiku/src/apps/remotedesktop/
H A DRemoteDesktop.cpp30 " [-h <height>] [-c <command>]\n", app);
36 printf("\t-c\t\tsend a command to the other computer (default Terminal)\n");
58 const char *command = NULL; local
110 command = argv[i];
118 if (command != NULL && !useSSH) {
126 if (command == NULL) {
136 command = terminalPath.Path();
142 command);
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dfake_device.c72 scsi_cmd_generic *command; local
78 command = (scsi_cmd_generic *)cmd;
79 switch(command->opcode){
/haiku/headers/private/kernel/posix/
H A Dxsi_semaphore.h31 int _user_xsi_semctl(int semaphoreID, int semaphoreNumber, int command,
/haiku/src/add-ons/input_server/devices/easypen/
H A DEasyPenInputDevice.h32 uint32 command, BMessage *message);
/haiku/src/add-ons/input_server/devices/serial_mouse/
H A DMouseInputDevice.h49 uint32 command, BMessage* message);
/haiku/src/tests/kits/app/common/
H A DPipedAppRunner.h16 status_t Run(const char *command, const char *args = NULL,
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DSettings.cpp235 Settings::GetIOCtlInfo(int command) const
237 return (fIOCtlInfos ? fIOCtlInfos->Get(command) : NULL);
252 ", write buffer size: %" B_PRId32 "\n", info->command,
270 int command = atoi(parameter->values[0]); local
271 if (command > 0) {
272 IOCtlInfo* info = fIOCtlInfos->Remove(command);
278 info->command = command;
285 error = fIOCtlInfos->Put(command, info);
/haiku/src/add-ons/kernel/bus_managers/ata/
H A DATAPIDevice.cpp33 uint8 command = fPacket[0]; local
35 && (command == SCSI_OP_READ_6 || command == SCSI_OP_WRITE_6
36 || command == SCSI_OP_READ_10 || command == SCSI_OP_WRITE_10
37 || command == SCSI_OP_READ_12 || command == SCSI_OP_WRITE_12
38 || command == SCSI_OP_READ_CD)
71 // make sure device really asks for command packet
154 TRACE_ERROR("device expecting command instea
[all...]
/haiku/src/system/kernel/messaging/
H A DMessagingService.cpp177 // find space for the command
180 // try to allocate after the last command
184 // is there enough space before the first command?
191 // command
197 // update the header and the last command
202 // init the command
203 BytePointer<messaging_command> command(fHeader);
204 command += commandOffset;
205 command->next_command = 0;
206 command
403 messaging_command_send_message *command local
[all...]
/haiku/src/add-ons/input_server/devices/virtio/
H A DVirtioInputDevice.h47 uint32 command, BMessage* message);
71 virtual status_t Control(uint32 command, BMessage* message);
94 virtual status_t Control(uint32 command, BMessage* message);
129 virtual status_t Control(uint32 command, BMessage* message);
/haiku/src/add-ons/kernel/bus_managers/mmc/
H A Dmmc_module.cpp82 uint8_t command, uint32_t argument, uint32_t* result)
89 status_t error = bus->ExecuteCommand(rca, command, argument, result);
97 mmc_bus_do_io(device_node* node, void* cookie, uint16_t rca, uint8_t command, argument
104 result = bus->DoIO(rca, command, operation, offsetAsSectors);
81 mmc_bus_execute_command(device_node* node, void* cookie, uint16_t rca, uint8_t command, uint32_t argument, uint32_t* result) argument
/haiku/src/add-ons/input_server/devices/virtualkeyboard/
H A DVirtualKeyboardInputDevice.cpp60 uint32 command, BMessage* message)
59 Control(const char* name, void* cookie, uint32 command, BMessage* message) argument
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPConnectionWorker.cpp76 status_t EnqueueCommand(WorkerCommand* command) argument
78 return fWorker._EnqueueCommand(command);
267 // Enqueue command to fetch the message bodies
406 // Add pending command to fetch the message headers
407 WorkerCommand* command = new FetchHeadersCommand(*fFolder, local
410 if (!fFetchCommands.AddItem(command))
411 delete command;
495 inline void operator()(WorkerCommand* command) argument
497 delete command;
507 CommandDeleter(IMAPConnectionWorker& worker, WorkerCommand* command) argument
734 WorkerCommand* command = fPendingCommands.RemoveItemAt(0); local
769 _EnqueueCommand(WorkerCommand* command) argument
[all...]

Completed in 127 milliseconds

1234567891011>>