Searched refs:child_argv (Results 1 - 6 of 6) sorted by path

/external/libunwind/tests/
H A Dforker.c35 char *program, **child_argv; local
45 child_argv = alloca ((argc - 1) * sizeof (char *));
47 child_argv[i] = argv[2 + i];
48 child_argv[i] = NULL;
56 execve (program, child_argv, envp);
/external/valgrind/coregrind/
H A Dm_options.c339 of the executable. 'child_argv' must not include the name of the
340 executable itself; iow child_argv[0] must be the first arg, if any,
343 const HChar** child_argv )
383 if (VG_(clo_trace_children_skip_by_arg) && child_argv != NULL) {
399 for (i = 0; child_argv[i]; i++) {
400 matches = VG_(string_match)(patt, child_argv[i]);
H A Dpub_core_options.h376 of the executable. 'child_argv' must not include the name of the
377 executable itself; iow child_argv[0] must be the first arg, if any,
380 const HChar** child_argv );
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-darwin.c3449 { // Make 'child_argv' be a pointer to the child's arg vector
3451 const HChar** child_argv = (const HChar**)ARG4; local
3452 if (child_argv && child_argv[0] == NULL)
3453 child_argv = NULL;
3454 trace_this_child = VG_(should_we_trace_this_child)( (HChar*)ARG2, child_argv );
H A Dsyswrap-generic.c2896 { // Make 'child_argv' be a pointer to the child's arg vector
2898 const HChar** child_argv = (const HChar**)ARG2; local
2899 if (child_argv && child_argv[0] == NULL)
2900 child_argv = NULL;
2901 trace_this_child = VG_(should_we_trace_this_child)( (HChar*)ARG1, child_argv );
H A Dsyswrap-solaris.c1404 Omit the executable name itself from child_argv. */
1405 const HChar **child_argv = VG_(malloc)("syswrap.spawn.7", local
1408 child_argv[i - 1] = *(HChar **) VG_(indexXA)(argv, i);
1411 child_argv);
1412 VG_(free)(child_argv);
3716 /* Make 'child_argv' be a pointer to the child's arg vector (skipping the
3718 const HChar **child_argv = (const HChar **) ARG2; local
3719 if (child_argv[0] == NULL)
3720 child_argv = NULL;
3721 Bool trace_this_child = VG_(should_we_trace_this_child)(fname, child_argv);
[all...]

Completed in 322 milliseconds