Searched refs:command (Results 51 - 75 of 320) sorted by relevance

1234567891011>>

/haiku/src/servers/registrar/
H A DMessageEvent.cpp60 command.
67 \param command The "what" field of the message to be sent.
69 MessageEvent::MessageEvent(bigtime_t time, BHandler* handler, uint32 command) argument
71 fMessage(command),
101 command.
105 \param command The "what" field of the message to be sent.
108 uint32 command)
110 fMessage(command),
107 MessageEvent(bigtime_t time, const BMessenger& messenger, uint32 command) argument
/haiku/headers/private/drivers/
H A Dmmc.h81 status_t (*execute_command)(void* controller, uint8_t command,
83 // Execute a command with no I/O phase
84 status_t (*do_io)(void* controller, uint8_t command,
86 // Execute a command that involves a data transfer.
102 uint8_t command, uint32_t argument, uint32_t* result);
103 // Execute a command with no I/O phase
105 uint8_t command, IOOperation* operation, bool offsetAsSectors);
106 // Execute a command that involves a data transfer.
/haiku/src/kits/shared/
H A DToolBar.cpp119 BToolBar::AddAction(uint32 command, BHandler* target, const BBitmap* icon, argument
122 AddAction(new BMessage(command), target, icon, toolTipText, text, lockable);
171 BToolBar::SetActionEnabled(uint32 command, bool enabled) argument
173 if (BButton* button = FindButton(command))
179 BToolBar::SetActionPressed(uint32 command, bool pressed) argument
181 if (BButton* button = FindButton(command))
187 BToolBar::SetActionVisible(uint32 command, bool visible) argument
189 BButton* button = FindButton(command);
202 BToolBar::FindButton(uint32 command) const
211 if (message->what == command) {
[all...]
/haiku/src/bin/pkgman/
H A Dpkgman.cpp27 "Usage: %s <command> <command args>\n"
37 " -h, --help - Print usage info for a specific command.\n"
47 for (int32 i = 0; Command* command = commands.ItemAt(i); i++)
48 commandsUsage << command->ShortUsage() << '\n';
79 const char* command = argv[1]; local
80 if (strcmp(command, "help") == 0)
84 CommandManager::Default()->GetCommands(command, commands);
/haiku/src/tests/servers/registrar/
H A DRosterShell.cpp47 string command = cmdLine[0]; local
48 if (command == "activate" || command == "a")
50 else if (command == "exit" || command == "e")
52 else if (command == "help" || command == "h")
54 else if (command == "launch")
56 else if (command == "list" || command
[all...]
/haiku/src/kits/interface/
H A DInterfaceDefs.cpp529 BMessage command(IS_GET_MOUSE_TYPE);
532 status_t err = _control_input_server_(&command, &reply);
542 BMessage command(IS_SET_MOUSE_TYPE);
545 status_t err = command.AddInt32("mouse_type", type);
548 return _control_input_server_(&command, &reply);
555 BMessage command(IS_GET_MOUSE_TYPE);
557 command.AddString("mouse_name", mouse_name);
559 status_t err = _control_input_server_(&command, &reply);
570 BMessage command(IS_SET_MOUSE_TYPE);
573 status_t err_mouse_name = command
[all...]
/haiku/src/bin/
H A Dwatch.c7 * handling, unlimited command length, long line handling) added Apr 1999 by
38 "Usage: %s [-dhntv] [--differences[=cumulative]] [--help] [--interval=<n>] [--no-title] [--version] <command>\n";
100 char *command; local
157 command = strdup(argv[optind++]);
158 command_length = strlen(command);
162 command = realloc(command, command_length + s + 2); /* space and \0 */
163 endp = command + command_length;
167 command[command_length] = '\0';
204 // left justify interval and command,
[all...]
H A Dlaunch_roster.cpp7 /*! The launch_daemon's companion command line tool. */
278 fprintf(stderr, "Usage: %s <command>\n"
279 "Where <command> is one of:\n"
280 " list - Lists all jobs (the default command)\n"
282 "The following <command>s have a <name> argument:\n"
296 const char* command = "list"; local
317 command = argv[optind];
319 if (strcmp(command, "list") == 0) {
321 } else if (strcmp(command, "list-targets") == 0) {
323 } else if (strcmp(command, "lo
[all...]
/haiku/src/tests/kits/storage/testapps/
H A Dclipboard.cpp30 // command line args
125 const char *command = NULL; local
140 command = arg;
146 if (!command)
170 // execute the command
172 if (strcmp(command, "clear") == 0) {
177 } else if (strcmp(command, "dump") == 0) {
183 } else if (strcmp(command, "set") == 0) {
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dtransform_procs.c26 /*! Transforms a 6-byte command to 10-byte one if required. Transformed command
30 \param cmd: SCSI command buffer to be transformed
32 \param rcmd: a place for buffer pointer with transformed command
33 \param rlen: a place for length of transformed command
86 /*! Transforms a 6-byte command to 10-byte depending on information provided
90 \param cmd: SCSI command buffer to be transformed
92 \param rcmd: a place for buffer pointer with transformed command
93 \param rlen: a place for length of transformed command
128 /*! Transforms a TEST_UNIT_COMAND SCSI command t
142 scsi_cmd_start_stop_unit *command = (scsi_cmd_start_stop_unit *)(*rcmd); local
177 scsi_cmd_generic *command = (scsi_cmd_generic *)cmd; local
226 scsi_cmd_generic *command = (scsi_cmd_generic *)cmd; local
290 scsi_cmd_generic *command = (scsi_cmd_generic *)cmd; local
361 scsi_cmd_generic *command = (scsi_cmd_generic *)cmd; local
459 scsi_cmd_generic *command = (scsi_cmd_generic *)cmd; local
[all...]
/haiku/src/apps/icon-o-matic/gui/
H A DPathListView.cpp350 ::Command* command; local
352 command = new UnassignPathCommand(fCurrentShape, path);
356 command = new AddPathsCommand(fCurrentShape->Paths(),
359 fCommandStack->Perform(command);
376 AddPathsCommand* command; local
377 new_path(fPathContainer, &path, &command);
378 fCommandStack->Perform(command);
385 AddPathsCommand* command; local
386 new_path(fPathContainer, &path, &command);
394 fCommandStack->Perform(command);
402 AddPathsCommand* command; local
443 AddPathsCommand* command; local
456 ReversePathCommand* command local
469 CleanUpPathCommand* command local
483 RotatePathIndicesCommand* command local
586 MovePathsCommand* command = new (nothrow) MovePathsCommand(fPathContainer, local
612 AddPathsCommand* command = new(nothrow) AddPathsCommand(fPathContainer, local
635 RemovePathsCommand* command = new (nothrow) RemovePathsCommand( local
[all...]
/haiku/src/apps/icon-o-matic/generic/listener/
H A DAbstractLOAdapter.cpp55 AbstractLOAdapter::DeliverMessage(uint32 command) argument
57 BMessage message(command);
H A DAbstractLOAdapter.h34 void DeliverMessage(uint32 command);
/haiku/src/apps/mediaplayer/support/
H A DAbstractLOAdapter.cpp55 AbstractLOAdapter::DeliverMessage(uint32 command) argument
57 BMessage message(command);
H A DAbstractLOAdapter.h34 void DeliverMessage(uint32 command);
H A DMessageEvent.h25 uint32 command = MSG_EVENT);
/haiku/src/libs/icon/flat_icon/
H A DPathCommandQueue.h46 bool _AppendCommand(uint8 command);
49 bool _ReadCommand(uint8& command);
/haiku/src/tools/fs_shell/
H A Dfs_shell_command_unix.cpp19 send_external_command(const char* command, int* result) argument
24 fprintf(stderr, "Error: Failed to open command output: %s\n",
32 fprintf(stderr, "Error: Failed to open command reply input: %s\n",
37 // write the command
38 if (fputs(command, out) == EOF || fputc('\n', out) == EOF
40 fprintf(stderr, "Error: Failed to write command to FS shell: %s\n",
48 fprintf(stderr, "Error: Failed to get command reply: %s\n",
57 fprintf(stderr, "Error: Read non-number command reply from FS shell: "
/haiku/src/system/libroot/posix/sys/
H A Dxsi_msg_queue.cpp25 msgctl(int messageQueueID, int command, struct msqid_ds *buffer) argument
27 RETURN_AND_SET_ERRNO(_kern_xsi_msgctl(messageQueueID, command, buffer));
/haiku/headers/private/kernel/posix/
H A Dxsi_message_queue.h21 int _user_xsi_msgctl(int messageQueueID, int command, struct msqid_ds *buffer);
/haiku/headers/private/userlandfs/private/
H A Duserlandfs_ioctl.h8 // the ioctl command we use for tunnelling our commands
45 int command; member in struct:UserlandFSUtil::userlandfs_ioctl
/haiku/headers/private/kernel/
H A DMessagingServiceDefs.h31 uint32 command; member in struct:messaging_command
/haiku/src/add-ons/input_server/devices/virtualkeyboard/
H A DVirtualKeyboardInputDevice.h23 uint32 command, BMessage* message);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DProtocol.h78 status_t SendCommand(const char* command);
79 status_t SendCommand(int32 id, const char* command);
82 status_t ProcessCommand(Command& command,
91 status_t HandleResponse(Command* command,
/haiku/src/bin/multiuser/
H A Dsu.cpp35 fprintf(stderr, "usage: %s [-pl] [-c command] [username]\n", kProgramName);
44 const char* command = NULL; local
54 command = optarg;
111 if (command != NULL) {
113 args[nextarg++] = command;

Completed in 111 milliseconds

1234567891011>>