Functions | |
def | get_libraries |
def | get_symbols |
Variables | |
string | addr_re = r"(?P<address>[0-9a-f]{1,16})?" |
string | code_re = r"(?P<code>[a-zA-Z])" |
tuple | demangled = set() |
tuple | dependencies = collections.defaultdict(set) |
tuple | deps = set() |
tuple | dm = subprocess.check_output(["c++filt", u]) |
tuple | filetype = subprocess.check_output(["file", fpth]) |
tuple | fpth = os.path.realpath(os.path.join(dirpath, f)) |
tuple | G = nx.DiGraph() |
tuple | H = nx.DiGraph() |
tuple | ldd_line_re = re.compile(r"\s+(.*) => (.*) \(0x") |
tuple | libraries = collections.defaultdict(set) |
string | name = node+".dot" |
tuple | nm_line_re |
list | paths = os.environ['LD_LIBRARY_PATH'] |
tuple | provides = collections.defaultdict(set) |
tuple | requires = collections.defaultdict(set) |
tuple | s = nx.dfs_successors(G, node) |
string | symbol_demunged_re = r"(?P<symbol>[a-zA-Z0-9_.$@:&()<>{}\[\]|^!%,~*+-=# ]+)" |
string | symbol_re = r"(?P<symbol>[a-zA-Z0-9_.$@]+)" |
tuple | symbols_re_skip = re.compile("(@@)") |
tuple | T = nx.dfs_tree(H, node) |
tuple | unmet = set() |
def symbols.get_libraries | ( | fname | ) |
Definition at line 38 of file symbols.py.
References PVValHelper.add().
def symbols.get_symbols | ( | fname | ) |
Definition at line 25 of file symbols.py.
References PVValHelper.add().
string symbols.addr_re = r"(?P<address>[0-9a-f]{1,16})?" |
Definition at line 10 of file symbols.py.
string symbols.code_re = r"(?P<code>[a-zA-Z])" |
Definition at line 11 of file symbols.py.
tuple symbols.demangled = set() |
Definition at line 70 of file symbols.py.
Referenced by pat::UserData.checkDictionaries(), dqm::implementation::DQMStore.printTrace(), edm.typeDemangle(), and pat::UserData.typeNameFor().
tuple symbols.dependencies = collections.defaultdict(set) |
Definition at line 21 of file symbols.py.
Referenced by EcalDQMonitorTask.EcalDQMonitorTask().
tuple symbols.deps = set() |
Definition at line 61 of file symbols.py.
Referenced by edm.checkForModuleDependencyCorrectness(), edm::eventsetup.findDependents(), ProcessCallGraph.preBeginJob(), MuIsoDepositProducer.produce(), CandIsoDepositProducer.produce(), L3MuonIsolationProducer.produce(), and L2MuonIsolationProducer.produce().
tuple symbols.dm = subprocess.check_output(["c++filt", u]) |
Definition at line 75 of file symbols.py.
Referenced by LMFIOV.fetchIdSql(), reco::tau::RecoTauConstructor.get(), MCTruthHelper< P >.isDirectHardProcessTauDecayProduct(), MCTruthHelper< P >.isDirectPromptTauDecayProduct(), MCTruthHelper< P >.isDirectTauDecayProduct(), L1DataEmulDigi.L1DataEmulDigi(), heppy::RochCor.momcor_data(), heppy::RochCor2012.momcor_data(), heppy::RochCor.momcor_mc(), heppy::RochCor2012.momcor_mc(), PseudoTopProducer.produce(), reco::PFTau.setDecayMode(), reco::tau::RecoTauBuilderConePlugin.setTauQuantities(), LMFIOV.writeDBSql(), and LMFRunIOV.writeDBSql().
tuple symbols.filetype = subprocess.check_output(["file", fpth]) |
Definition at line 55 of file symbols.py.
Referenced by TrackerMap.printall(), TrackerMap.save(), TrackerMap.save_as_fectrackermap(), TrackerMap.save_as_fedtrackermap(), TrackerMap.save_as_HVtrackermap(), and TrackerMap.save_as_psutrackermap().
tuple symbols.fpth = os.path.realpath(os.path.join(dirpath, f)) |
Definition at line 54 of file symbols.py.
tuple symbols.G = nx.DiGraph() |
Definition at line 80 of file symbols.py.
tuple symbols.H = nx.DiGraph() |
Definition at line 98 of file symbols.py.
tuple symbols.ldd_line_re = re.compile(r"\s+(.*) => (.*) \(0x") |
Definition at line 17 of file symbols.py.
tuple symbols.libraries = collections.defaultdict(set) |
Definition at line 22 of file symbols.py.
string symbols.name = node+".dot" |
Definition at line 105 of file symbols.py.
tuple symbols.nm_line_re |
Definition at line 15 of file symbols.py.
list symbols.paths = os.environ['LD_LIBRARY_PATH'] |
Definition at line 49 of file symbols.py.
tuple symbols.provides = collections.defaultdict(set) |
Definition at line 20 of file symbols.py.
tuple symbols.requires = collections.defaultdict(set) |
Definition at line 19 of file symbols.py.
tuple symbols.s = nx.dfs_successors(G, node) |
Definition at line 87 of file symbols.py.
Definition at line 13 of file symbols.py.
Definition at line 12 of file symbols.py.
tuple symbols.symbols_re_skip = re.compile("(@@)") |
Definition at line 14 of file symbols.py.
tuple symbols.T = nx.dfs_tree(H, node) |
Definition at line 104 of file symbols.py.
tuple symbols.unmet = set() |
Definition at line 69 of file symbols.py.