Searched refs:commandLine (Results 1 - 9 of 9) sorted by relevance

/haiku/src/kits/shared/
H A DArgumentVector.cpp17 ParseError Parse(const char* commandLine, const char*& _errorLocation) argument
25 for (; *commandLine; commandLine++) {
26 char c = *commandLine;
34 const char* errorBase = commandLine;
39 while (*++commandLine != '\'') {
40 c = *commandLine;
51 while (*++commandLine != '"') {
52 c = *commandLine;
59 c = *++commandLine;
162 Parse(const char* commandLine, const char** _errorLocation) argument
[all...]
/haiku/src/apps/terminal/
H A DHyperLink.cpp50 BString commandLine; local
51 commandLine.SetToFormat("/bin/open %s", address.String());
52 return system(commandLine) == 0 ? B_OK : errno;
/haiku/headers/private/shared/
H A DArgumentVector.h35 ParseError Parse(const char* commandLine,
/haiku/src/tests/servers/registrar/
H A Dmessage_deliverer_test.cpp176 BString commandLine(path.Path());
177 commandLine << " broadcast";
178 if (system(commandLine.String()) < 0) {
/haiku/src/servers/package/
H A DCommitTransactionHandler.cpp743 std::string commandLine("groupadd ");
744 commandLine += FSUtils::ShellEscapeString(groupName).String();
746 if (system(commandLine.c_str()) != 0) {
771 std::string commandLine("useradd ");
774 commandLine += std::string("-n ")
779 commandLine += std::string("-d ")
784 commandLine += std::string("-s ")
789 commandLine += std::string("-g ")
794 commandLine += FSUtils::ShellEscapeString(user.Name()).String();
796 if (system(commandLine
[all...]
H A DFSUtils.cpp215 std::string commandLine = std::string("package extract -C ") local
221 if (system(commandLine.c_str()) != 0)
/haiku/src/tools/fs_shell/
H A Dfssh.cpp1396 bool Parse(const char* commandLine) argument
1408 for (; *commandLine; commandLine++) {
1409 char c = *commandLine;
1420 while (*++commandLine != '\'') {
1421 c = *commandLine;
1433 while (*++commandLine != '"') {
1434 c = *commandLine;
1442 c = *++commandLine;
1461 c = *++commandLine;
[all...]
/haiku/src/system/kernel/arch/x86/
H A Darch_debug.cpp993 const char* commandLine = argv[1]; local
995 if (parse_next_debug_command_argument(&commandLine, threadIDString,
1001 if (commandLine == NULL) {
1032 evaluate_debug_command(commandLine);
/haiku/src/system/kernel/debug/
H A Ddebug_parser.cpp27 commandLine := ( commandPipe [ ";" commandLine ] ) | assignment
43 argument := ( "(" expression ")" ) | ( "[" commandLine "]" )
1198 evaluate_debug_command(const char* commandLine) argument
1211 ExpressionParser().EvaluateCommand(commandLine, returnCode);
1215 sExceptionMessage, sExceptionPosition, commandLine);

Completed in 191 milliseconds