Searched refs:process (Results 1 - 6 of 6) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/executors/
H A DDevice.java110 Process process = pb.start();
111 int exitValue = process.waitFor();
202 Process process = processBuilder.start();
206 outputConsumer.giveStreamAndStartConsuming(process.getInputStream());
207 errorConsumer.giveStreamAndStartConsuming(process.getErrorStream());
210 // Wait until the process is done - the StreamConsumers will keep the
213 result.returnValue = process.waitFor();
/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DUniqueProgramTrackerListener.java142 Process process =
145 process.waitFor();
172 Process process =
175 process.waitFor();
/art/test/130-hprof/src/
H A DMain.java70 Process process = pb.start();
71 int ret = process.waitFor();
/art/profman/
H A Dprofman.cc521 // Read lines from the given file, dropping comments and empty lines. Post-process each line with
525 const char* input_filename, std::function<std::string(const char*)>* process) {
532 ReadCommentedInputStream<T>(*input_file, process));
537 // Read lines from the given stream, dropping comments and empty lines. Post-process each line
542 std::function<std::string(const char*)>* process) {
550 if (process != nullptr) {
551 std::string descriptor((*process)(dot.c_str()));
524 ReadCommentedInputFromFile( const char* input_filename, std::function<std::string(const char*)>* process) argument
540 ReadCommentedInputStream( std::istream& in_stream, std::function<std::string(const char*)>* process) argument
/art/dex2oat/
H A Ddex2oat.cc2564 std::function<std::string(const char*)> process = DotToDescriptor; local
2566 &process);
2574 std::function<std::string(const char*)> process = DotToDescriptor; local
2577 &process,
2581 // Read lines from the given file, dropping comments and empty lines. Post-process each line with
2585 const char* input_filename, std::function<std::string(const char*)>* process) {
2592 ReadCommentedInputStream<T>(*input_file, process));
2598 // Post-process each line with the given function.
2603 std::function<std::string(const char*)>* process,
2626 return ReadCommentedInputStream<T>(input_stream, process);
2584 ReadCommentedInputFromFile( const char* input_filename, std::function<std::string(const char*)>* process) argument
2600 ReadCommentedInputFromZip( const char* zip_filename, const char* input_filename, std::function<std::string(const char*)>* process, std::string* error_msg) argument
2632 ReadCommentedInputStream( std::istream& in_stream, std::function<std::string(const char*)>* process) argument
[all...]
/art/test/913-heaps/src/art/
H A DTest913.java382 v.process(lines, additionalEnabled, heapFilter != 0 || klass != null);
559 public void process(String[] lines, String additionalEnabledReferrer, boolean filtered) { method in class:Test913.Verifier

Completed in 238 milliseconds