Home
last modified time | relevance | path

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

/system/extras/simpleperf/
DCallChainJoiner.cpp275 joined_chains_fp_(nullptr), in CallChainJoiner()
285 if (joined_chains_fp_ != nullptr) { in ~CallChainJoiner()
286 fclose(joined_chains_fp_); in ~CallChainJoiner()
336 joined_chains_fp_ = CreateTempFp(); in JoinCallChains()
337 if (joined_chains_fp_ == nullptr) { in JoinCallChains()
351 std::make_pair(tmp_fp.get(), joined_chains_fp_) in JoinCallChains()
393 fseek(joined_chains_fp_, 0, SEEK_SET) != 0) { in GetNextCallChain()
400 fp = (next_chain_index_ & 1) ? joined_chains_fp_ : original_chains_fp_; in GetNextCallChain()
403 fp = joined_chains_fp_; in GetNextCallChain()
DCallChainJoiner.h182 FILE* joined_chains_fp_; variable