YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/util/scope_exit.h
Line
Count
Source
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#ifndef YB_UTIL_SCOPE_EXIT_H
15
#define YB_UTIL_SCOPE_EXIT_H
16
17
#include <type_traits>
18
19
namespace yb {
20
21
template <class F>
22
class ScopeExitLambda {
23
 public:
24
  ScopeExitLambda(const ScopeExitLambda&) = delete;
25
  void operator=(const ScopeExitLambda&) = delete;
26
27
  ScopeExitLambda(ScopeExitLambda&& rhs) : f_(std::move(rhs.f_)), moved_(false) {
28
    rhs.moved_ = true;
29
  }
30
31
1
  explicit ScopeExitLambda(const F& f) : f_(f), moved_(false) {}
32
155M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: data-patcher.cc:_ZN2yb15ScopeExitLambdaIZNS_5tools17AddDeltaToSstFileERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_9MonoDeltaENS_10HybridTimeEmbPNS1_13RocksDBHelperEE3$_0EC2EOSF_
Unexecuted instantiation: ql-transaction-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6client17QLTransactionTest15TestReadRestartEbE3$_0EC2EOS3_
Unexecuted instantiation: ql-transaction-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6client17QLTransactionTest15TestReadRestartEbE3$_1EC2EOS3_
Unexecuted instantiation: ql-transaction-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6client17QLTransactionTest15TestReadRestartEbE3$_2EC2EOS3_
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6client15SnapshotTxnTest16TestBankAccountsENS_10EnumBitSetINS1_18BankAccountsOptionEEENSt3__16chrono8durationIxNS6_5ratioILl1ELl1000000000EEEEEidE3$_3EC2EOSC_
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_6client15SnapshotTxnTest25TestMultiWriteWithRestartEvENK3$_6clEvEUlvE_EC2EOS4_
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_6client15SnapshotTxnTest25TestMultiWriteWithRestartEvENK3$_7clEvEUlvE_EC2EOS4_
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_6client15SnapshotTxnTest25TestMultiWriteWithRestartEvENK3$_8clEvEUlvE_EC2EOS4_
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus38ConsensusPeersTest_TestRemotePeer_Test8TestBodyEvE3$_0EC2EOS3_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus57ConsensusPeersTest_TestLocalAppendAndRemotePeerDelay_Test8TestBodyEvE3$_1EC2EOS3_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus57ConsensusPeersTest_TestLocalAppendAndRemotePeerDelay_Test8TestBodyEvE3$_2EC2EOS3_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus39ConsensusPeersTest_TestRemotePeers_Test8TestBodyEvE3$_3EC2EOS3_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus64ConsensusPeersTest_TestDontSendOneRpcPerWriteWhenPeerIsDown_Test8TestBodyEvE3$_4EC2EOS3_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: randomized_docdb-test.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb19RandomizedDocDBTest23RunWorkloadWithSnaphotsEbE3$_0EC2EOS3_
Unexecuted instantiation: create-table-stress-test.cc:_ZN2yb15ScopeExitLambdaIZNS_69CreateTableStressTest_TestConcurrentCreateTableAndReloadMetadata_Test8TestBodyEvE3$_2EC2EOS2_
raft_consensus-itest.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver49RaftConsensusITest_TestConfigChangeUnderLoad_Test8TestBodyEvE3$_0EC2EOS3_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: snapshot-test.cc:_ZN2yb15ScopeExitLambdaIZNS_41SnapshotTest_SnapshotRemoteBootstrap_Test8TestBodyEvE3$_0EC2EOS2_
Unexecuted instantiation: snapshot-test.cc:_ZN2yb15ScopeExitLambdaIZNS_41SnapshotTest_SnapshotRemoteBootstrap_Test8TestBodyEvE3$_1EC2EOS2_
Unexecuted instantiation: pg_libpq-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper28PgLibPqTest_ReadRestart_Test8TestBodyEvE3$_4EC2EOS3_
Unexecuted instantiation: pg_libpq-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper38PgLibPqTest_ConcurrentIndexInsert_Test8TestBodyEvE3$_8EC2EOS3_
Unexecuted instantiation: pg_libpq-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper14ReadSumBalanceEPNS1_6PGConnEiNS_14IsolationLevelEPNSt3__16atomicIiEEE3$_9EC2EOS9_
Unexecuted instantiation: pg_mini-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper12_GLOBAL__N_19TxnHelperILNS_14IsolationLevelE2EE14CreateTxnGuardEPNS1_6PGConnEEUlvE_EC2EOS8_
Unexecuted instantiation: pg_mini-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper12_GLOBAL__N_19TxnHelperILNS_14IsolationLevelE1EE14CreateTxnGuardEPNS1_6PGConnEEUlvE_EC2EOS8_
Unexecuted instantiation: pg_mini-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_9pgwrapper35PgMiniTest_BulkCopyWithRestart_Test8TestBodyEvENK3$_2clEvEUlvE_EC2EOS4_
Unexecuted instantiation: pg_on_conflict-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_9pgwrapper16PgOnConflictTest14TestOnConflictEbRKNS_9MonoDeltaEENK3$_0clEvEUlvE_EC2EOS7_
mvcc-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet8MvccTest17RunRandomizedTestEbE3$_1EC2EOS3_
Line
Count
Source
32
2
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: yb-admin-snapshot-schedule-test.cc:_ZN2yb15ScopeExitLambdaIZNS_5tools50YbAdminSnapshotScheduleTest_ConsistentRestore_Test8TestBodyEvE3$_9EC2EOS3_
debug-util-test.cc:_ZN2yb15ScopeExitLambdaIZNS_39DebugUtilTest_LongOperationTracker_Test8TestBodyEvE3$_3EC2EOS2_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
priority_thread_pool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_10TestRandomEiE3$_0EC2EOS1_
Line
Count
Source
32
2
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
priority_thread_pool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_42PriorityThreadPoolTest_ChangePriority_Test8TestBodyEvE3$_2EC2EOS2_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
priority_thread_pool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_49PriorityThreadPoolTest_FailureToCreateThread_Test8TestBodyEvE3$_3EC2EOS2_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_10TaskStreamIiE4StopEvEUlvE_EC2EOS3_
Line
Count
Source
32
6
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_47TestThreadPool_TestThreadPoolWithNoMinimum_Test8TestBodyEvE3$_0EC2EOS2_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_50TestThreadPool_TestThreadPoolWithNoMaxThreads_Test8TestBodyEvE3$_1EC2EOS2_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_67TestThreadPoolTokenTypes_TestTokenSubmitsProcessedConcurrently_Test8TestBodyEvE4$_11EC2EOS2_
Line
Count
Source
32
2
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_49TestThreadPool_TestTokenSubmitsNonSequential_Test8TestBodyEvE4$_13EC2EOS2_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_47TestThreadPoolTokenTypes_TestTokenShutdown_Test8TestBodyEvE4$_15EC2EOS2_
Line
Count
Source
32
2
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_70TestThreadPoolTokenTypes_TestTokenSubmissionsAdhereToMaxQueueSize_Test8TestBodyEvE4$_23EC2EOS2_
Line
Count
Source
32
2
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
cdc_service.cc:_ZN2yb15ScopeExitLambdaIZNS_3cdc14CDCServiceImpl27CreateCDCStreamForNamespaceEPKNS1_24CreateCDCStreamRequestPBEPNS1_25CreateCDCStreamResponsePBENSt3__16chrono10time_pointINS_15CoarseMonoClockENS9_8durationIxNS8_5ratioILl1ELl1000000000EEEEEEEE3$_0EC2EOSH_
Line
Count
Source
32
154
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: cdc_service.cc:_ZN2yb15ScopeExitLambdaIZNS_3cdc14CDCServiceImpl17BootstrapProducerEPKNS1_26BootstrapProducerRequestPBEPNS1_27BootstrapProducerResponsePBENS_3rpc10RpcContextEE3$_6EC2EOSA_
consensus_peers.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus4Peer15SendNextRequestENS1_18RequestTriggerModeEE3$_1EC2EOS4_
Line
Count
Source
32
13.3M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
raft_consensus.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus13RaftConsensus25ReportFailureDetectedTaskEvE3$_1EC2EOS3_
Line
Count
Source
32
8.01k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
mini_cluster.cc:_ZN2yb15ScopeExitLambdaIZNS_11MiniCluster12StartMastersEvE3$_6EC2EOS2_
Line
Count
Source
32
398
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
log.cc:_ZN2yb15ScopeExitLambdaIZNS_3log3Log8Appender9GroupWorkEvE3$_0EC2EOS4_
Line
Count
Source
32
13.8M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_10TaskStreamINS_3log13LogEntryBatchEE4StopEvEUlvE_EC2EOS5_
Line
Count
Source
32
97.3k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
log.cc:_ZN2yb15ScopeExitLambdaIZNS_3log3Log6CopyToERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE3$_3EC2EOSC_
Line
Count
Source
32
117
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: catalog_manager_ent.cc:_ZN2yb15ScopeExitLambdaIZNS_6master10enterprise14CatalogManager18ImportSnapshotMetaEPKNS1_27ImportSnapshotMetaRequestPBEPNS1_28ImportSnapshotMetaResponsePBEE3$_1EC2EOS9_
ql_processor.cc:_ZN2yb15ScopeExitLambdaIZNS_2ql11QLProcessor5ParseERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS3_10unique_ptrINS1_9ParseTreeENS3_14default_deleteISD_EEEEbRKNS3_10shared_ptrINS_10MemTrackerEEEbE3$_0EC2EOSN_
Line
Count
Source
32
335k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
db_impl.cc:_ZN2yb15ScopeExitLambdaIZN7rocksdb6DBImpl15BackgroundFlushEPbPNS1_10JobContextEPNS1_9LogBufferEPNS1_16ColumnFamilyDataEE3$_0EC2EOSA_
Line
Count
Source
32
31.8k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
db_impl.cc:_ZN2yb15ScopeExitLambdaIZN7rocksdb6DBImpl16ApplyVersionEditEPNS1_11VersionEditEE3$_1EC2EOS5_
Line
Count
Source
32
242k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
block_based_table_reader.cc:_ZN2yb15ScopeExitLambdaIZN7rocksdb15BlockBasedTable12GetMiddleKeyEvE3$_0EC2EOS3_
Line
Count
Source
32
46
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
webserver.cc:_ZN2yb15ScopeExitLambdaIZNKS_9Webserver17GetBoundAddressesEPNSt3__16vectorIN5boost4asio2ip14basic_endpointINS6_3tcpEEENS2_9allocatorIS9_EEEEE3$_0EC2EOSE_
Line
Count
Source
32
20.7k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
tablet_snapshots.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet15TabletSnapshots6CreateERKNS1_18CreateSnapshotDataEE3$_0EC2EOS6_
Line
Count
Source
32
14
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: tablet.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet6Tablet21ModifyFlushedFrontierERKNS_5docdb17ConsensusFrontierEN7rocksdb24FrontierModificationModeEE3$_8EC2EOS9_
tablet.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet6Tablet17PauseWritePermitsENSt3__16chrono10time_pointINS_15CoarseMonoClockENS4_8durationIxNS3_5ratioILl1ELl1000000000EEEEEEEE3$_9EC2EOSC_
Line
Count
Source
32
18.0k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
tablet.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet6Tablet16GetPermitToWriteENSt3__16chrono10time_pointINS_15CoarseMonoClockENS4_8durationIxNS3_5ratioILl1ELl1000000000EEEEEEEE4$_10EC2EOSC_
Line
Count
Source
32
1.75M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6tablet15TabletBootstrap28PlayUpdateTransactionRequestEPNS_9consensus12ReplicateMsgENS_17StronglyTypedBoolINS1_29AlreadyAppliedToRegularDB_TagEEEEUlvE_EC2EOS9_
Line
Count
Source
32
39.4k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: transaction_coordinator.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet22TransactionCoordinator4Impl19ResolveSealedStatusERKNS_17StronglyTypedUuidINS_17TransactionId_TagEEENS_10HybridTimeERKNSt3__16vectorINS1_12_GLOBAL__N_121ExpectedTabletBatchesENSA_9allocatorISD_EEEEbPNSA_11unique_lockINSA_5mutexEEEEUlvE_EC2EOSN_
_ZN2yb15ScopeExitLambdaIZNS_6tablet17TransactionLoader8Executor7ExecuteEvEUlvE_EC2EOS4_
Line
Count
Source
32
25.8k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6tablet22TransactionParticipant4Impl14ResolveIntentsENS_10HybridTimeENSt3__16chrono10time_pointINS_15CoarseMonoClockENS6_8durationIxNS5_5ratioILl1ELl1000000000EEEEEEEEUlvE_EC2EOSE_
pg_client_session.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver12_GLOBAL__N_117PrepareOperationsERKNS1_18PgPerformRequestPBEPNS_6client9YBSessionEPNS1_12PgTableCacheEE3$_1EC2EOSB_
Line
Count
Source
32
775k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
pg_table_cache.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver12PgTableCache4Impl9LoadEntryERKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEPNS1_12_GLOBAL__N_110CacheEntryEEUlvE_EC2EOSG_
Line
Count
Source
32
36.0k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
read_query.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver12_GLOBAL__N_19ReadQuery10DoReadImplEvE3$_2EC2EOS4_
Line
Count
Source
32
3.93M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
remote_bootstrap_client.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver21RemoteBootstrapClient11DownloadWALEyE3$_0EC2EOS3_
Line
Count
Source
32
2.24k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
tablet_service.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver22TabletServiceAdminImpl13BackfillIndexEPKNS1_22BackfillIndexRequestPBEPNS1_23BackfillIndexResponsePBENS_3rpc10RpcContextEE3$_0EC2EOSA_
Line
Count
Source
32
2.71k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
ts_tablet_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver15TSTabletManager16ApplyTabletSplitEPNS_6tablet14SplitOperationEPNS_3log3LogEE3$_3EC2EOS9_
Line
Count
Source
32
44
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
ts_tablet_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver15TSTabletManager20StartRemoteBootstrapERKNS_9consensus29StartRemoteBootstrapRequestPBEE3$_4EC2EOS7_
Line
Count
Source
32
4.70k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
ts_tablet_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver15TSTabletManager20StartRemoteBootstrapERKNS_9consensus29StartRemoteBootstrapRequestPBEE3$_5EC2EOS7_
Line
Count
Source
32
958
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: ts_tablet_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver15TSTabletManager20AllowedHistoryCutoffEPNS_6tablet17RaftGroupMetadataEE3$_9EC2EOS6_
mini_tablet_server.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver16MiniTabletServer9ReconnectEvE3$_0EC2EOS3_
Line
Count
Source
32
415
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_11redisserver11RedisClient4Impl6CommitEvEUlvE_EC2EOS4_
Unexecuted instantiation: client.cc:_ZN2yb15ScopeExitLambdaIZNS_6client15YBClientBuilder5BuildEONSt3__110unique_ptrINS_3rpc9MessengerENS3_14default_deleteIS6_EEEEE3$_1EC2EOSB_
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_23AlterNamespaceRequestPBENS5_24AlterNamespaceResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_19AlterTableRequestPBENS5_20AlterTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
322
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_22BackfillIndexRequestPBENS5_23BackfillIndexResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
89
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_34ChangeMasterClusterConfigRequestPBENS5_35ChangeMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_24CreateNamespaceRequestPBENS5_25CreateNamespaceResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
1.80k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20CreateTableRequestPBENS5_21CreateTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
3.20k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25CreateTablegroupRequestPBENS5_26CreateTablegroupResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
2
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_21CreateUDTypeRequestPBENS5_22CreateUDTypeResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
46
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_24DeleteNamespaceRequestPBENS5_25DeleteNamespaceResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
1.51k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20DeleteTableRequestPBENS5_21DeleteTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
2.43k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25DeleteTablegroupRequestPBENS5_26DeleteTablegroupResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_21DeleteUDTypeRequestPBENS5_22DeleteUDTypeResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
53
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20FlushTablesRequestPBENS5_21FlushTablesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_28GetTablegroupSchemaRequestPBENS5_29GetTablegroupSchemaResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_33GetColocatedTabletSchemaRequestPBENS5_34GetColocatedTabletSchemaResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_31GetMasterClusterConfigRequestPBENS5_32GetMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25GetNamespaceInfoRequestPBENS5_26GetNamespaceInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
1.77k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_23GetTableSchemaRequestPBENS5_24GetTableSchemaResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_22GetUDTypeInfoRequestPBENS5_23GetUDTypeInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
55
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25IsAlterTableDoneRequestPBENS5_26IsAlterTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
649
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_30IsCreateNamespaceDoneRequestPBENS5_31IsCreateNamespaceDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
2.03k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_26IsCreateTableDoneRequestPBENS5_27IsCreateTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
15.9k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_30IsDeleteNamespaceDoneRequestPBENS5_31IsDeleteNamespaceDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
1.53k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_26IsDeleteTableDoneRequestPBENS5_27IsDeleteTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
5.58k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_26IsFlushTablesDoneRequestPBENS5_27IsFlushTablesDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_28IsTruncateTableDoneRequestPBENS5_29IsTruncateTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
8.89k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_23ListNamespacesRequestPBENS5_24ListNamespacesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
4.40k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_24ListTablegroupsRequestPBENS5_25ListTablegroupsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_19ListTablesRequestPBENS5_20ListTablesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
170
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20ListUDTypesRequestPBENS5_21ListUDTypesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_22TruncateTableRequestPBENS5_23TruncateTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
3.05k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_32ValidateReplicationInfoRequestPBENS5_33ValidateReplicationInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master16MasterAdminProxyENS5_37CreateTransactionStatusTableRequestPBENS5_38CreateTransactionStatusTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_26GetTableLocationsRequestPBENS5_27GetTableLocationsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
2.80k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_27GetTabletLocationsRequestPBENS5_28GetTabletLocationsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_36GetTransactionStatusTabletsRequestPBENS5_37GetTransactionStatusTabletsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
2.01k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_29GetYsqlCatalogConfigRequestPBENS5_30GetYsqlCatalogConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_23RedisConfigGetRequestPBENS5_24RedisConfigGetResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
291
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_23RedisConfigSetRequestPBENS5_24RedisConfigSetResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_25ReservePgsqlOidsRequestPBENS5_26ReservePgsqlOidsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
380
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_23IsLoadBalancedRequestPBENS5_24IsLoadBalancedResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
178
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_27IsLoadBalancerIdleRequestPBENS5_28IsLoadBalancerIdleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
2.27k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_30ListLiveTabletServersRequestPBENS5_31ListLiveTabletServersResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
2
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_20ListMastersRequestPBENS5_21ListMastersResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_26ListTabletServersRequestPBENS5_27ListTabletServersResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
2.86k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_18AlterRoleRequestPBENS5_19AlterRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
58
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_19CreateRoleRequestPBENS5_20CreateRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
757
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_19DeleteRoleRequestPBENS5_20DeleteRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
730
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_23GetPermissionsRequestPBENS5_24GetPermissionsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
118k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_30GrantRevokePermissionRequestPBENS5_31GrantRevokePermissionResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
721
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_24GrantRevokeRoleRequestPBENS5_25GrantRevokeRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
52
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_24CreateCDCStreamRequestPBENS5_25CreateCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
2.69k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_24DeleteCDCStreamRequestPBENS5_25DeleteCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_27GetCDCDBStreamInfoRequestPBENS5_28GetCDCDBStreamInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_21GetCDCStreamRequestPBENS5_22GetCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
1
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_23ListCDCStreamsRequestPBENS5_24ListCDCStreamsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_24UpdateCDCStreamRequestPBENS5_25UpdateCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_38UpdateConsumerOnProducerSplitRequestPBENS5_39UpdateConsumerOnProducerSplitResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master16MasterAdminProxyENS5_20FlushTablesRequestPBENS5_21FlushTablesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
7
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master16MasterAdminProxyENS5_26IsFlushTablesDoneRequestPBENS5_27IsFlushTablesDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
19
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_31GetMasterClusterConfigRequestPBENS5_32GetMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
6
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_34ChangeMasterClusterConfigRequestPBENS5_35ChangeMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
Line
Count
Source
32
4
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_32ValidateReplicationInfoRequestPBENS5_33ValidateReplicationInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EC2EOS12_
_ZN2yb15ScopeExitLambdaIZNS_6client8internal9MetaCache19DoLookupTabletByKeyINS_10SharedLockINSt3__118shared_timed_mutexEEEEEbRKNS6_10shared_ptrIKNS1_7YBTableEEERKNS9_IKNS1_27VersionedTablePartitionListEEERKNS9_IKNS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEEENS6_6chrono10time_pointINS_15CoarseMonoClockENSU_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEEPNS6_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEPSR_EUlvE_EC2EOS1E_
Line
Count
Source
32
11.0M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8internal9MetaCache19DoLookupTabletByKeyINSt3__110lock_guardINS5_18shared_timed_mutexEEEEEbRKNS5_10shared_ptrIKNS1_7YBTableEEERKNS9_IKNS1_27VersionedTablePartitionListEEERKNS9_IKNS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEEENS5_6chrono10time_pointINS_15CoarseMonoClockENSU_8durationIxNS5_5ratioILl1ELl1000000000EEEEEEEPNS5_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEPSR_EUlvE_EC2EOS1E_
Line
Count
Source
32
46.8k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8internal9MetaCache18DoLookupTabletByIdINS_10SharedLockINSt3__118shared_timed_mutexEEEEEbRKNS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKNS6_10shared_ptrIKNS1_7YBTableEEENS_17StronglyTypedBoolINS_6master19IncludeInactive_TagEEENS6_6chrono10time_pointINS_15CoarseMonoClockENSR_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEENSN_INS1_12UseCache_TagEEEPNS6_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEEUlvE_EC2EOS1C_
Line
Count
Source
32
1.17M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client8internal9MetaCache18DoLookupTabletByIdINSt3__110lock_guardINS5_18shared_timed_mutexEEEEEbRKNS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKNS5_10shared_ptrIKNS1_7YBTableEEENS_17StronglyTypedBoolINS_6master19IncludeInactive_TagEEENS5_6chrono10time_pointINS_15CoarseMonoClockENSR_8durationIxNS5_5ratioILl1ELl1000000000EEEEEEENSN_INS1_12UseCache_TagEEEPNS5_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEEUlvE_EC2EOS1C_
Line
Count
Source
32
8.27k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_6client13YBTransaction4Impl16ApplyChildResultERKNS_24ChildTransactionResultPBEEUlvE_EC2EOS7_
Line
Count
Source
32
14.1k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
ybc_util.cc:_ZN2yb15ScopeExitLambdaIZNS_12_GLOBAL__N_110InitGFlagsEPKcE3$_0EC2EOS4_
Line
Count
Source
32
3.45k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
conflict_resolution.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb12_GLOBAL__N_116ConflictResolver19ReadIntentConflictsENS_10EnumBitSetINS1_10IntentTypeEEEPNS1_8KeyBytesENS_10WaitPolicyEEUlvE_EC2EOSA_
Line
Count
Source
32
10.3M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
pgsql_operation.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb19PgsqlWriteOperation5ApplyERKNS1_21DocOperationApplyDataEE3$_0EC2EOS6_
Line
Count
Source
32
3.09M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
pgsql_operation.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb18PgsqlReadOperation7ExecuteERKNS1_12YQLStorageIfENSt3__16chrono10time_pointINS_15CoarseMonoClockENS7_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEERKNS_14ReadHybridTimeEbRKNS_6SchemaEPSJ_PNS_10faststringEPNS_10HybridTimeEE3$_1EC2EOSQ_
Line
Count
Source
32
1.50M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
shared_lock_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb16LockedBatchEntry4LockENS_10EnumBitSetINS1_10IntentTypeEEENSt3__16chrono10time_pointINS_15CoarseMonoClockENS7_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEEE3$_0EC2EOSF_
Line
Count
Source
32
228k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: docdb_test_util.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb19DocDBRocksDBFixture25FullyCompactHistoryBeforeENS_10HybridTimeEE3$_2EC2EOS4_
Unexecuted instantiation: docdb_test_util.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb19DocDBRocksDBFixture15MinorCompactionENS_10HybridTimeEmlE3$_3EC2EOS4_
_ZN2yb15ScopeExitLambdaIZNS_6pggate8PgClient4Impl12PerformAsyncEPNS_7tserver18PgPerformOptionsPBEPNSt3__16vectorINS7_10shared_ptrINS1_7PgsqlOpEEENS7_9allocatorISB_EEEERKNS7_8functionIFvRKNS1_13PerformResultEEEEEUlvE_EC2EOSO_
Line
Count
Source
32
774k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: pg_wrapper.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper9PgWrapper13InitDbForYSQLERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESB_iE3$_0EC2EOSC_
curl_util.cc:_ZN2yb15ScopeExitLambdaIZNS_8EasyCurl9DoRequestERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKN5boost8optionalIS9_EESF_xPNS_10faststringERKNS2_6vectorIS8_NS6_IS8_EEEEE3$_0EC2EOSN_
Line
Count
Source
32
245
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: delayer.cc:_ZN2yb15ScopeExitLambdaIZNS_7Delayer7ExecuteEvE3$_1EC2EOS2_
net_util.cc:_ZN2yb15ScopeExitLambdaIZNS_17GetLocalAddressesEPNSt3__16vectorIN5boost4asio2ip7addressENS1_9allocatorIS6_EEEENS_13AddressFilterEE3$_1EC2EOSC_
Line
Count
Source
32
22.9k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
priority_thread_pool.cc:_ZN2yb15ScopeExitLambdaIZNS_12_GLOBAL__N_124PriorityThreadPoolWorker3RunEvEUlvE_EC2EOS3_
Line
Count
Source
32
14.6k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
shared_mem.cc:_ZN2yb15ScopeExitLambdaIZNS_19SharedMemorySegment6CreateEmE3$_0EC2EOS2_
Line
Count
Source
32
11.5k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
subprocess.cc:_ZN2yb15ScopeExitLambdaIZNS_10Subprocess17StartWithForkExecEvE3$_0EC2EOS2_
Line
Count
Source
32
5.86k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
Unexecuted instantiation: subprocess.cc:_ZN2yb15ScopeExitLambdaIZNS_10Subprocess19StartWithPosixSpawnEvE3$_1EC2EOS2_
Unexecuted instantiation: subprocess.cc:_ZN2yb15ScopeExitLambdaIZNS_10Subprocess19StartWithPosixSpawnEvE3$_2EC2EOS2_
Unexecuted instantiation: subprocess.cc:_ZN2yb15ScopeExitLambdaIZNS_10Subprocess33CloseFileDescriptorsForPosixSpawnEPPvE3$_3EC2EOS4_
reactor.cc:_ZN2yb15ScopeExitLambdaIZNS_3rpc7Reactor12AsyncHandlerERN2ev5asyncEiE3$_4EC2EOS6_
Line
Count
Source
32
41.8M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
remote_method.cc:_ZN2yb15ScopeExitLambdaIZNS_3rpc12RemoteMethodC1ENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEES9_E3$_0EC2EOSA_
Line
Count
Source
32
1.60M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
secure_stream.cc:_ZN2yb15ScopeExitLambdaIZNS_3rpc12_GLOBAL__N_113SecureRefiner6VerifyEbP17x509_store_ctx_stE3$_1EC2EOS6_
Line
Count
Source
32
1.30k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
_ZN2yb15ScopeExitLambdaIZNS_3rpc15ServicePoolImpl12CheckTimeoutExNSt3__16chrono10time_pointINS_15CoarseMonoClockENS4_8durationIxNS3_5ratioILl1ELl1000000000EEEEEEERKNS_6StatusEEUlvE_EC2EOSF_
Line
Count
Source
32
237k
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
thread_pool.cc:_ZN2yb15ScopeExitLambdaIZNS_3rpc12_GLOBAL__N_16Worker7PopTaskEPPNS1_14ThreadPoolTaskEEUlvE_EC2EOS7_
Line
Count
Source
32
48.4M
  explicit ScopeExitLambda(F&& f) : f_(std::move(f)), moved_(false) {}
33
34
155M
  ~ScopeExitLambda() {
35
155M
    if (!moved_) {
36
155M
      f_();
37
155M
    }
38
155M
  }
Unexecuted instantiation: data-patcher.cc:_ZN2yb15ScopeExitLambdaIZNS_5tools17AddDeltaToSstFileERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_9MonoDeltaENS_10HybridTimeEmbPNS1_13RocksDBHelperEE3$_0ED2Ev
Unexecuted instantiation: ql-transaction-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6client17QLTransactionTest15TestReadRestartEbE3$_0ED2Ev
Unexecuted instantiation: ql-transaction-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6client17QLTransactionTest15TestReadRestartEbE3$_1ED2Ev
Unexecuted instantiation: ql-transaction-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6client17QLTransactionTest15TestReadRestartEbE3$_2ED2Ev
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6client15SnapshotTxnTest16TestBankAccountsENS_10EnumBitSetINS1_18BankAccountsOptionEEENSt3__16chrono8durationIxNS6_5ratioILl1ELl1000000000EEEEEidE3$_3ED2Ev
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_6client15SnapshotTxnTest25TestMultiWriteWithRestartEvENK3$_6clEvEUlvE_ED2Ev
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_6client15SnapshotTxnTest25TestMultiWriteWithRestartEvENK3$_7clEvEUlvE_ED2Ev
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_6client15SnapshotTxnTest25TestMultiWriteWithRestartEvENK3$_8clEvEUlvE_ED2Ev
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus38ConsensusPeersTest_TestRemotePeer_Test8TestBodyEvE3$_0ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus57ConsensusPeersTest_TestLocalAppendAndRemotePeerDelay_Test8TestBodyEvE3$_1ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus57ConsensusPeersTest_TestLocalAppendAndRemotePeerDelay_Test8TestBodyEvE3$_2ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus39ConsensusPeersTest_TestRemotePeers_Test8TestBodyEvE3$_3ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
consensus_peers-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus64ConsensusPeersTest_TestDontSendOneRpcPerWriteWhenPeerIsDown_Test8TestBodyEvE3$_4ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
log_cache-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus36LogCacheTest_TestMTReadAndWrite_Test8TestBodyEvE3$_0ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
Unexecuted instantiation: randomized_docdb-test.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb19RandomizedDocDBTest23RunWorkloadWithSnaphotsEbE3$_0ED2Ev
Unexecuted instantiation: create-table-stress-test.cc:_ZN2yb15ScopeExitLambdaIZNS_69CreateTableStressTest_TestConcurrentCreateTableAndReloadMetadata_Test8TestBodyEvE3$_2ED2Ev
raft_consensus-itest.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver49RaftConsensusITest_TestConfigChangeUnderLoad_Test8TestBodyEvE3$_0ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
Unexecuted instantiation: snapshot-test.cc:_ZN2yb15ScopeExitLambdaIZNS_41SnapshotTest_SnapshotRemoteBootstrap_Test8TestBodyEvE3$_0ED2Ev
Unexecuted instantiation: snapshot-test.cc:_ZN2yb15ScopeExitLambdaIZNS_41SnapshotTest_SnapshotRemoteBootstrap_Test8TestBodyEvE3$_1ED2Ev
Unexecuted instantiation: pg_libpq-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper28PgLibPqTest_ReadRestart_Test8TestBodyEvE3$_4ED2Ev
Unexecuted instantiation: pg_libpq-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper38PgLibPqTest_ConcurrentIndexInsert_Test8TestBodyEvE3$_8ED2Ev
Unexecuted instantiation: pg_libpq-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper14ReadSumBalanceEPNS1_6PGConnEiNS_14IsolationLevelEPNSt3__16atomicIiEEE3$_9ED2Ev
Unexecuted instantiation: pg_mini-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper12_GLOBAL__N_19TxnHelperILNS_14IsolationLevelE2EE14CreateTxnGuardEPNS1_6PGConnEEUlvE_ED2Ev
Unexecuted instantiation: pg_mini-test.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper12_GLOBAL__N_19TxnHelperILNS_14IsolationLevelE1EE14CreateTxnGuardEPNS1_6PGConnEEUlvE_ED2Ev
Unexecuted instantiation: pg_mini-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_9pgwrapper35PgMiniTest_BulkCopyWithRestart_Test8TestBodyEvENK3$_2clEvEUlvE_ED2Ev
Unexecuted instantiation: pg_on_conflict-test.cc:_ZN2yb15ScopeExitLambdaIZZNS_9pgwrapper16PgOnConflictTest14TestOnConflictEbRKNS_9MonoDeltaEENK3$_0clEvEUlvE_ED2Ev
mvcc-test.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet8MvccTest17RunRandomizedTestEbE3$_1ED2Ev
Line
Count
Source
34
2
  ~ScopeExitLambda() {
35
2
    if (!moved_) {
36
2
      f_();
37
2
    }
38
2
  }
Unexecuted instantiation: yb-admin-snapshot-schedule-test.cc:_ZN2yb15ScopeExitLambdaIZNS_5tools50YbAdminSnapshotScheduleTest_ConsistentRestore_Test8TestBodyEvE3$_9ED2Ev
debug-util-test.cc:_ZN2yb15ScopeExitLambdaIZNS_39DebugUtilTest_LongOperationTracker_Test8TestBodyEvE3$_3ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
priority_thread_pool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_10TestRandomEiE3$_0ED2Ev
Line
Count
Source
34
2
  ~ScopeExitLambda() {
35
2
    if (!moved_) {
36
2
      f_();
37
2
    }
38
2
  }
priority_thread_pool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_42PriorityThreadPoolTest_ChangePriority_Test8TestBodyEvE3$_2ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
priority_thread_pool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_49PriorityThreadPoolTest_FailureToCreateThread_Test8TestBodyEvE3$_3ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
_ZN2yb15ScopeExitLambdaIZNS_10TaskStreamIiE4StopEvEUlvE_ED2Ev
Line
Count
Source
34
6
  ~ScopeExitLambda() {
35
6
    if (!moved_) {
36
6
      f_();
37
6
    }
38
6
  }
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_47TestThreadPool_TestThreadPoolWithNoMinimum_Test8TestBodyEvE3$_0ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_50TestThreadPool_TestThreadPoolWithNoMaxThreads_Test8TestBodyEvE3$_1ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_67TestThreadPoolTokenTypes_TestTokenSubmitsProcessedConcurrently_Test8TestBodyEvE4$_11ED2Ev
Line
Count
Source
34
2
  ~ScopeExitLambda() {
35
2
    if (!moved_) {
36
2
      f_();
37
2
    }
38
2
  }
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_49TestThreadPool_TestTokenSubmitsNonSequential_Test8TestBodyEvE4$_13ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_47TestThreadPoolTokenTypes_TestTokenShutdown_Test8TestBodyEvE4$_15ED2Ev
Line
Count
Source
34
2
  ~ScopeExitLambda() {
35
2
    if (!moved_) {
36
2
      f_();
37
2
    }
38
2
  }
threadpool-test.cc:_ZN2yb15ScopeExitLambdaIZNS_70TestThreadPoolTokenTypes_TestTokenSubmissionsAdhereToMaxQueueSize_Test8TestBodyEvE4$_23ED2Ev
Line
Count
Source
34
2
  ~ScopeExitLambda() {
35
2
    if (!moved_) {
36
2
      f_();
37
2
    }
38
2
  }
cdc_service.cc:_ZN2yb15ScopeExitLambdaIZNS_3cdc14CDCServiceImpl27CreateCDCStreamForNamespaceEPKNS1_24CreateCDCStreamRequestPBEPNS1_25CreateCDCStreamResponsePBENSt3__16chrono10time_pointINS_15CoarseMonoClockENS9_8durationIxNS8_5ratioILl1ELl1000000000EEEEEEEE3$_0ED2Ev
Line
Count
Source
34
154
  ~ScopeExitLambda() {
35
154
    if (!moved_) {
36
154
      f_();
37
154
    }
38
154
  }
Unexecuted instantiation: cdc_service.cc:_ZN2yb15ScopeExitLambdaIZNS_3cdc14CDCServiceImpl17BootstrapProducerEPKNS1_26BootstrapProducerRequestPBEPNS1_27BootstrapProducerResponsePBENS_3rpc10RpcContextEE3$_6ED2Ev
consensus_peers.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus4Peer15SendNextRequestENS1_18RequestTriggerModeEE3$_1ED2Ev
Line
Count
Source
34
13.3M
  ~ScopeExitLambda() {
35
13.3M
    if (!moved_) {
36
13.3M
      f_();
37
13.3M
    }
38
13.3M
  }
raft_consensus.cc:_ZN2yb15ScopeExitLambdaIZNS_9consensus13RaftConsensus25ReportFailureDetectedTaskEvE3$_1ED2Ev
Line
Count
Source
34
8.01k
  ~ScopeExitLambda() {
35
8.01k
    if (!moved_) {
36
8.01k
      f_();
37
8.01k
    }
38
8.01k
  }
mini_cluster.cc:_ZN2yb15ScopeExitLambdaIZNS_11MiniCluster12StartMastersEvE3$_6ED2Ev
Line
Count
Source
34
370
  ~ScopeExitLambda() {
35
370
    if (!moved_) {
36
370
      f_();
37
370
    }
38
370
  }
log.cc:_ZN2yb15ScopeExitLambdaIZNS_3log3Log8Appender9GroupWorkEvE3$_0ED2Ev
Line
Count
Source
34
13.8M
  ~ScopeExitLambda() {
35
13.8M
    if (!moved_) {
36
13.8M
      f_();
37
13.8M
    }
38
13.8M
  }
_ZN2yb15ScopeExitLambdaIZNS_10TaskStreamINS_3log13LogEntryBatchEE4StopEvEUlvE_ED2Ev
Line
Count
Source
34
97.3k
  ~ScopeExitLambda() {
35
97.3k
    if (!moved_) {
36
97.3k
      f_();
37
97.3k
    }
38
97.3k
  }
log.cc:_ZN2yb15ScopeExitLambdaIZNS_3log3Log6CopyToERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE3$_3ED2Ev
Line
Count
Source
34
117
  ~ScopeExitLambda() {
35
117
    if (!moved_) {
36
117
      f_();
37
117
    }
38
117
  }
Unexecuted instantiation: catalog_manager_ent.cc:_ZN2yb15ScopeExitLambdaIZNS_6master10enterprise14CatalogManager18ImportSnapshotMetaEPKNS1_27ImportSnapshotMetaRequestPBEPNS1_28ImportSnapshotMetaResponsePBEE3$_1ED2Ev
ql_processor.cc:_ZN2yb15ScopeExitLambdaIZNS_2ql11QLProcessor5ParseERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS3_10unique_ptrINS1_9ParseTreeENS3_14default_deleteISD_EEEEbRKNS3_10shared_ptrINS_10MemTrackerEEEbE3$_0ED2Ev
Line
Count
Source
34
332k
  ~ScopeExitLambda() {
35
332k
    if (!moved_) {
36
332k
      f_();
37
332k
    }
38
332k
  }
db_impl.cc:_ZN2yb15ScopeExitLambdaIZN7rocksdb6DBImpl15BackgroundFlushEPbPNS1_10JobContextEPNS1_9LogBufferEPNS1_16ColumnFamilyDataEE3$_0ED2Ev
Line
Count
Source
34
31.8k
  ~ScopeExitLambda() {
35
31.8k
    if (!moved_) {
36
31.8k
      f_();
37
31.8k
    }
38
31.8k
  }
db_impl.cc:_ZN2yb15ScopeExitLambdaIZN7rocksdb6DBImpl16ApplyVersionEditEPNS1_11VersionEditEE3$_1ED2Ev
Line
Count
Source
34
242k
  ~ScopeExitLambda() {
35
242k
    if (!moved_) {
36
242k
      f_();
37
242k
    }
38
242k
  }
block_based_table_reader.cc:_ZN2yb15ScopeExitLambdaIZN7rocksdb15BlockBasedTable12GetMiddleKeyEvE3$_0ED2Ev
Line
Count
Source
34
46
  ~ScopeExitLambda() {
35
46
    if (!moved_) {
36
46
      f_();
37
46
    }
38
46
  }
webserver.cc:_ZN2yb15ScopeExitLambdaIZNKS_9Webserver17GetBoundAddressesEPNSt3__16vectorIN5boost4asio2ip14basic_endpointINS6_3tcpEEENS2_9allocatorIS9_EEEEE3$_0ED2Ev
Line
Count
Source
34
20.7k
  ~ScopeExitLambda() {
35
20.7k
    if (!moved_) {
36
20.7k
      f_();
37
20.7k
    }
38
20.7k
  }
tablet_snapshots.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet15TabletSnapshots6CreateERKNS1_18CreateSnapshotDataEE3$_0ED2Ev
Line
Count
Source
34
14
  ~ScopeExitLambda() {
35
14
    if (!moved_) {
36
14
      f_();
37
14
    }
38
14
  }
Unexecuted instantiation: tablet.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet6Tablet21ModifyFlushedFrontierERKNS_5docdb17ConsensusFrontierEN7rocksdb24FrontierModificationModeEE3$_8ED2Ev
tablet.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet6Tablet17PauseWritePermitsENSt3__16chrono10time_pointINS_15CoarseMonoClockENS4_8durationIxNS3_5ratioILl1ELl1000000000EEEEEEEE3$_9ED2Ev
Line
Count
Source
34
18.1k
  ~ScopeExitLambda() {
35
18.2k
    if (!moved_) {
36
18.2k
      f_();
37
18.2k
    }
38
18.1k
  }
tablet.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet6Tablet16GetPermitToWriteENSt3__16chrono10time_pointINS_15CoarseMonoClockENS4_8durationIxNS3_5ratioILl1ELl1000000000EEEEEEEE4$_10ED2Ev
Line
Count
Source
34
1.75M
  ~ScopeExitLambda() {
35
1.75M
    if (!moved_) {
36
1.75M
      f_();
37
1.75M
    }
38
1.75M
  }
_ZN2yb15ScopeExitLambdaIZNS_6tablet15TabletBootstrap28PlayUpdateTransactionRequestEPNS_9consensus12ReplicateMsgENS_17StronglyTypedBoolINS1_29AlreadyAppliedToRegularDB_TagEEEEUlvE_ED2Ev
Line
Count
Source
34
39.4k
  ~ScopeExitLambda() {
35
39.4k
    if (!moved_) {
36
39.4k
      f_();
37
39.4k
    }
38
39.4k
  }
Unexecuted instantiation: transaction_coordinator.cc:_ZN2yb15ScopeExitLambdaIZNS_6tablet22TransactionCoordinator4Impl19ResolveSealedStatusERKNS_17StronglyTypedUuidINS_17TransactionId_TagEEENS_10HybridTimeERKNSt3__16vectorINS1_12_GLOBAL__N_121ExpectedTabletBatchesENSA_9allocatorISD_EEEEbPNSA_11unique_lockINSA_5mutexEEEEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6tablet17TransactionLoader8Executor7ExecuteEvEUlvE_ED2Ev
Line
Count
Source
34
25.8k
  ~ScopeExitLambda() {
35
25.8k
    if (!moved_) {
36
25.8k
      f_();
37
25.8k
    }
38
25.8k
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6tablet22TransactionParticipant4Impl14ResolveIntentsENS_10HybridTimeENSt3__16chrono10time_pointINS_15CoarseMonoClockENS6_8durationIxNS5_5ratioILl1ELl1000000000EEEEEEEEUlvE_ED2Ev
pg_client_session.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver12_GLOBAL__N_117PrepareOperationsERKNS1_18PgPerformRequestPBEPNS_6client9YBSessionEPNS1_12PgTableCacheEE3$_1ED2Ev
Line
Count
Source
34
775k
  ~ScopeExitLambda() {
35
775k
    if (!moved_) {
36
775k
      f_();
37
775k
    }
38
775k
  }
pg_table_cache.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver12PgTableCache4Impl9LoadEntryERKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEPNS1_12_GLOBAL__N_110CacheEntryEEUlvE_ED2Ev
Line
Count
Source
34
36.0k
  ~ScopeExitLambda() {
35
36.0k
    if (!moved_) {
36
36.0k
      f_();
37
36.0k
    }
38
36.0k
  }
read_query.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver12_GLOBAL__N_19ReadQuery10DoReadImplEvE3$_2ED2Ev
Line
Count
Source
34
3.92M
  ~ScopeExitLambda() {
35
3.92M
    if (!moved_) {
36
3.92M
      f_();
37
3.92M
    }
38
3.92M
  }
remote_bootstrap_client.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver21RemoteBootstrapClient11DownloadWALEyE3$_0ED2Ev
Line
Count
Source
34
2.24k
  ~ScopeExitLambda() {
35
2.24k
    if (!moved_) {
36
2.24k
      f_();
37
2.24k
    }
38
2.24k
  }
tablet_service.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver22TabletServiceAdminImpl13BackfillIndexEPKNS1_22BackfillIndexRequestPBEPNS1_23BackfillIndexResponsePBENS_3rpc10RpcContextEE3$_0ED2Ev
Line
Count
Source
34
2.62k
  ~ScopeExitLambda() {
35
2.62k
    if (!moved_) {
36
2.62k
      f_();
37
2.62k
    }
38
2.62k
  }
ts_tablet_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver15TSTabletManager16ApplyTabletSplitEPNS_6tablet14SplitOperationEPNS_3log3LogEE3$_3ED2Ev
Line
Count
Source
34
43
  ~ScopeExitLambda() {
35
43
    if (!moved_) {
36
43
      f_();
37
43
    }
38
43
  }
ts_tablet_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver15TSTabletManager20StartRemoteBootstrapERKNS_9consensus29StartRemoteBootstrapRequestPBEE3$_4ED2Ev
Line
Count
Source
34
4.69k
  ~ScopeExitLambda() {
35
4.69k
    if (!moved_) {
36
4.69k
      f_();
37
4.69k
    }
38
4.69k
  }
ts_tablet_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver15TSTabletManager20StartRemoteBootstrapERKNS_9consensus29StartRemoteBootstrapRequestPBEE3$_5ED2Ev
Line
Count
Source
34
943
  ~ScopeExitLambda() {
35
943
    if (!moved_) {
36
943
      f_();
37
943
    }
38
943
  }
Unexecuted instantiation: ts_tablet_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver15TSTabletManager20AllowedHistoryCutoffEPNS_6tablet17RaftGroupMetadataEE3$_9ED2Ev
mini_tablet_server.cc:_ZN2yb15ScopeExitLambdaIZNS_7tserver16MiniTabletServer9ReconnectEvE3$_0ED2Ev
Line
Count
Source
34
415
  ~ScopeExitLambda() {
35
415
    if (!moved_) {
36
415
      f_();
37
415
    }
38
415
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_11redisserver11RedisClient4Impl6CommitEvEUlvE_ED2Ev
Unexecuted instantiation: client.cc:_ZN2yb15ScopeExitLambdaIZNS_6client15YBClientBuilder5BuildEONSt3__110unique_ptrINS_3rpc9MessengerENS3_14default_deleteIS6_EEEEE3$_1ED2Ev
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_23AlterNamespaceRequestPBENS5_24AlterNamespaceResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_19AlterTableRequestPBENS5_20AlterTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
322
  ~ScopeExitLambda() {
35
322
    if (!moved_) {
36
322
      f_();
37
322
    }
38
322
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_22BackfillIndexRequestPBENS5_23BackfillIndexResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
89
  ~ScopeExitLambda() {
35
89
    if (!moved_) {
36
89
      f_();
37
89
    }
38
89
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_34ChangeMasterClusterConfigRequestPBENS5_35ChangeMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_24CreateNamespaceRequestPBENS5_25CreateNamespaceResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
1.79k
  ~ScopeExitLambda() {
35
1.79k
    if (!moved_) {
36
1.79k
      f_();
37
1.79k
    }
38
1.79k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20CreateTableRequestPBENS5_21CreateTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
3.20k
  ~ScopeExitLambda() {
35
3.20k
    if (!moved_) {
36
3.20k
      f_();
37
3.20k
    }
38
3.20k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25CreateTablegroupRequestPBENS5_26CreateTablegroupResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
2
  ~ScopeExitLambda() {
35
2
    if (!moved_) {
36
2
      f_();
37
2
    }
38
2
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_21CreateUDTypeRequestPBENS5_22CreateUDTypeResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
46
  ~ScopeExitLambda() {
35
46
    if (!moved_) {
36
46
      f_();
37
46
    }
38
46
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_24DeleteNamespaceRequestPBENS5_25DeleteNamespaceResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
1.51k
  ~ScopeExitLambda() {
35
1.51k
    if (!moved_) {
36
1.51k
      f_();
37
1.51k
    }
38
1.51k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20DeleteTableRequestPBENS5_21DeleteTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
2.43k
  ~ScopeExitLambda() {
35
2.43k
    if (!moved_) {
36
2.43k
      f_();
37
2.43k
    }
38
2.43k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25DeleteTablegroupRequestPBENS5_26DeleteTablegroupResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_21DeleteUDTypeRequestPBENS5_22DeleteUDTypeResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
53
  ~ScopeExitLambda() {
35
53
    if (!moved_) {
36
53
      f_();
37
53
    }
38
53
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20FlushTablesRequestPBENS5_21FlushTablesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_28GetTablegroupSchemaRequestPBENS5_29GetTablegroupSchemaResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_33GetColocatedTabletSchemaRequestPBENS5_34GetColocatedTabletSchemaResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_31GetMasterClusterConfigRequestPBENS5_32GetMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25GetNamespaceInfoRequestPBENS5_26GetNamespaceInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
1.77k
  ~ScopeExitLambda() {
35
1.77k
    if (!moved_) {
36
1.77k
      f_();
37
1.77k
    }
38
1.77k
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_23GetTableSchemaRequestPBENS5_24GetTableSchemaResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_22GetUDTypeInfoRequestPBENS5_23GetUDTypeInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
55
  ~ScopeExitLambda() {
35
55
    if (!moved_) {
36
55
      f_();
37
55
    }
38
55
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25IsAlterTableDoneRequestPBENS5_26IsAlterTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
649
  ~ScopeExitLambda() {
35
649
    if (!moved_) {
36
649
      f_();
37
649
    }
38
649
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_30IsCreateNamespaceDoneRequestPBENS5_31IsCreateNamespaceDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
2.03k
  ~ScopeExitLambda() {
35
2.03k
    if (!moved_) {
36
2.03k
      f_();
37
2.03k
    }
38
2.03k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_26IsCreateTableDoneRequestPBENS5_27IsCreateTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
15.9k
  ~ScopeExitLambda() {
35
15.9k
    if (!moved_) {
36
15.9k
      f_();
37
15.9k
    }
38
15.9k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_30IsDeleteNamespaceDoneRequestPBENS5_31IsDeleteNamespaceDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
1.53k
  ~ScopeExitLambda() {
35
1.53k
    if (!moved_) {
36
1.53k
      f_();
37
1.53k
    }
38
1.53k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_26IsDeleteTableDoneRequestPBENS5_27IsDeleteTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
5.58k
  ~ScopeExitLambda() {
35
5.58k
    if (!moved_) {
36
5.58k
      f_();
37
5.58k
    }
38
5.58k
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_26IsFlushTablesDoneRequestPBENS5_27IsFlushTablesDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_28IsTruncateTableDoneRequestPBENS5_29IsTruncateTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
8.89k
  ~ScopeExitLambda() {
35
8.89k
    if (!moved_) {
36
8.89k
      f_();
37
8.89k
    }
38
8.89k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_23ListNamespacesRequestPBENS5_24ListNamespacesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
4.40k
  ~ScopeExitLambda() {
35
4.40k
    if (!moved_) {
36
4.40k
      f_();
37
4.40k
    }
38
4.40k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_24ListTablegroupsRequestPBENS5_25ListTablegroupsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_19ListTablesRequestPBENS5_20ListTablesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
170
  ~ScopeExitLambda() {
35
170
    if (!moved_) {
36
170
      f_();
37
170
    }
38
170
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20ListUDTypesRequestPBENS5_21ListUDTypesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_22TruncateTableRequestPBENS5_23TruncateTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
3.05k
  ~ScopeExitLambda() {
35
3.05k
    if (!moved_) {
36
3.05k
      f_();
37
3.05k
    }
38
3.05k
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_32ValidateReplicationInfoRequestPBENS5_33ValidateReplicationInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master16MasterAdminProxyENS5_37CreateTransactionStatusTableRequestPBENS5_38CreateTransactionStatusTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_26GetTableLocationsRequestPBENS5_27GetTableLocationsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
2.80k
  ~ScopeExitLambda() {
35
2.80k
    if (!moved_) {
36
2.80k
      f_();
37
2.80k
    }
38
2.80k
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_27GetTabletLocationsRequestPBENS5_28GetTabletLocationsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_36GetTransactionStatusTabletsRequestPBENS5_37GetTransactionStatusTabletsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
2.01k
  ~ScopeExitLambda() {
35
2.01k
    if (!moved_) {
36
2.01k
      f_();
37
2.01k
    }
38
2.01k
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_29GetYsqlCatalogConfigRequestPBENS5_30GetYsqlCatalogConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_23RedisConfigGetRequestPBENS5_24RedisConfigGetResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
291
  ~ScopeExitLambda() {
35
291
    if (!moved_) {
36
291
      f_();
37
291
    }
38
291
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_23RedisConfigSetRequestPBENS5_24RedisConfigSetResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_25ReservePgsqlOidsRequestPBENS5_26ReservePgsqlOidsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
380
  ~ScopeExitLambda() {
35
380
    if (!moved_) {
36
380
      f_();
37
380
    }
38
380
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_23IsLoadBalancedRequestPBENS5_24IsLoadBalancedResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
178
  ~ScopeExitLambda() {
35
178
    if (!moved_) {
36
178
      f_();
37
178
    }
38
178
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_27IsLoadBalancerIdleRequestPBENS5_28IsLoadBalancerIdleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
2.27k
  ~ScopeExitLambda() {
35
2.27k
    if (!moved_) {
36
2.27k
      f_();
37
2.27k
    }
38
2.27k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_30ListLiveTabletServersRequestPBENS5_31ListLiveTabletServersResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
2
  ~ScopeExitLambda() {
35
2
    if (!moved_) {
36
2
      f_();
37
2
    }
38
2
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_20ListMastersRequestPBENS5_21ListMastersResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_26ListTabletServersRequestPBENS5_27ListTabletServersResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
2.86k
  ~ScopeExitLambda() {
35
2.86k
    if (!moved_) {
36
2.86k
      f_();
37
2.86k
    }
38
2.86k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_18AlterRoleRequestPBENS5_19AlterRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
58
  ~ScopeExitLambda() {
35
58
    if (!moved_) {
36
58
      f_();
37
58
    }
38
58
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_19CreateRoleRequestPBENS5_20CreateRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
757
  ~ScopeExitLambda() {
35
757
    if (!moved_) {
36
757
      f_();
37
757
    }
38
757
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_19DeleteRoleRequestPBENS5_20DeleteRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
730
  ~ScopeExitLambda() {
35
730
    if (!moved_) {
36
730
      f_();
37
730
    }
38
730
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_23GetPermissionsRequestPBENS5_24GetPermissionsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
117k
  ~ScopeExitLambda() {
35
117k
    if (!moved_) {
36
117k
      f_();
37
117k
    }
38
117k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_30GrantRevokePermissionRequestPBENS5_31GrantRevokePermissionResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
721
  ~ScopeExitLambda() {
35
721
    if (!moved_) {
36
721
      f_();
37
721
    }
38
721
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_24GrantRevokeRoleRequestPBENS5_25GrantRevokeRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
52
  ~ScopeExitLambda() {
35
52
    if (!moved_) {
36
52
      f_();
37
52
    }
38
52
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_24CreateCDCStreamRequestPBENS5_25CreateCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
2.69k
  ~ScopeExitLambda() {
35
2.69k
    if (!moved_) {
36
2.69k
      f_();
37
2.69k
    }
38
2.69k
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_24DeleteCDCStreamRequestPBENS5_25DeleteCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_27GetCDCDBStreamInfoRequestPBENS5_28GetCDCDBStreamInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_21GetCDCStreamRequestPBENS5_22GetCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
1
  ~ScopeExitLambda() {
35
1
    if (!moved_) {
36
1
      f_();
37
1
    }
38
1
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_23ListCDCStreamsRequestPBENS5_24ListCDCStreamsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_24UpdateCDCStreamRequestPBENS5_25UpdateCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_38UpdateConsumerOnProducerSplitRequestPBENS5_39UpdateConsumerOnProducerSplitResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master16MasterAdminProxyENS5_20FlushTablesRequestPBENS5_21FlushTablesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
7
  ~ScopeExitLambda() {
35
7
    if (!moved_) {
36
7
      f_();
37
7
    }
38
7
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master16MasterAdminProxyENS5_26IsFlushTablesDoneRequestPBENS5_27IsFlushTablesDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
19
  ~ScopeExitLambda() {
35
19
    if (!moved_) {
36
19
      f_();
37
19
    }
38
19
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_31GetMasterClusterConfigRequestPBENS5_32GetMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
6
  ~ScopeExitLambda() {
35
6
    if (!moved_) {
36
6
      f_();
37
6
    }
38
6
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_34ChangeMasterClusterConfigRequestPBENS5_35ChangeMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
Line
Count
Source
34
4
  ~ScopeExitLambda() {
35
4
    if (!moved_) {
36
4
      f_();
37
4
    }
38
4
  }
Unexecuted instantiation: _ZN2yb15ScopeExitLambdaIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_32ValidateReplicationInfoRequestPBENS5_33ValidateReplicationInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6client8internal9MetaCache19DoLookupTabletByKeyINS_10SharedLockINSt3__118shared_timed_mutexEEEEEbRKNS6_10shared_ptrIKNS1_7YBTableEEERKNS9_IKNS1_27VersionedTablePartitionListEEERKNS9_IKNS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEEENS6_6chrono10time_pointINS_15CoarseMonoClockENSU_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEEPNS6_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEPSR_EUlvE_ED2Ev
Line
Count
Source
34
11.1M
  ~ScopeExitLambda() {
35
11.1M
    if (!moved_) {
36
11.1M
      f_();
37
11.1M
    }
38
11.1M
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8internal9MetaCache19DoLookupTabletByKeyINSt3__110lock_guardINS5_18shared_timed_mutexEEEEEbRKNS5_10shared_ptrIKNS1_7YBTableEEERKNS9_IKNS1_27VersionedTablePartitionListEEERKNS9_IKNS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEEENS5_6chrono10time_pointINS_15CoarseMonoClockENSU_8durationIxNS5_5ratioILl1ELl1000000000EEEEEEEPNS5_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEPSR_EUlvE_ED2Ev
Line
Count
Source
34
46.9k
  ~ScopeExitLambda() {
35
46.9k
    if (!moved_) {
36
46.9k
      f_();
37
46.9k
    }
38
46.9k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8internal9MetaCache18DoLookupTabletByIdINS_10SharedLockINSt3__118shared_timed_mutexEEEEEbRKNS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKNS6_10shared_ptrIKNS1_7YBTableEEENS_17StronglyTypedBoolINS_6master19IncludeInactive_TagEEENS6_6chrono10time_pointINS_15CoarseMonoClockENSR_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEENSN_INS1_12UseCache_TagEEEPNS6_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEEUlvE_ED2Ev
Line
Count
Source
34
1.17M
  ~ScopeExitLambda() {
35
1.17M
    if (!moved_) {
36
1.17M
      f_();
37
1.17M
    }
38
1.17M
  }
_ZN2yb15ScopeExitLambdaIZNS_6client8internal9MetaCache18DoLookupTabletByIdINSt3__110lock_guardINS5_18shared_timed_mutexEEEEEbRKNS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKNS5_10shared_ptrIKNS1_7YBTableEEENS_17StronglyTypedBoolINS_6master19IncludeInactive_TagEEENS5_6chrono10time_pointINS_15CoarseMonoClockENSR_8durationIxNS5_5ratioILl1ELl1000000000EEEEEEENSN_INS1_12UseCache_TagEEEPNS5_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEEUlvE_ED2Ev
Line
Count
Source
34
8.31k
  ~ScopeExitLambda() {
35
8.31k
    if (!moved_) {
36
8.31k
      f_();
37
8.31k
    }
38
8.31k
  }
_ZN2yb15ScopeExitLambdaIZNS_6client13YBTransaction4Impl16ApplyChildResultERKNS_24ChildTransactionResultPBEEUlvE_ED2Ev
Line
Count
Source
34
14.1k
  ~ScopeExitLambda() {
35
14.1k
    if (!moved_) {
36
14.1k
      f_();
37
14.1k
    }
38
14.1k
  }
ybc_util.cc:_ZN2yb15ScopeExitLambdaIZNS_12_GLOBAL__N_110InitGFlagsEPKcE3$_0ED2Ev
Line
Count
Source
34
3.45k
  ~ScopeExitLambda() {
35
3.45k
    if (!moved_) {
36
3.45k
      f_();
37
3.45k
    }
38
3.45k
  }
conflict_resolution.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb12_GLOBAL__N_116ConflictResolver19ReadIntentConflictsENS_10EnumBitSetINS1_10IntentTypeEEEPNS1_8KeyBytesENS_10WaitPolicyEEUlvE_ED2Ev
Line
Count
Source
34
10.3M
  ~ScopeExitLambda() {
35
10.3M
    if (!moved_) {
36
10.3M
      f_();
37
10.3M
    }
38
10.3M
  }
pgsql_operation.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb19PgsqlWriteOperation5ApplyERKNS1_21DocOperationApplyDataEE3$_0ED2Ev
Line
Count
Source
34
3.09M
  ~ScopeExitLambda() {
35
3.09M
    if (!moved_) {
36
3.09M
      f_();
37
3.09M
    }
38
3.09M
  }
pgsql_operation.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb18PgsqlReadOperation7ExecuteERKNS1_12YQLStorageIfENSt3__16chrono10time_pointINS_15CoarseMonoClockENS7_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEERKNS_14ReadHybridTimeEbRKNS_6SchemaEPSJ_PNS_10faststringEPNS_10HybridTimeEE3$_1ED2Ev
Line
Count
Source
34
1.49M
  ~ScopeExitLambda() {
35
1.49M
    if (!moved_) {
36
1.49M
      f_();
37
1.49M
    }
38
1.49M
  }
shared_lock_manager.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb16LockedBatchEntry4LockENS_10EnumBitSetINS1_10IntentTypeEEENSt3__16chrono10time_pointINS_15CoarseMonoClockENS7_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEEE3$_0ED2Ev
Line
Count
Source
34
228k
  ~ScopeExitLambda() {
35
228k
    if (!moved_) {
36
228k
      f_();
37
228k
    }
38
228k
  }
Unexecuted instantiation: docdb_test_util.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb19DocDBRocksDBFixture25FullyCompactHistoryBeforeENS_10HybridTimeEE3$_2ED2Ev
Unexecuted instantiation: docdb_test_util.cc:_ZN2yb15ScopeExitLambdaIZNS_5docdb19DocDBRocksDBFixture15MinorCompactionENS_10HybridTimeEmlE3$_3ED2Ev
_ZN2yb15ScopeExitLambdaIZNS_6pggate8PgClient4Impl12PerformAsyncEPNS_7tserver18PgPerformOptionsPBEPNSt3__16vectorINS7_10shared_ptrINS1_7PgsqlOpEEENS7_9allocatorISB_EEEERKNS7_8functionIFvRKNS1_13PerformResultEEEEEUlvE_ED2Ev
Line
Count
Source
34
775k
  ~ScopeExitLambda() {
35
775k
    if (!moved_) {
36
775k
      f_();
37
775k
    }
38
775k
  }
Unexecuted instantiation: pg_wrapper.cc:_ZN2yb15ScopeExitLambdaIZNS_9pgwrapper9PgWrapper13InitDbForYSQLERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESB_iE3$_0ED2Ev
curl_util.cc:_ZN2yb15ScopeExitLambdaIZNS_8EasyCurl9DoRequestERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKN5boost8optionalIS9_EESF_xPNS_10faststringERKNS2_6vectorIS8_NS6_IS8_EEEEE3$_0ED2Ev
Line
Count
Source
34
245
  ~ScopeExitLambda() {
35
245
    if (!moved_) {
36
245
      f_();
37
245
    }
38
245
  }
Unexecuted instantiation: delayer.cc:_ZN2yb15ScopeExitLambdaIZNS_7Delayer7ExecuteEvE3$_1ED2Ev
net_util.cc:_ZN2yb15ScopeExitLambdaIZNS_17GetLocalAddressesEPNSt3__16vectorIN5boost4asio2ip7addressENS1_9allocatorIS6_EEEENS_13AddressFilterEE3$_1ED2Ev
Line
Count
Source
34
22.9k
  ~ScopeExitLambda() {
35
22.9k
    if (!moved_) {
36
22.9k
      f_();
37
22.9k
    }
38
22.9k
  }
priority_thread_pool.cc:_ZN2yb15ScopeExitLambdaIZNS_12_GLOBAL__N_124PriorityThreadPoolWorker3RunEvEUlvE_ED2Ev
Line
Count
Source
34
14.6k
  ~ScopeExitLambda() {
35
14.6k
    if (!moved_) {
36
14.6k
      f_();
37
14.6k
    }
38
14.6k
  }
shared_mem.cc:_ZN2yb15ScopeExitLambdaIZNS_19SharedMemorySegment6CreateEmE3$_0ED2Ev
Line
Count
Source
34
11.5k
  ~ScopeExitLambda() {
35
11.5k
    if (!moved_) {
36
11.5k
      f_();
37
11.5k
    }
38
11.5k
  }
subprocess.cc:_ZN2yb15ScopeExitLambdaIZNS_10Subprocess17StartWithForkExecEvE3$_0ED2Ev
Line
Count
Source
34
5.85k
  ~ScopeExitLambda() {
35
5.85k
    if (!moved_) {
36
5.85k
      f_();
37
5.85k
    }
38
5.85k
  }
Unexecuted instantiation: subprocess.cc:_ZN2yb15ScopeExitLambdaIZNS_10Subprocess19StartWithPosixSpawnEvE3$_1ED2Ev
Unexecuted instantiation: subprocess.cc:_ZN2yb15ScopeExitLambdaIZNS_10Subprocess19StartWithPosixSpawnEvE3$_2ED2Ev
Unexecuted instantiation: subprocess.cc:_ZN2yb15ScopeExitLambdaIZNS_10Subprocess33CloseFileDescriptorsForPosixSpawnEPPvE3$_3ED2Ev
reactor.cc:_ZN2yb15ScopeExitLambdaIZNS_3rpc7Reactor12AsyncHandlerERN2ev5asyncEiE3$_4ED2Ev
Line
Count
Source
34
41.8M
  ~ScopeExitLambda() {
35
41.8M
    if (!moved_) {
36
41.8M
      f_();
37
41.8M
    }
38
41.8M
  }
remote_method.cc:_ZN2yb15ScopeExitLambdaIZNS_3rpc12RemoteMethodC1ENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEES9_E3$_0ED2Ev
Line
Count
Source
34
1.60M
  ~ScopeExitLambda() {
35
1.60M
    if (!moved_) {
36
1.60M
      f_();
37
1.60M
    }
38
1.60M
  }
secure_stream.cc:_ZN2yb15ScopeExitLambdaIZNS_3rpc12_GLOBAL__N_113SecureRefiner6VerifyEbP17x509_store_ctx_stE3$_1ED2Ev
Line
Count
Source
34
1.30k
  ~ScopeExitLambda() {
35
1.30k
    if (!moved_) {
36
1.30k
      f_();
37
1.30k
    }
38
1.30k
  }
_ZN2yb15ScopeExitLambdaIZNS_3rpc15ServicePoolImpl12CheckTimeoutExNSt3__16chrono10time_pointINS_15CoarseMonoClockENS4_8durationIxNS3_5ratioILl1ELl1000000000EEEEEEERKNS_6StatusEEUlvE_ED2Ev
Line
Count
Source
34
237k
  ~ScopeExitLambda() {
35
237k
    if (!moved_) {
36
237k
      f_();
37
237k
    }
38
237k
  }
thread_pool.cc:_ZN2yb15ScopeExitLambdaIZNS_3rpc12_GLOBAL__N_16Worker7PopTaskEPPNS1_14ThreadPoolTaskEEUlvE_ED2Ev
Line
Count
Source
34
48.3M
  ~ScopeExitLambda() {
35
48.3M
    if (!moved_) {
36
48.3M
      f_();
37
48.3M
    }
38
48.3M
  }
39
 private:
40
  F f_;
41
  bool moved_;
42
};
43
44
template <class F>
45
ScopeExitLambda<F> ScopeExit(const F& f) {
46
  return ScopeExitLambda<F>(f);
47
}
48
49
template <class F>
50
155M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
155M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
155M
}
Unexecuted instantiation: data-patcher.cc:_ZN2yb9ScopeExitIZNS_5tools17AddDeltaToSstFileERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_9MonoDeltaENS_10HybridTimeEmbPNS1_13RocksDBHelperEE3$_0EENS_15ScopeExitLambdaINS2_16remove_referenceIT_E4typeEEEOSI_
Unexecuted instantiation: ql-transaction-test.cc:_ZN2yb9ScopeExitIZNS_6client17QLTransactionTest15TestReadRestartEbE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Unexecuted instantiation: ql-transaction-test.cc:_ZN2yb9ScopeExitIZNS_6client17QLTransactionTest15TestReadRestartEbE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Unexecuted instantiation: ql-transaction-test.cc:_ZN2yb9ScopeExitIZNS_6client17QLTransactionTest15TestReadRestartEbE3$_2EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb9ScopeExitIZNS_6client15SnapshotTxnTest16TestBankAccountsENS_10EnumBitSetINS1_18BankAccountsOptionEEENSt3__16chrono8durationIxNS6_5ratioILl1ELl1000000000EEEEEidE3$_3EENS_15ScopeExitLambdaINS6_16remove_referenceIT_E4typeEEEOSF_
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb9ScopeExitIZZNS_6client15SnapshotTxnTest25TestMultiWriteWithRestartEvENK3$_6clEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb9ScopeExitIZZNS_6client15SnapshotTxnTest25TestMultiWriteWithRestartEvENK3$_7clEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Unexecuted instantiation: snapshot-txn-test.cc:_ZN2yb9ScopeExitIZZNS_6client15SnapshotTxnTest25TestMultiWriteWithRestartEvENK3$_8clEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
consensus_peers-test.cc:_ZN2yb9ScopeExitIZNS_9consensus38ConsensusPeersTest_TestRemotePeer_Test8TestBodyEvE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
consensus_peers-test.cc:_ZN2yb9ScopeExitIZNS_9consensus57ConsensusPeersTest_TestLocalAppendAndRemotePeerDelay_Test8TestBodyEvE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
consensus_peers-test.cc:_ZN2yb9ScopeExitIZNS_9consensus57ConsensusPeersTest_TestLocalAppendAndRemotePeerDelay_Test8TestBodyEvE3$_2EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
consensus_peers-test.cc:_ZN2yb9ScopeExitIZNS_9consensus39ConsensusPeersTest_TestRemotePeers_Test8TestBodyEvE3$_3EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
consensus_peers-test.cc:_ZN2yb9ScopeExitIZNS_9consensus64ConsensusPeersTest_TestDontSendOneRpcPerWriteWhenPeerIsDown_Test8TestBodyEvE3$_4EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
log_cache-test.cc:_ZN2yb9ScopeExitIRZNS_9consensus36LogCacheTest_TestMTReadAndWrite_Test8TestBodyEvE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
Unexecuted instantiation: randomized_docdb-test.cc:_ZN2yb9ScopeExitIZNS_5docdb19RandomizedDocDBTest23RunWorkloadWithSnaphotsEbE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Unexecuted instantiation: create-table-stress-test.cc:_ZN2yb9ScopeExitIZNS_69CreateTableStressTest_TestConcurrentCreateTableAndReloadMetadata_Test8TestBodyEvE3$_2EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
raft_consensus-itest.cc:_ZN2yb9ScopeExitIZNS_7tserver49RaftConsensusITest_TestConfigChangeUnderLoad_Test8TestBodyEvE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
Unexecuted instantiation: snapshot-test.cc:_ZN2yb9ScopeExitIZNS_41SnapshotTest_SnapshotRemoteBootstrap_Test8TestBodyEvE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Unexecuted instantiation: snapshot-test.cc:_ZN2yb9ScopeExitIZNS_41SnapshotTest_SnapshotRemoteBootstrap_Test8TestBodyEvE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Unexecuted instantiation: pg_libpq-test.cc:_ZN2yb9ScopeExitIZNS_9pgwrapper28PgLibPqTest_ReadRestart_Test8TestBodyEvE3$_4EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Unexecuted instantiation: pg_libpq-test.cc:_ZN2yb9ScopeExitIZNS_9pgwrapper38PgLibPqTest_ConcurrentIndexInsert_Test8TestBodyEvE3$_8EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Unexecuted instantiation: pg_libpq-test.cc:_ZN2yb9ScopeExitIZNS_9pgwrapper14ReadSumBalanceEPNS1_6PGConnEiNS_14IsolationLevelEPNSt3__16atomicIiEEE3$_9EENS_15ScopeExitLambdaINS5_16remove_referenceIT_E4typeEEEOSC_
Unexecuted instantiation: pg_mini-test.cc:_ZN2yb9ScopeExitIZNS_9pgwrapper12_GLOBAL__N_19TxnHelperILNS_14IsolationLevelE2EE14CreateTxnGuardEPNS1_6PGConnEEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSC_
Unexecuted instantiation: pg_mini-test.cc:_ZN2yb9ScopeExitIZNS_9pgwrapper12_GLOBAL__N_19TxnHelperILNS_14IsolationLevelE1EE14CreateTxnGuardEPNS1_6PGConnEEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSC_
Unexecuted instantiation: pg_mini-test.cc:_ZN2yb9ScopeExitIZZNS_9pgwrapper35PgMiniTest_BulkCopyWithRestart_Test8TestBodyEvENK3$_2clEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Unexecuted instantiation: pg_on_conflict-test.cc:_ZN2yb9ScopeExitIZZNS_9pgwrapper16PgOnConflictTest14TestOnConflictEbRKNS_9MonoDeltaEENK3$_0clEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSB_
mvcc-test.cc:_ZN2yb9ScopeExitIZNS_6tablet8MvccTest17RunRandomizedTestEbE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
2
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2
}
Unexecuted instantiation: yb-admin-snapshot-schedule-test.cc:_ZN2yb9ScopeExitIZNS_5tools50YbAdminSnapshotScheduleTest_ConsistentRestore_Test8TestBodyEvE3$_9EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
debug-util-test.cc:_ZN2yb9ScopeExitIZNS_39DebugUtilTest_LongOperationTracker_Test8TestBodyEvE3$_3EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
priority_thread_pool-test.cc:_ZN2yb9ScopeExitIZNS_10TestRandomEiE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS5_
Line
Count
Source
50
2
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2
}
priority_thread_pool-test.cc:_ZN2yb9ScopeExitIZNS_42PriorityThreadPoolTest_ChangePriority_Test8TestBodyEvE3$_2EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
priority_thread_pool-test.cc:_ZN2yb9ScopeExitIZNS_49PriorityThreadPoolTest_FailureToCreateThread_Test8TestBodyEvE3$_3EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
_ZN2yb9ScopeExitIZNS_10TaskStreamIiE4StopEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
6
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
6
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
6
}
threadpool-test.cc:_ZN2yb9ScopeExitIZNS_47TestThreadPool_TestThreadPoolWithNoMinimum_Test8TestBodyEvE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
threadpool-test.cc:_ZN2yb9ScopeExitIZNS_50TestThreadPool_TestThreadPoolWithNoMaxThreads_Test8TestBodyEvE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
threadpool-test.cc:_ZN2yb9ScopeExitIZNS_67TestThreadPoolTokenTypes_TestTokenSubmitsProcessedConcurrently_Test8TestBodyEvE4$_11EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
2
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2
}
threadpool-test.cc:_ZN2yb9ScopeExitIZNS_49TestThreadPool_TestTokenSubmitsNonSequential_Test8TestBodyEvE4$_13EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
threadpool-test.cc:_ZN2yb9ScopeExitIZNS_47TestThreadPoolTokenTypes_TestTokenShutdown_Test8TestBodyEvE4$_15EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
2
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2
}
threadpool-test.cc:_ZN2yb9ScopeExitIZNS_70TestThreadPoolTokenTypes_TestTokenSubmissionsAdhereToMaxQueueSize_Test8TestBodyEvE4$_23EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
2
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2
}
cdc_service.cc:_ZN2yb9ScopeExitIZNS_3cdc14CDCServiceImpl27CreateCDCStreamForNamespaceEPKNS1_24CreateCDCStreamRequestPBEPNS1_25CreateCDCStreamResponsePBENSt3__16chrono10time_pointINS_15CoarseMonoClockENS9_8durationIxNS8_5ratioILl1ELl1000000000EEEEEEEE3$_0EENS_15ScopeExitLambdaINS8_16remove_referenceIT_E4typeEEEOSK_
Line
Count
Source
50
154
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
154
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
154
}
Unexecuted instantiation: cdc_service.cc:_ZN2yb9ScopeExitIZNS_3cdc14CDCServiceImpl17BootstrapProducerEPKNS1_26BootstrapProducerRequestPBEPNS1_27BootstrapProducerResponsePBENS_3rpc10RpcContextEE3$_6EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSE_
consensus_peers.cc:_ZN2yb9ScopeExitIZNS_9consensus4Peer15SendNextRequestENS1_18RequestTriggerModeEE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Line
Count
Source
50
13.3M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
13.3M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
13.3M
}
raft_consensus.cc:_ZN2yb9ScopeExitIZNS_9consensus13RaftConsensus25ReportFailureDetectedTaskEvE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
8.01k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
8.01k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
8.01k
}
mini_cluster.cc:_ZN2yb9ScopeExitIZNS_11MiniCluster12StartMastersEvE3$_6EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
398
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
398
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
398
}
log.cc:_ZN2yb9ScopeExitIZNS_3log3Log8Appender9GroupWorkEvE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Line
Count
Source
50
13.8M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
13.8M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
13.8M
}
_ZN2yb9ScopeExitIZNS_10TaskStreamINS_3log13LogEntryBatchEE4StopEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS9_
Line
Count
Source
50
97.3k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
97.3k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
97.3k
}
log.cc:_ZN2yb9ScopeExitIZNS_3log3Log6CopyToERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE3$_3EENS_15ScopeExitLambdaINS3_16remove_referenceIT_E4typeEEEOSF_
Line
Count
Source
50
117
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
117
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
117
}
Unexecuted instantiation: catalog_manager_ent.cc:_ZN2yb9ScopeExitIZNS_6master10enterprise14CatalogManager18ImportSnapshotMetaEPKNS1_27ImportSnapshotMetaRequestPBEPNS1_28ImportSnapshotMetaResponsePBEE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSD_
ql_processor.cc:_ZN2yb9ScopeExitIZNS_2ql11QLProcessor5ParseERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS3_10unique_ptrINS1_9ParseTreeENS3_14default_deleteISD_EEEEbRKNS3_10shared_ptrINS_10MemTrackerEEEbE3$_0EENS_15ScopeExitLambdaINS3_16remove_referenceIT_E4typeEEEOSQ_
Line
Count
Source
50
336k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
336k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
336k
}
db_impl.cc:_ZN2yb9ScopeExitIZN7rocksdb6DBImpl15BackgroundFlushEPbPNS1_10JobContextEPNS1_9LogBufferEPNS1_16ColumnFamilyDataEE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSE_
Line
Count
Source
50
31.8k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
31.8k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
31.8k
}
db_impl.cc:_ZN2yb9ScopeExitIZN7rocksdb6DBImpl16ApplyVersionEditEPNS1_11VersionEditEE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS9_
Line
Count
Source
50
242k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
242k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
242k
}
block_based_table_reader.cc:_ZN2yb9ScopeExitIZN7rocksdb15BlockBasedTable12GetMiddleKeyEvE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
46
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
46
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
46
}
webserver.cc:_ZN2yb9ScopeExitIZNKS_9Webserver17GetBoundAddressesEPNSt3__16vectorIN5boost4asio2ip14basic_endpointINS6_3tcpEEENS2_9allocatorIS9_EEEEE3$_0EENS_15ScopeExitLambdaINS2_16remove_referenceIT_E4typeEEEOSH_
Line
Count
Source
50
20.7k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
20.7k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
20.7k
}
tablet_snapshots.cc:_ZN2yb9ScopeExitIZNS_6tablet15TabletSnapshots6CreateERKNS1_18CreateSnapshotDataEE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSA_
Line
Count
Source
50
14
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
14
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
14
}
Unexecuted instantiation: tablet.cc:_ZN2yb9ScopeExitIZNS_6tablet6Tablet21ModifyFlushedFrontierERKNS_5docdb17ConsensusFrontierEN7rocksdb24FrontierModificationModeEE3$_8EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSD_
tablet.cc:_ZN2yb9ScopeExitIZNS_6tablet6Tablet17PauseWritePermitsENSt3__16chrono10time_pointINS_15CoarseMonoClockENS4_8durationIxNS3_5ratioILl1ELl1000000000EEEEEEEE3$_9EENS_15ScopeExitLambdaINS3_16remove_referenceIT_E4typeEEEOSF_
Line
Count
Source
50
18.0k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
18.0k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
18.0k
}
tablet.cc:_ZN2yb9ScopeExitIZNS_6tablet6Tablet16GetPermitToWriteENSt3__16chrono10time_pointINS_15CoarseMonoClockENS4_8durationIxNS3_5ratioILl1ELl1000000000EEEEEEEE4$_10EENS_15ScopeExitLambdaINS3_16remove_referenceIT_E4typeEEEOSF_
Line
Count
Source
50
1.75M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1.75M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1.75M
}
_ZN2yb9ScopeExitIZNS_6tablet15TabletBootstrap28PlayUpdateTransactionRequestEPNS_9consensus12ReplicateMsgENS_17StronglyTypedBoolINS1_29AlreadyAppliedToRegularDB_TagEEEEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSD_
Line
Count
Source
50
39.4k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
39.4k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
39.4k
}
Unexecuted instantiation: transaction_coordinator.cc:_ZN2yb9ScopeExitIZNS_6tablet22TransactionCoordinator4Impl19ResolveSealedStatusERKNS_17StronglyTypedUuidINS_17TransactionId_TagEEENS_10HybridTimeERKNSt3__16vectorINS1_12_GLOBAL__N_121ExpectedTabletBatchesENSA_9allocatorISD_EEEEbPNSA_11unique_lockINSA_5mutexEEEEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceIT_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6tablet17TransactionLoader8Executor7ExecuteEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Line
Count
Source
50
25.8k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
25.8k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
25.8k
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6tablet22TransactionParticipant4Impl14ResolveIntentsENS_10HybridTimeENSt3__16chrono10time_pointINS_15CoarseMonoClockENS6_8durationIxNS5_5ratioILl1ELl1000000000EEEEEEEEUlvE_EENS_15ScopeExitLambdaINS5_16remove_referenceIT_E4typeEEEOSH_
pg_client_session.cc:_ZN2yb9ScopeExitIZNS_7tserver12_GLOBAL__N_117PrepareOperationsERKNS1_18PgPerformRequestPBEPNS_6client9YBSessionEPNS1_12PgTableCacheEE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSF_
Line
Count
Source
50
775k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
775k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
775k
}
pg_table_cache.cc:_ZN2yb9ScopeExitIZNS_7tserver12PgTableCache4Impl9LoadEntryERKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEPNS1_12_GLOBAL__N_110CacheEntryEEUlvE_EENS_15ScopeExitLambdaINS4_16remove_referenceIT_E4typeEEEOSJ_
Line
Count
Source
50
36.0k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
36.0k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
36.0k
}
read_query.cc:_ZN2yb9ScopeExitIZNS_7tserver12_GLOBAL__N_19ReadQuery10DoReadImplEvE3$_2EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Line
Count
Source
50
3.93M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
3.93M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
3.93M
}
remote_bootstrap_client.cc:_ZN2yb9ScopeExitIZNS_7tserver21RemoteBootstrapClient11DownloadWALEyE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
2.24k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2.24k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2.24k
}
tablet_service.cc:_ZN2yb9ScopeExitIZNS_7tserver22TabletServiceAdminImpl13BackfillIndexEPKNS1_22BackfillIndexRequestPBEPNS1_23BackfillIndexResponsePBENS_3rpc10RpcContextEE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSE_
Line
Count
Source
50
2.71k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2.71k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2.71k
}
ts_tablet_manager.cc:_ZN2yb9ScopeExitIZNS_7tserver15TSTabletManager16ApplyTabletSplitEPNS_6tablet14SplitOperationEPNS_3log3LogEE3$_3EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSD_
Line
Count
Source
50
44
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
44
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
44
}
ts_tablet_manager.cc:_ZN2yb9ScopeExitIZNS_7tserver15TSTabletManager20StartRemoteBootstrapERKNS_9consensus29StartRemoteBootstrapRequestPBEE3$_4EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSB_
Line
Count
Source
50
4.70k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
4.70k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
4.70k
}
ts_tablet_manager.cc:_ZN2yb9ScopeExitIZNS_7tserver15TSTabletManager20StartRemoteBootstrapERKNS_9consensus29StartRemoteBootstrapRequestPBEE3$_5EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSB_
Line
Count
Source
50
958
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
958
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
958
}
Unexecuted instantiation: ts_tablet_manager.cc:_ZN2yb9ScopeExitIZNS_7tserver15TSTabletManager20AllowedHistoryCutoffEPNS_6tablet17RaftGroupMetadataEE3$_9EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSA_
mini_tablet_server.cc:_ZN2yb9ScopeExitIZNS_7tserver16MiniTabletServer9ReconnectEvE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
415
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
415
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
415
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_11redisserver11RedisClient4Impl6CommitEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Unexecuted instantiation: client.cc:_ZN2yb9ScopeExitIZNS_6client15YBClientBuilder5BuildEONSt3__110unique_ptrINS_3rpc9MessengerENS3_14default_deleteIS6_EEEEE3$_1EENS_15ScopeExitLambdaINS3_16remove_referenceIT_E4typeEEEOSE_
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_23AlterNamespaceRequestPBENS5_24AlterNamespaceResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_19AlterTableRequestPBENS5_20AlterTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
322
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
322
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
322
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_22BackfillIndexRequestPBENS5_23BackfillIndexResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
89
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
89
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
89
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_34ChangeMasterClusterConfigRequestPBENS5_35ChangeMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_24CreateNamespaceRequestPBENS5_25CreateNamespaceResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
1.80k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1.80k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1.80k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20CreateTableRequestPBENS5_21CreateTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
3.20k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
3.20k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
3.20k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25CreateTablegroupRequestPBENS5_26CreateTablegroupResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
2
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_21CreateUDTypeRequestPBENS5_22CreateUDTypeResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
46
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
46
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
46
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_24DeleteNamespaceRequestPBENS5_25DeleteNamespaceResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
1.51k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1.51k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1.51k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20DeleteTableRequestPBENS5_21DeleteTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
2.43k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2.43k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2.43k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25DeleteTablegroupRequestPBENS5_26DeleteTablegroupResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_21DeleteUDTypeRequestPBENS5_22DeleteUDTypeResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
53
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
53
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
53
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20FlushTablesRequestPBENS5_21FlushTablesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_28GetTablegroupSchemaRequestPBENS5_29GetTablegroupSchemaResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_33GetColocatedTabletSchemaRequestPBENS5_34GetColocatedTabletSchemaResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_31GetMasterClusterConfigRequestPBENS5_32GetMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25GetNamespaceInfoRequestPBENS5_26GetNamespaceInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
1.77k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1.77k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1.77k
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_23GetTableSchemaRequestPBENS5_24GetTableSchemaResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_22GetUDTypeInfoRequestPBENS5_23GetUDTypeInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
55
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
55
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
55
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_25IsAlterTableDoneRequestPBENS5_26IsAlterTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
649
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
649
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
649
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_30IsCreateNamespaceDoneRequestPBENS5_31IsCreateNamespaceDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
2.03k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2.03k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2.03k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_26IsCreateTableDoneRequestPBENS5_27IsCreateTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
15.9k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
15.9k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
15.9k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_30IsDeleteNamespaceDoneRequestPBENS5_31IsDeleteNamespaceDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
1.53k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1.53k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1.53k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_26IsDeleteTableDoneRequestPBENS5_27IsDeleteTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
5.58k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
5.58k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
5.58k
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_26IsFlushTablesDoneRequestPBENS5_27IsFlushTablesDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_28IsTruncateTableDoneRequestPBENS5_29IsTruncateTableDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
8.89k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
8.89k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
8.89k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_23ListNamespacesRequestPBENS5_24ListNamespacesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
4.40k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
4.40k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
4.40k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_24ListTablegroupsRequestPBENS5_25ListTablegroupsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_19ListTablesRequestPBENS5_20ListTablesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
170
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
170
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
170
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_20ListUDTypesRequestPBENS5_21ListUDTypesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_22TruncateTableRequestPBENS5_23TruncateTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
3.05k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
3.05k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
3.05k
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDdlProxyENS5_32ValidateReplicationInfoRequestPBENS5_33ValidateReplicationInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master16MasterAdminProxyENS5_37CreateTransactionStatusTableRequestPBENS5_38CreateTransactionStatusTableResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_26GetTableLocationsRequestPBENS5_27GetTableLocationsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
2.80k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2.80k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2.80k
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_27GetTabletLocationsRequestPBENS5_28GetTabletLocationsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_36GetTransactionStatusTabletsRequestPBENS5_37GetTransactionStatusTabletsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
2.01k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2.01k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2.01k
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_29GetYsqlCatalogConfigRequestPBENS5_30GetYsqlCatalogConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_23RedisConfigGetRequestPBENS5_24RedisConfigGetResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
291
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
291
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
291
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_23RedisConfigSetRequestPBENS5_24RedisConfigSetResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master17MasterClientProxyENS5_25ReservePgsqlOidsRequestPBENS5_26ReservePgsqlOidsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
380
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
380
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
380
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_23IsLoadBalancedRequestPBENS5_24IsLoadBalancedResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
178
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
178
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
178
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_27IsLoadBalancerIdleRequestPBENS5_28IsLoadBalancerIdleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
2.27k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2.27k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2.27k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_30ListLiveTabletServersRequestPBENS5_31ListLiveTabletServersResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
2
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_20ListMastersRequestPBENS5_21ListMastersResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_26ListTabletServersRequestPBENS5_27ListTabletServersResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
2.86k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2.86k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2.86k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_18AlterRoleRequestPBENS5_19AlterRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
58
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
58
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
58
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_19CreateRoleRequestPBENS5_20CreateRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
757
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
757
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
757
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_19DeleteRoleRequestPBENS5_20DeleteRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
730
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
730
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
730
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_23GetPermissionsRequestPBENS5_24GetPermissionsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
118k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
118k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
118k
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_30GrantRevokePermissionRequestPBENS5_31GrantRevokePermissionResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
721
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
721
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
721
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master14MasterDclProxyENS5_24GrantRevokeRoleRequestPBENS5_25GrantRevokeRoleResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
52
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
52
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
52
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_24CreateCDCStreamRequestPBENS5_25CreateCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
2.69k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
2.69k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
2.69k
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_24DeleteCDCStreamRequestPBENS5_25DeleteCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_27GetCDCDBStreamInfoRequestPBENS5_28GetCDCDBStreamInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_21GetCDCStreamRequestPBENS5_22GetCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
1
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_23ListCDCStreamsRequestPBENS5_24ListCDCStreamsResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_24UpdateCDCStreamRequestPBENS5_25UpdateCDCStreamResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_38UpdateConsumerOnProducerSplitRequestPBENS5_39UpdateConsumerOnProducerSplitResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master16MasterAdminProxyENS5_20FlushTablesRequestPBENS5_21FlushTablesResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
7
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
7
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
7
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master16MasterAdminProxyENS5_26IsFlushTablesDoneRequestPBENS5_27IsFlushTablesDoneResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
19
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
19
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
19
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_31GetMasterClusterConfigRequestPBENS5_32GetMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
6
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
6
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
6
}
_ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master18MasterClusterProxyENS5_34ChangeMasterClusterConfigRequestPBENS5_35ChangeMasterClusterConfigResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
Line
Count
Source
50
4
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
4
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
4
}
Unexecuted instantiation: _ZN2yb9ScopeExitIZNS_6client8YBClient4Data19SyncLeaderMasterRpcINS_6master22MasterReplicationProxyENS5_32ValidateReplicationInfoRequestPBENS5_33ValidateReplicationInfoResponsePBEEENS_6StatusENSt3__16chrono10time_pointINS_15CoarseMonoClockENSB_8durationIxNSA_5ratioILl1ELl1000000000EEEEEEERKT0_PT1_PKcRKMT_KFvSL_SN_PNS_3rpc13RpcControllerENSA_8functionIFvvEEEEPiEUlvE_EENS_15ScopeExitLambdaINSA_16remove_referenceISQ_E4typeEEEOSQ_
_ZN2yb9ScopeExitIZNS_6client8internal9MetaCache19DoLookupTabletByKeyINS_10SharedLockINSt3__118shared_timed_mutexEEEEEbRKNS6_10shared_ptrIKNS1_7YBTableEEERKNS9_IKNS1_27VersionedTablePartitionListEEERKNS9_IKNS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEEENS6_6chrono10time_pointINS_15CoarseMonoClockENSU_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEEPNS6_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEPSR_EUlvE_EENS_15ScopeExitLambdaINS6_16remove_referenceIT_E4typeEEEOS1H_
Line
Count
Source
50
11.0M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
11.0M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
11.0M
}
_ZN2yb9ScopeExitIZNS_6client8internal9MetaCache19DoLookupTabletByKeyINSt3__110lock_guardINS5_18shared_timed_mutexEEEEEbRKNS5_10shared_ptrIKNS1_7YBTableEEERKNS9_IKNS1_27VersionedTablePartitionListEEERKNS9_IKNS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEEENS5_6chrono10time_pointINS_15CoarseMonoClockENSU_8durationIxNS5_5ratioILl1ELl1000000000EEEEEEEPNS5_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEPSR_EUlvE_EENS_15ScopeExitLambdaINS5_16remove_referenceIT_E4typeEEEOS1H_
Line
Count
Source
50
46.7k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
46.7k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
46.7k
}
_ZN2yb9ScopeExitIZNS_6client8internal9MetaCache18DoLookupTabletByIdINS_10SharedLockINSt3__118shared_timed_mutexEEEEEbRKNS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKNS6_10shared_ptrIKNS1_7YBTableEEENS_17StronglyTypedBoolINS_6master19IncludeInactive_TagEEENS6_6chrono10time_pointINS_15CoarseMonoClockENSR_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEENSN_INS1_12UseCache_TagEEEPNS6_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEEUlvE_EENS_15ScopeExitLambdaINS6_16remove_referenceIT_E4typeEEEOS1F_
Line
Count
Source
50
1.17M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1.17M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1.17M
}
_ZN2yb9ScopeExitIZNS_6client8internal9MetaCache18DoLookupTabletByIdINSt3__110lock_guardINS5_18shared_timed_mutexEEEEEbRKNS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKNS5_10shared_ptrIKNS1_7YBTableEEENS_17StronglyTypedBoolINS_6master19IncludeInactive_TagEEENS5_6chrono10time_pointINS_15CoarseMonoClockENSR_8durationIxNS5_5ratioILl1ELl1000000000EEEEEEENSN_INS1_12UseCache_TagEEEPNS5_8functionIFvRKNS_6ResultI13scoped_refptrINS2_12RemoteTabletEEEEEEEEUlvE_EENS_15ScopeExitLambdaINS5_16remove_referenceIT_E4typeEEEOS1F_
Line
Count
Source
50
8.25k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
8.25k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
8.25k
}
_ZN2yb9ScopeExitIZNS_6client13YBTransaction4Impl16ApplyChildResultERKNS_24ChildTransactionResultPBEEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSB_
Line
Count
Source
50
14.1k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
14.1k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
14.1k
}
ybc_util.cc:_ZN2yb9ScopeExitIZNS_12_GLOBAL__N_110InitGFlagsEPKcE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Line
Count
Source
50
3.45k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
3.45k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
3.45k
}
conflict_resolution.cc:_ZN2yb9ScopeExitIZNS_5docdb12_GLOBAL__N_116ConflictResolver19ReadIntentConflictsENS_10EnumBitSetINS1_10IntentTypeEEEPNS1_8KeyBytesENS_10WaitPolicyEEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSE_
Line
Count
Source
50
10.3M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
10.3M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
10.3M
}
pgsql_operation.cc:_ZN2yb9ScopeExitIZNS_5docdb19PgsqlWriteOperation5ApplyERKNS1_21DocOperationApplyDataEE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSA_
Line
Count
Source
50
3.09M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
3.09M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
3.09M
}
pgsql_operation.cc:_ZN2yb9ScopeExitIZNS_5docdb18PgsqlReadOperation7ExecuteERKNS1_12YQLStorageIfENSt3__16chrono10time_pointINS_15CoarseMonoClockENS7_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEERKNS_14ReadHybridTimeEbRKNS_6SchemaEPSJ_PNS_10faststringEPNS_10HybridTimeEE3$_1EENS_15ScopeExitLambdaINS6_16remove_referenceIT_E4typeEEEOST_
Line
Count
Source
50
1.50M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1.50M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1.50M
}
shared_lock_manager.cc:_ZN2yb9ScopeExitIZNS_5docdb16LockedBatchEntry4LockENS_10EnumBitSetINS1_10IntentTypeEEENSt3__16chrono10time_pointINS_15CoarseMonoClockENS7_8durationIxNS6_5ratioILl1ELl1000000000EEEEEEEE3$_0EENS_15ScopeExitLambdaINS6_16remove_referenceIT_E4typeEEEOSI_
Line
Count
Source
50
228k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
228k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
228k
}
Unexecuted instantiation: docdb_test_util.cc:_ZN2yb9ScopeExitIZNS_5docdb19DocDBRocksDBFixture25FullyCompactHistoryBeforeENS_10HybridTimeEE3$_2EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
Unexecuted instantiation: docdb_test_util.cc:_ZN2yb9ScopeExitIZNS_5docdb19DocDBRocksDBFixture15MinorCompactionENS_10HybridTimeEmlE3$_3EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
_ZN2yb9ScopeExitIZNS_6pggate8PgClient4Impl12PerformAsyncEPNS_7tserver18PgPerformOptionsPBEPNSt3__16vectorINS7_10shared_ptrINS1_7PgsqlOpEEENS7_9allocatorISB_EEEERKNS7_8functionIFvRKNS1_13PerformResultEEEEEUlvE_EENS_15ScopeExitLambdaINS7_16remove_referenceIT_E4typeEEEOSR_
Line
Count
Source
50
774k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
774k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
774k
}
Unexecuted instantiation: pg_wrapper.cc:_ZN2yb9ScopeExitIZNS_9pgwrapper9PgWrapper13InitDbForYSQLERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESB_iE3$_0EENS_15ScopeExitLambdaINS3_16remove_referenceIT_E4typeEEEOSF_
curl_util.cc:_ZN2yb9ScopeExitIZNS_8EasyCurl9DoRequestERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKN5boost8optionalIS9_EESF_xPNS_10faststringERKNS2_6vectorIS8_NS6_IS8_EEEEE3$_0EENS_15ScopeExitLambdaINS2_16remove_referenceIT_E4typeEEEOSQ_
Line
Count
Source
50
245
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
245
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
245
}
Unexecuted instantiation: delayer.cc:_ZN2yb9ScopeExitIZNS_7Delayer7ExecuteEvE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
net_util.cc:_ZN2yb9ScopeExitIZNS_17GetLocalAddressesEPNSt3__16vectorIN5boost4asio2ip7addressENS1_9allocatorIS6_EEEENS_13AddressFilterEE3$_1EENS_15ScopeExitLambdaINS1_16remove_referenceIT_E4typeEEEOSF_
Line
Count
Source
50
22.9k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
22.9k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
22.9k
}
priority_thread_pool.cc:_ZN2yb9ScopeExitIZNS_12_GLOBAL__N_124PriorityThreadPoolWorker3RunEvEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS7_
Line
Count
Source
50
14.6k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
14.6k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
14.6k
}
shared_mem.cc:_ZN2yb9ScopeExitIZNS_19SharedMemorySegment6CreateEmE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
11.5k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
11.5k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
11.5k
}
subprocess.cc:_ZN2yb9ScopeExitIZNS_10Subprocess17StartWithForkExecEvE3$_0EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Line
Count
Source
50
5.86k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
5.86k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
5.86k
}
Unexecuted instantiation: subprocess.cc:_ZN2yb9ScopeExitIZNS_10Subprocess19StartWithPosixSpawnEvE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Unexecuted instantiation: subprocess.cc:_ZN2yb9ScopeExitIZNS_10Subprocess19StartWithPosixSpawnEvE3$_2EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS6_
Unexecuted instantiation: subprocess.cc:_ZN2yb9ScopeExitIZNS_10Subprocess33CloseFileDescriptorsForPosixSpawnEPPvE3$_3EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOS8_
reactor.cc:_ZN2yb9ScopeExitIZNS_3rpc7Reactor12AsyncHandlerERN2ev5asyncEiE3$_4EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSA_
Line
Count
Source
50
41.8M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
41.8M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
41.8M
}
remote_method.cc:_ZN2yb9ScopeExitIZNS_3rpc12RemoteMethodC1ENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEES9_E3$_0EENS_15ScopeExitLambdaINS3_16remove_referenceIT_E4typeEEEOSD_
Line
Count
Source
50
1.60M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1.60M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1.60M
}
secure_stream.cc:_ZN2yb9ScopeExitIZNS_3rpc12_GLOBAL__N_113SecureRefiner6VerifyEbP17x509_store_ctx_stE3$_1EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSA_
Line
Count
Source
50
1.30k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
1.30k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
1.30k
}
_ZN2yb9ScopeExitIZNS_3rpc15ServicePoolImpl12CheckTimeoutExNSt3__16chrono10time_pointINS_15CoarseMonoClockENS4_8durationIxNS3_5ratioILl1ELl1000000000EEEEEEERKNS_6StatusEEUlvE_EENS_15ScopeExitLambdaINS3_16remove_referenceIT_E4typeEEEOSI_
Line
Count
Source
50
237k
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
237k
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
237k
}
thread_pool.cc:_ZN2yb9ScopeExitIZNS_3rpc12_GLOBAL__N_16Worker7PopTaskEPPNS1_14ThreadPoolTaskEEUlvE_EENS_15ScopeExitLambdaINSt3__116remove_referenceIT_E4typeEEEOSB_
Line
Count
Source
50
48.4M
ScopeExitLambda<typename std::remove_reference<F>::type> ScopeExit(F&& f) {
51
48.4M
  return ScopeExitLambda<typename std::remove_reference<F>::type>(std::forward<F>(f));
52
48.4M
}
53
54
} // namespace yb
55
56
#endif // YB_UTIL_SCOPE_EXIT_H