Home | History | Annotate | Download | only in security_ASLR

Lines Matching refs:processes

8 the pids in /proc/<pid>/maps. Restarts the tested processes and reads
158 """Gets processes to test for main function.
160 Called by run_once to get processes for this program to test.
314 Called when test is run. Gets processes to test and calls test on
318 error.TestFail if any processes' memory mapping addresses are the
326 processes = self.get_processes_to_test()
327 # If we don't find any of the processes we wanted to test, we fail.
328 if len(processes) == 0:
331 'Could not find any of "%s" processes to test' % proc_names)
335 for process in processes:
348 raise error.TestFail('One or more processes had deterministic '