Lines Matching refs:std

27                                  std::vector<std::unique_ptr<Instruction>> instructions,  in Multiprocessing()
28 std::vector<MultithreadingParams> thread_params) in Multiprocessing()
30 instructions_(std::move(instructions)), in Multiprocessing()
31 thread_params_(std::move(thread_params)) {} in Multiprocessing()
69 LOGD("Created pipe for: " + std::to_string(i)); in SetUpSingle()
84 LOGD("Child process created: " + std::to_string(instruction_id_) + in SetUpSingle()
85 " pid: " + std::to_string(getpid())); in SetUpSingle()
99 LOGD("Trying to set the name for instruction: " + std::to_string(instruction_id_) + in SetUpSingle()
100 "; process: " + std::to_string(getpid()) + in SetUpSingle()
111 LOGD("Process initializing instruction: " + std::to_string(instruction_id_) + in SetUpSingle()
112 " pid: " + std::to_string(getpid())); in SetUpSingle()
114 LOGD("Process initializing done, unlocking: " + std::to_string(instruction_id_) + in SetUpSingle()
115 " pid: " + std::to_string(getpid())); in SetUpSingle()
124 LOGD("Waiting for the barrier... " + std::to_string(getpid())); in RunSingle()
126 LOGD("Barrier passed! Executing: " + std::to_string(getpid())); in RunSingle()
128 LOGD("Waiting for all the processes to finish... " + std::to_string(getpid())); in RunSingle()
130 LOGD("All the processes finished... " + std::to_string(getpid())); in RunSingle()
142 std::unique_ptr<Result> Multiprocessing::CollectResults(const std::string& prefix) { in CollectResults()
145 auto result = std::make_unique<Result>(prefix + name_, repeat_); in CollectResults()
148 LOGD("Collecting results... " + std::to_string(getpid())); in CollectResults()
153 LOGD("Parent reading... " + std::to_string(getpid())); in CollectResults()
155 LOGD("Parent reading from pipe: " + std::to_string(i)); in CollectResults()
156 std::array<char, 100> buffer; in CollectResults()
158 std::string serialized; in CollectResults()
174 LOGD("Parent received: " + std::to_string(chars_read) + " bytes: \"" + in CollectResults()
175 std::string(buffer.data()) + "\""); in CollectResults()
181 LOGD("Child writing... " + std::to_string(getpid())); in CollectResults()
182 std::string child_name = thread_params_[instruction_id_].name_; in CollectResults()
187 std::string serialized; in CollectResults()
202 LOGD("Child closing pipe: " + std::to_string(getpid())); in CollectResults()
208 LOGD("Child stopping: " + std::to_string(getpid())); in CollectResults()
214 LOGD("Parent finished: " + std::to_string(getpid())); in CollectResults()