Lines Matching refs:instruction_id_

73   instruction_id_ = 0;  in SetUpSingle()
83 instruction_id_ = i; in SetUpSingle()
84 LOGD("Child process created: " + std::to_string(instruction_id_) + in SetUpSingle()
92 if (is_manager_ || p != instruction_id_) { in SetUpSingle()
99 LOGD("Trying to set the name for instruction: " + std::to_string(instruction_id_) + in SetUpSingle()
101 "; new name: " + thread_params_[instruction_id_].name_); in SetUpSingle()
102 setproctitle(argc_, argv_, (thread_params_[instruction_id_].name_.c_str())); in SetUpSingle()
104 if (thread_params_[instruction_id_].sched_attr_.IsSet()) { in SetUpSingle()
105 thread_params_[instruction_id_].sched_attr_.Set(); in SetUpSingle()
107 if (thread_params_[instruction_id_].sched_affinity_.IsSet()) { in SetUpSingle()
108 thread_params_[instruction_id_].sched_affinity_.Set(); in SetUpSingle()
111 LOGD("Process initializing instruction: " + std::to_string(instruction_id_) + in SetUpSingle()
113 instructions_[instruction_id_]->SetUp(); in SetUpSingle()
114 LOGD("Process initializing done, unlocking: " + std::to_string(instruction_id_) + in SetUpSingle()
127 instructions_[instruction_id_]->Run(); in RunSingle()
138 instructions_[instruction_id_]->TearDown(); in TearDownSingle()
182 std::string child_name = thread_params_[instruction_id_].name_; in CollectResults()
183 result->AddSubResult(instructions_[instruction_id_]->CollectResults(child_name + "/")); in CollectResults()
195 ssize_t chars_written = write(pipe_fds_[instruction_id_][1], &serialized.data()[chars_sent], in CollectResults()
203 close(pipe_fds_[instruction_id_][1]); in CollectResults()