Searched defs:child_argv (Results 1 - 3 of 3) sorted by relevance

/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/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c2832 { // Make 'child_argv' be a pointer to the child's arg vector
2834 HChar** child_argv = (HChar**)ARG4; local
2835 if (child_argv && child_argv[0] == NULL)
2836 child_argv = NULL;
2837 trace_this_child = VG_(should_we_trace_this_child)( (HChar*)ARG2, child_argv );
H A Dsyswrap-generic.c2683 { // Make 'child_argv' be a pointer to the child's arg vector
2685 HChar** child_argv = (HChar**)ARG2; local
2686 if (child_argv && child_argv[0] == NULL)
2687 child_argv = NULL;
2688 trace_this_child = VG_(should_we_trace_this_child)( (HChar*)ARG1, child_argv );

Completed in 716 milliseconds