Searched refs:command (Results 101 - 125 of 320) sorted by relevance

1234567891011>>

/haiku/src/kits/bluetooth/
H A DLocalDevice.cpp157 void* command = buildReadScan(&size); local
158 if (command == NULL)
163 request.AddData("raw command", B_ANY_TYPE, command, size);
193 void* command = buildWriteScan(mode, &size); local
195 if (command == NULL) {
199 request.AddData("raw command", B_ANY_TYPE, command, size);
236 void* command = buildReadBdAddr(&size); local
238 if (command
275 void* command = buildReadLocalName(&size); local
338 void* command = buildReadClassOfDevice(&size); local
[all...]
/haiku/src/add-ons/accelerants/radeon/
H A DCP.h88 // stores tag of last command in engine.count
103 // command - command code
113 // of bytes per command; the dword count as written into the first dword of the header
115 #define WRITE_IB_PACKET3_HEAD( command, count, bytes_left, dwords_per_block, dwords_in_header ) \
119 *buffer++ = command | (((sub_count * dwords_per_block) + dwords_in_header - 2) << 16);
/haiku/src/tools/fs_shell/
H A Dexternal_commands_beos.cpp39 fprintf(stderr, "Error: Failed to create command port: %s\n",
60 // get the len of the command
61 int commandLen = _message + bytesRead - message->command;
63 fprintf(stderr, "Error: No command given.\n");
71 // copy the command
72 memcpy(input, message->command, commandLen);
96 fprintf(stderr, "Error: Failed to send command result to reply "
H A Dfssh.h57 void AddCommand(Command* command);
/haiku/src/add-ons/kernel/bus_managers/mmc/
H A Dmmc_bus.h44 status_t ExecuteCommand(uint16_t rca, uint8_t command,
46 status_t DoIO(uint16_t rca, uint8_t command,
/haiku/src/apps/terminal/
H A DAppearPrefView.h58 static BMenu* _MakeFontMenu(uint32 command,
62 uint32 command,
H A DColorListView.cpp126 uint32 command = index == CurrentSelection() local
128 BMessage setColorMessage = BMessage(command);
131 if (command == MSG_SET_COLOR)
138 if (command == MSG_SET_COLOR) {
/haiku/src/apps/icon-o-matic/style/
H A DSetColorCommand.cpp82 SetColorCommand::CombineWithNext(const Command* command) argument
85 = dynamic_cast<const SetColorCommand*>(command);
H A DSetGradientCommand.cpp110 SetGradientCommand::CombineWithNext(const Command* command) argument
113 = dynamic_cast<const SetGradientCommand*>(command);
/haiku/src/apps/icon-o-matic/gui/
H A DStyleListView.cpp300 AddStylesCommand* command; local
310 new_style(color, fStyleContainer, &style, &command);
311 fCommandStack->Perform(command);
356 ResetTransformationCommand* command local
359 fCommandStack->Perform(command);
409 ::Command* command = new AssignStyleCommand( local
411 fCommandStack->Perform(command);
476 AddCommand<Style>* command = new(std::nothrow) AddCommand<Style>(
479 if (command == NULL) {
485 fCommandStack->Perform(command);
508 MoveStylesCommand* command = new (nothrow) MoveStylesCommand( local
534 AddCommand<Style>* command local
557 RemoveStylesCommand* command local
[all...]
H A DTransformerListView.cpp210 ::Command* command = new (nothrow) AddTransformersCommand( local
213 if (!command)
216 fCommandStack->Perform(command);
281 AddTransformersCommand* command = new(nothrow) AddTransformersCommand(
283 if (command == NULL) {
289 fCommandStack->Perform(command);
315 MoveTransformersCommand* command local
318 if (!command) {
323 fCommandStack->Perform(command);
346 RemoveTransformersCommand* command local
[all...]
/haiku/src/apps/deskbar/
H A DShowHideMenuItem.cpp127 uint32 command = B_QUIT_REQUESTED; local
132 command = 'Tall';
134 messenger.SendMessage(command);
/haiku/headers/posix/sys/
H A Dsem.h59 int semctl(int semID, int semNum, int command, ...);
/haiku/src/add-ons/input_server/devices/mouse/
H A DMouseInputDevice.h32 uint32 command, BMessage* message);
/haiku/src/add-ons/input_server/devices/tablet/
H A DTabletInputDevice.h33 uint32 command, BMessage* message);
/haiku/src/tests/kits/app/common/
H A DPipedAppRunner.cpp36 PipedAppRunner::Run(const char *command, const char *args, bool findCommand) argument
45 appPath += command;
49 command = appPath.String();
51 // add args, i.e. compose the command line
52 BString cmdLine(command);
57 // run the command
/haiku/headers/private/tracker/
H A DDirMenu.h48 BDirMenu(BMenuBar*, BMessenger target, uint32 command,
/haiku/src/bin/
H A Ddiskimage.cpp221 // Of the remaining arguments the next one should be the command.
226 const char* command = argv[optind++]; local
228 if (strcmp(command, "list") == 0) {
233 } else if (strcmp(command, "register") == 0) {
239 } else if (strcmp(command, "unregister") == 0) {
/haiku/src/preferences/appearance/
H A DColorWhichListView.cpp126 int32 command = index == CurrentSelection() local
128 BMessage setColorMessage = BMessage(command);
131 if (command == SET_COLOR)
138 if (command == SET_COLOR) {
/haiku/headers/os/app/
H A DMessenger.h42 status_t SendMessage(uint32 command,
52 status_t SendMessage(uint32 command,
/haiku/src/system/libroot/posix/glibc/libio/
H A Diopopen.c80 _IO_new_proc_open (fp, command, mode)
82 const char *command;
131 execl("/bin/sh", "sh", "-c", command, (char *)0);
162 _IO_new_popen (command, mode)
163 const char *command;
189 if (_IO_new_proc_open (fp, command, mode) != NULL)
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DParseCommandLine.cpp166 ParseArgvFromString(const char* command, int32& argc) argument
169 int length = strlen(command);
173 strcpy(cmd, command);
240 ParseArgvZeroFromString(const char* command) argument
245 int length = strlen(command);
249 strcpy(cmd, command);
/haiku/src/apps/debugger/user_interface/cli/
H A DCommandLineUserInterface.cpp42 CommandEntry(const BString& name, CliCommand* command) argument
45 fCommand(command)
71 CliCommand("print help for a command or a list of all commands",
72 "%s [ <command> ]\n"
73 "Prints help for command <command>, if given, or a list of all "
267 // read a command line
272 // parse the command line
279 printf("Insufficient memory parsing the command line.\n");
296 // execute command
341 _RegisterCommand(const BString& name, CliCommand* command) argument
[all...]
/haiku/src/add-ons/accelerants/radeon_hd/
H A Dencoder.cpp114 // Prepare AtomBIOS command arguments
481 encoder_tv_setup(uint32 connectorIndex, uint32 pixelClock, int command) argument
493 args.sTVEncoder.ucAction = command;
509 encoder_digital_setup(uint32 connectorIndex, uint32 pixelClock, int command) argument
539 ERROR("%s: cannot parse command table\n", __func__);
551 // Prepare AtomBIOS command arguments
568 args.v1.ucAction = command;
590 args.v2.ucAction = command;
649 encoder_dig_setup(uint32 connectorIndex, uint32 pixelClock, int command) argument
672 ERROR("%s: cannot parse command tabl
912 encoder_external_setup(uint32 connectorIndex, int command) argument
1082 encoder_analog_setup(uint32 connectorIndex, uint32 pixelClock, int command) argument
1275 transmitter_dig_setup(uint32 connectorIndex, uint32 pixelClock, uint8 laneNumber, uint8 laneSet, int command) argument
[all...]
/haiku/src/add-ons/kernel/busses/mmc/
H A Dsdhci.cpp95 // interrupt trigger on them (we get a "command complete" interrupt on
153 SdhciBus::ExecuteCommand(uint8_t command, uint32_t argument, uint32_t* response) argument
155 TRACE("ExecuteCommand(%d, %x)\n", command, argument);
160 // Check if it's possible to send a command right now.
161 // It is not possible to send a command as long as the command line is busy.
165 // Note that this should normally never happen: the command line is busy
166 // only during command execution, and we don't leave this function with ac
167 // command running.
169 panic("Command execution impossible, command inhibi
365 DoIO(uint8_t command, IOOperation* operation, bool offsetAsSectors) argument
778 execute_command(void* controller, uint8_t command, uint32_t argument, uint32_t* response) argument
787 do_io(void* controller, uint8_t command, IOOperation* operation, bool offsetAsSectors) argument
[all...]

Completed in 144 milliseconds

1234567891011>>