HomeSort by relevance Sort by last modified time
    Searched defs:Argv (Results 1 - 25 of 26) sorted by null

1 2

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EbcDebuggerConfig.c 188 CHAR16 **Argv;
204 Argv = ShellParameters->Argv;
212 if ((StrCmp (Argv[1], L"/?") == 0) ||
213 (StrCmp (Argv[1], L"-?") == 0) ||
214 (StrCmp (Argv[1], L"-h") == 0) ||
215 (StrCmp (Argv[1], L"-H") == 0) ) {
231 if (StriCmp (Argv[1], L"SHOWINFO") == 0) {
237 ((StriCmp (Argv[1], L"BOC") == 0) ||
238 (StriCmp (Argv[1], L"BOCX") == 0) ||
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
ShellParameters.h 32 CHAR16 **Argv;
35 /// The number of elements in the Argv array.
  /device/linaro/bootloader/edk2/EmbeddedPkg/EblExternCmd/
EntryPointGlue.c 3 ASCII Argc, Argv sytle entry point
28 IN CHAR8 **Argv
34 /// into Argc, Argv form that calls EblMain().
39 Parse the CmdLine and break it up into Argc (arg count) and Argv (array of
41 converted to string terminators. This allows Argv to point into CmdLine.
48 @param Argv Argc pointers to each string in CmdLine
57 OUT CHAR8 **Argv
83 // Look for the beginning of an Argv[] entry
85 Argv[Arg++] = ++Char;
89 Argv[Arg++] = Char;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Include/Protocol/
EfiShellInterface.h 65 CHAR16 **Argv;
  /external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/
llvm-rtdyld.cpp 131 const char **Argv = new const char*[2];
132 // Use the name of the first input object module as argv[0] for the target.
133 Argv[0] = InputFileList[0].c_str();
134 Argv[1] = 0;
135 return Main(1, Argv);
138 int main(int argc, char **argv) {
139 ProgramName = argv[0];
142 cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n");
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/CapsuleApp/
AppSupport.c 36 CHAR16 **Argv;
62 Argv = ShellParameters->Argv;
  /device/linaro/bootloader/edk2/ShellPkg/Include/Library/
ShellCommandLib.h 398 CHAR16 **Argv; ///< The parmameters to the script file.
  /external/clang/lib/Driver/
Job.cpp 129 // This leaves us to set the argv to a single parameter, requesting the tool
233 SmallVector<const char*, 128> Argv;
236 Argv.push_back(Executable);
237 Argv.append(Arguments.begin(), Arguments.end());
238 Argv.push_back(nullptr);
240 return llvm::sys::ExecuteAndWait(Executable, Argv.data(), /*env*/ nullptr,
251 // Write file contents and build the Argv vector
253 buildArgvForResponseFile(Argv);
254 Argv.push_back(nullptr);
267 return llvm::sys::ExecuteAndWait(Executable, Argv.data(), /*env*/ nullptr
    [all...]
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 492 const char *Argv[] = { "1", "2" };
494 FixedCompilationDatabase::loadFromCommandLine(Argc, Argv));
501 const char *Argv[] = {
505 FixedCompilationDatabase::loadFromCommandLine(Argc, Argv));
522 const char *Argv[] = { "1", "2", "--\0no-constant-folding" };
524 FixedCompilationDatabase::loadFromCommandLine(Argc, Argv));
538 const char *Argv[] = {"1", "2", "--", "-c", "somefile.cpp", "-DDEF3"};
539 int Argc = sizeof(Argv) / sizeof(char*);
541 FixedCompilationDatabase::loadFromCommandLine(Argc, Argv));
557 const char *Argv[] = {"1", "2", "--", "mytool", "somefile.cpp"}
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceBrowserCompileServer.cpp 132 // CLArgs is almost an "argv", but is missing the argv[0] program name.
133 std::vector<const char *> Argv;
135 Argv.reserve(CLArgsLen + 1);
136 Argv.push_back(ProgramName);
142 Argv.push_back(CLArgs[i]);
146 Argv.emplace_back(Arg.c_str());
150 // NOTE: strings pointed to by argv are owned by the caller, but we parse
153 Argv.size(), Argv.data())
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Main.c 154 Parse the CmdLine and break it up into Argc (arg count) and Argv (array of
156 converted to string terminators. This allows Argv to point into CmdLine.
162 @param Argv Argc pointers to each string in CmdLine
170 OUT CHAR8 **Argv
198 // Look for the beginning of an Argv[] entry
200 Argv[Arg++] = ++Char;
204 Argv[Arg++] = Char;
208 // Looking for the terminator of an Argv[] entry
542 CHAR8 *Argv[MAX_ARGS];
546 Ptr = ParseArguments (Ptr, &Argc, Argv);
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Application/FirmwareUpdate/
FirmwareUpdate.c 179 IN CHAR16 **Argv
200 if (StrLen (Argv[Index]) == 0) {;
208 if ((Argv[Index])[0] == L'-' || (Argv[Index])[0] == L'/') {
212 if ((StrCmp (Argv[Index], L"-h") == 0) ||
213 (StrCmp (Argv[Index], L"--help") == 0) ||
214 (StrCmp (Argv[Index], L"/?") == 0) ||
215 (StrCmp (Argv[Index], L"/h") == 0)) {
220 } else if (StrCmp (Argv[Index], L"-m") == 0) {
224 Status = ConvertMac(Argv[Index+1]);
    [all...]
  /external/clang/lib/Tooling/
Tooling.cpp 238 std::vector<const char*> Argv;
240 Argv.push_back(Str.c_str());
241 const char *const BinaryName = Argv[0];
254 Driver->BuildCompilation(llvm::makeArrayRef(Argv)));
429 // Add the resource dir based on the binary of this tool. argv[0] in the
  /external/clang/unittests/libclang/
LibclangTest.cpp 487 const char *Argv[] = {Clang.c_str(), "-target", "arm-linux-gnueabi",
491 clang_parseTranslationUnit2FullArgv(Index, Filename.c_str(), Argv,
492 sizeof(Argv) / sizeof(Argv[0]),
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 468 const char **Argv = new const char*[2];
469 // Use the name of the first input object module as argv[0] for the target.
470 Argv[0] = InputFileList[0].c_str();
471 Argv[1] = nullptr;
472 return Main(1, Argv);
731 int main(int argc, char **argv) {
732 sys::PrintStackTraceOnErrorSignal(argv[0]);
733 PrettyStackTraceProgram X(argc, argv);
735 ProgramName = argv[0];
742 cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n")
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
Shell.c 938 // Start LoopVar at 0 to parse only optional arguments at Argv[0]
939 // and parse other parameters from Argv[1]. This is for use case that
944 CurrentArg = gEfiShellParametersProtocol->Argv[LoopVar];
1008 DelayValueStr = gEfiShellParametersProtocol->Argv[LoopVar + 1];
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-death-test.cc 924 char* const* argv; \/\/ Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
    [all...]
  /external/googletest/googletest/src/
gtest-death-test.cc 937 char* const* argv; \/\/ Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-death-test.cc 938 char* const* argv; \/\/ Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 882 char* const* argv; \/\/ Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 922 char* const* argv; \/\/ Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 821 char* const* Argv() {
831 char* const* argv; // Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-death-test.cc 879 char* const* argv; \/\/ Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
    [all...]
  /external/v8/testing/gtest/src/
gtest-death-test.cc 936 char* const* argv; \/\/ Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-death-test.cc 922 char* const* argv; \/\/ Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
    [all...]

Completed in 532 milliseconds

1 2