Lines Matching refs:state
96 static void RemoteUnwind(benchmark::State& state, bool cached) { in RemoteUnwind() argument
99 state.SkipWithError("Failed to start remote process."); in RemoteUnwind()
111 state.SkipWithError("Failed to parse maps."); in RemoteUnwind()
114 for (auto _ : state) { in RemoteUnwind()
119 state.SkipWithError("Failed to unwind properly."); in RemoteUnwind()
126 static void BM_remote_unwind_uncached(benchmark::State& state) { in BM_remote_unwind_uncached() argument
127 RemoteUnwind(state, false); in BM_remote_unwind_uncached()
131 static void BM_remote_unwind_cached(benchmark::State& state) { in BM_remote_unwind_cached() argument
132 RemoteUnwind(state, true); in BM_remote_unwind_cached()
136 static void RemoteAndroidUnwind(benchmark::State& state, bool cached) { in RemoteAndroidUnwind() argument
139 state.SkipWithError("Failed to start remote process."); in RemoteAndroidUnwind()
152 state.SkipWithError("Failed to initialize unwinder."); in RemoteAndroidUnwind()
155 for (auto _ : state) { in RemoteAndroidUnwind()
158 state.SkipWithError("Failed to unwind properly."); in RemoteAndroidUnwind()
165 static void BM_remote_android_unwind_uncached(benchmark::State& state) { in BM_remote_android_unwind_uncached() argument
166 RemoteAndroidUnwind(state, true); in BM_remote_android_unwind_uncached()
170 static void BM_remote_android_unwind_cached(benchmark::State& state) { in BM_remote_android_unwind_cached() argument
171 RemoteAndroidUnwind(state, true); in BM_remote_android_unwind_cached()