Home
last modified time | relevance | path

Searched refs:joined_chains_fp_ (Results 1 – 2 of 2) sorted by relevance

/system/extras/simpleperf/
DCallChainJoiner.cpp273 joined_chains_fp_(nullptr), in CallChainJoiner()
283 if (joined_chains_fp_ != nullptr) { in ~CallChainJoiner()
284 fclose(joined_chains_fp_); in ~CallChainJoiner()
334 joined_chains_fp_ = CreateTempFp(); in JoinCallChains()
335 if (joined_chains_fp_ == nullptr) { in JoinCallChains()
349 std::make_pair(tmp_fp.get(), joined_chains_fp_)}; in JoinCallChains()
389 fseek(joined_chains_fp_, 0, SEEK_SET) != 0) { in GetNextCallChain()
396 fp = (next_chain_index_ & 1) ? joined_chains_fp_ : original_chains_fp_; in GetNextCallChain()
399 fp = joined_chains_fp_; in GetNextCallChain()
DCallChainJoiner.h173 FILE* joined_chains_fp_; variable