HomeSort by relevance Sort by last modified time
    Searched defs:argv (Results 151 - 175 of 259) sorted by null

1 2 3 4 5 67 8 91011

  /external/v8/src/
flags.cc 230 List<const char*>* FlagList::argv() { function in class:v8::internal::FlagList
344 char** argv,
349 const char* arg = argv[i++];
380 value = argv[i++];
412 js_argv[k - start_pos] = StrDup(argv[k]);
433 argv[j++] = NULL;
443 if (argv[i] != NULL)
444 argv[j++] = argv[i];
488 ScopedVector<char*> argv(argc)
    [all...]
execution.cc 116 Object*** argv = reinterpret_cast<Object***>(args); local
118 CALL_GENERATED_CODE(stub_entry, function_entry, func, recv, argc, argv);
147 Handle<Object> argv[],
173 return Invoke(false, func, receiver, argc, argv, pending_exception);
179 Handle<Object> argv[],
181 return Invoke(true, func, Isolate::Current()->global(), argc, argv,
584 Handle<Object> argv[] = args; \
588 ARRAY_SIZE(argv), argv, \
  /external/valgrind/main/coregrind/
m_libcproc.c 61 /* As deduced from sp_at_startup, the client's argc, argv[] and
326 void VG_(execv) ( Char* filename, Char** argv )
338 (UWord)filename, (UWord)argv, (UWord)envp);
355 Char* argv[4] = { "/bin/sh", "-c", cmd, 0 }; local
356 VG_(execv)(argv[0], argv);
  /external/valgrind/main/exp-bbv/
bbv_main.c 358 IRExpr **argv, *arg1; local
432 argv= mkIRExprVec_1(arg1);
437 argv= mkIRExprVec_1(arg1);
440 argv);
445 argv);
450 argv);
  /sdk/emulator/opengl/tests/translator_tests/GLES_V2/
triangleV2.cpp 276 char **argv = (char **)malloc(argvSize * sizeof(char *)); local
282 argv[(*argc)++] = strdup("playdump");
293 argv = (char **)realloc(argv, argvSize * sizeof(char *));
295 argv[(*argc)++] = &cmdLine[argStart];
304 argv[(*argc)++] = &cmdLine[argStart];
306 return argv;
313 int main(int argc, char **argv)
332 char **argv = parseCmdLine(lpCmdLine, &argc); local
338 if (!strcmp(argv[i],"-vs"))
    [all...]
  /dalvik/vm/analysis/
DexPrepare.cpp 384 const char* argv[argc+1]; // last entry is NULL local
410 argv[curArg++] = (char*)kValgrinder;
411 argv[curArg++] = "--tool=memcheck";
412 argv[curArg++] = "--leak-check=yes"; // check for leaks too
413 argv[curArg++] = "--leak-resolution=med"; // increase from 2 to 4
414 argv[curArg++] = "--num-callers=16"; // default is 12
417 argv[curArg++] = execFile;
419 argv[curArg++] = "--dex";
422 argv[curArg++] = values[2];
425 argv[curArg++] = values[3]
    [all...]
  /external/chromium/base/
process_util_posix.cc 503 const std::vector<std::string>& argv,
513 scoped_array<char*> argv_cstr(new char*[argv.size() + 1]);
602 for (size_t i = 0; i < argv.size(); i++)
603 argv_cstr[i] = const_cast<char*>(argv[i].c_str());
604 argv_cstr[argv.size()] = NULL;
631 const std::vector<std::string>& argv,
636 return LaunchAppImpl(argv, env_changes, fds_to_remap,
641 const std::vector<std::string>& argv,
646 return LaunchAppImpl(argv, env_changes, fds_to_remap, wait,
650 bool LaunchApp(const std::vector<std::string>& argv,
885 const std::vector<std::string>& argv = cl.argv(); local
    [all...]
process_util_unittest.cc 587 std::vector<std::string> argv; local
588 argv.push_back("/bin/echo");
589 argv.push_back("-n");
590 argv.push_back("foobar42");
591 EXPECT_TRUE(base::GetAppOutput(CommandLine(argv), &output));
599 std::vector<std::string> argv; local
600 argv.push_back("/bin/sh"); // argv[0]
601 argv.push_back("-c"); // argv[1
640 std::vector<std::string> argv; local
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
input_method_library.cc 651 std::vector<std::string> argv; local
656 base::SplitString(command_line, ' ', &argv);
657 const bool result = base::LaunchApp(argv,
    [all...]
  /external/chromium/chrome/browser/
process_singleton_linux.cc 535 const std::vector<std::string>& argv,
602 const std::string& current_dir, const std::vector<std::string>& argv,
625 CommandLine parsed_command_line(argv);
716 // line argv array.
831 // format is "START\0<current dir>\0<argv[0]>\0...\0<argv[n]>".
840 const std::vector<std::string>& argv = cmd_line.argv(); local
841 for (std::vector<std::string>::const_iterator it = argv.begin();
842 it != argv.end(); ++it)
    [all...]
  /external/chromium/chrome/common/
service_process_util_unittest.cc 127 gchar **argv = NULL; local
129 if (g_shell_parse_argv(exec_value.c_str(), &argc, &argv, &error)) {
130 autorun_command_line.reset(new CommandLine(argc, argv));
131 g_strfreev(argv);
  /external/chromium/net/proxy/
proxy_resolver_v8.cc 364 v8::Handle<v8::Value> argv[] = { local
371 v8_context_->Global(), arraysize(argv), argv);
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 532 char* const* Argv() {
542 char* const* argv; // Command-line arguments for the child's call to exec member in struct:testing::internal::ExecDeathTestArgs
550 execve(args->argv[0], args->argv, environ);
573 static pid_t ExecDeathTestFork(char* const* argv, int close_fd) {
581 ExecDeathTestArgs args = { argv, close_fd };
632 const pid_t child_pid = ExecDeathTestFork(args.Argv(), pipe_fd[0]);
  /external/iproute2/ip/
iproute.c 592 char **argv = *argvp; local
594 while (++argv, --argc > 0) {
595 if (strcmp(*argv, "via") == 0) {
597 rta_addattr32(rta, 4096, RTA_GATEWAY, get_addr32(*argv));
599 } else if (strcmp(*argv, "dev") == 0) {
601 if ((rtnh->rtnh_ifindex = ll_name_to_index(*argv)) == 0) {
602 fprintf(stderr, "Cannot find device \"%s\"\n", *argv);
605 } else if (strcmp(*argv, "weight") == 0) {
608 if (get_unsigned(&w, *argv, 0) || w == 0 || w > 256)
609 invarg("\"weight\" is invalid\n", *argv);
    [all...]
ipxfrm.c 638 char **argv = *argvp; local
641 if (get_u32(&mark->v, *argv, 0)) {
642 invarg("Illegal \"mark\" value\n", *argv);
651 if (strcmp(*argv, "mask") == 0) {
653 if (get_u32(&mark->m, *argv, 0)) {
654 invarg("Illegal \"mark\" mask\n", *argv);
663 *argvp = argv;
938 char **argv = *argvp; local
946 if (strcmp(*argv, "src") == 0) {
949 get_prefix(&src, *argv, preferred_family)
1024 char **argv = *argvp; local
1048 char **argv = *argvp; local
1067 char **argv = *argvp; local
1082 char **argv = *argvp; local
1207 char **argv = *argvp; local
1290 char **argv = *argvp; local
    [all...]
  /external/openssh/
sshconnect.c 119 char *argv[10]; local
139 argv[0] = shell;
140 argv[1] = "-c";
141 argv[2] = command_string;
142 argv[3] = NULL;
147 execv(argv[0], argv);
148 perror(argv[0]);
    [all...]
  /external/ppp/pppd/
ipv6cp.c 323 setifaceid(argv)
324 char **argv;
334 arg = *argv;
1407 char *argv[8]; local
    [all...]
  /external/quake/quake/src/WinQuake/
sys_win.cpp 687 char *argv[MAX_NUM_ARGVS]; variable
722 argv[0] = empty_string;
731 argv[parms.argc] = lpCmdLine;
746 parms.argv = argv;
748 COM_InitArgv (parms.argc, parms.argv);
751 parms.argv = com_argv;
  /external/valgrind/main/lackey/
lk_main.c 356 IRExpr** argv; local
362 argv = mkIRExprVec_1( mkIRExpr_HWord( (HWord)&detailCounts[op][typeIx] ) );
365 argv);
470 IRExpr** argv; local
496 argv = mkIRExprVec_2( ev->addr, mkIRExpr_HWord( ev->size ) );
499 argv );
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.cpp 532 int argv = (++it)->u.operand; local
534 printf("[%4d] new_array\t %s, %s, %d\n", location, registerName(exec, dst).data(), registerName(exec, argv).data(), argc);
    [all...]
  /external/wpa_supplicant_8/hostapd/
hostapd_cli.c 206 static int hostapd_cli_cmd_ping(struct wpa_ctrl *ctrl, int argc, char *argv[])
212 static int hostapd_cli_cmd_relog(struct wpa_ctrl *ctrl, int argc, char *argv[])
218 static int hostapd_cli_cmd_mib(struct wpa_ctrl *ctrl, int argc, char *argv[])
269 static int hostapd_cli_cmd_sta(struct wpa_ctrl *ctrl, int argc, char *argv[])
277 snprintf(buf, sizeof(buf), "STA %s", argv[0]);
283 char *argv[])
291 snprintf(buf, sizeof(buf), "NEW_STA %s", argv[0]);
297 char *argv[])
307 argv[0], argv[1])
971 char *argv[max_args]; local
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/
JPEGTest.c 587 int _tmain(int argc, TCHAR **argv)
589 int main(int argc, char** argv)
669 argv[0]);
672 argv[0]);
693 szInFile = argv[1];
694 szOutFile = argv[2];
696 nOutformat = _wtoi(argv[3]);
697 nResizeMode = _wtoi(argv[4]);
699 nOutformat = atoi(argv[3]);
700 nResizeMode = atoi(argv[4])
1563 char* argv[2]; local
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/test/
JPEGTestEnc.c 2074 char* argv[2]; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
argp.h 193 starting at (STATE->argv + STATE->next). If success is returned, but
324 char **argv;
326 /* The index in ARGV of the next arg that to be parsed. May be modified. */
338 /* If non-zero, the index in ARGV of the first argument following a special
352 /* The name used when printing messages. This is initialized to ARGV[0],
367 /* Don't ignore the first element of ARGV. Normally (and always unless
374 is set, ARGP_PARSE_ARGV0 is ignored, as ARGV[0] is used as the program
408 /* Parse the options strings in ARGC & ARGV according to the options in ARGP.
410 index in ARGV of the first unparsed option is returned in it. If an
320 char **argv; member in struct:argp_state
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
argp.h 193 starting at (STATE->argv + STATE->next). If success is returned, but
324 char **argv;
326 /* The index in ARGV of the next arg that to be parsed. May be modified. */
338 /* If non-zero, the index in ARGV of the first argument following a special
352 /* The name used when printing messages. This is initialized to ARGV[0],
367 /* Don't ignore the first element of ARGV. Normally (and always unless
374 is set, ARGP_PARSE_ARGV0 is ignored, as ARGV[0] is used as the program
408 /* Parse the options strings in ARGC & ARGV according to the options in ARGP.
410 index in ARGV of the first unparsed option is returned in it. If an
320 char **argv; member in struct:argp_state

Completed in 817 milliseconds

1 2 3 4 5 67 8 91011