Home | History | Annotate | Download | only in test

Lines Matching full:process

11 #include "base/process/launch.h"
12 #include "base/process/process.h"
35 // // Start a child process and run |a_test_func|.
36 // base::Process test_child_process =
40 // // Do stuff involving |test_child_process| and the child process....
51 // // Code here runs in a child process....
55 // Spawns a child process and executes the function |procname| declared using
60 Process SpawnMultiProcessTestChild(
66 // may add any flags needed for your child process.
72 // write a test which requires code running out of process.
97 // Run a child process.
107 // Returns the child process.
108 Process SpawnChild(const std::string& procname);
110 // Run a child process using the given launch options.
113 Process SpawnChildWithOptions(const std::string& procname,
116 // Set up the command line used to spawn the child process.