#include <kernel_types.h>#include <signaldata/SignalDataPrint.hpp>Include dependency graph for DebuggerNames.hpp:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| const char * | getSignalName (GlobalSignalNumber gsn, const char *defualtValue="Unknown") |
| GlobalSignalNumber | getGsn (const char *signalName) |
| const char * | getBlockName (BlockNumber blockNo, const char *defValue=0) |
| BlockNumber | getBlockNo (const char *blockName) |
| SignalDataPrintFunction | findPrintFunction (GlobalSignalNumber) |
| SignalDataPrintFunction findPrintFunction | ( | GlobalSignalNumber | ) |
Find a print function for a signal
RETURNS: 0 if none found
Referenced by SignalLoggerManager::printSignalData().
Here is the caller graph for this function:

| const char* getBlockName | ( | BlockNumber | blockNo, | |
| const char * | defValue = 0 | |||
| ) |
getBlockName
NOTES: Very quick
RETURNS: Block name or defValue if not a valid block number
Referenced by SimulatedBlock::allocRecord(), dumpJam(), Dbdih::execDUMP_STATE_ORD(), SimulatedBlock::execSIGNAL_DROPPED_REP(), execute(), SimulatedBlock::fsRefError(), ErrorReporter::handleAssert(), SignalLoggerManager::log(), operator<<(), printLCP_COMPLETE_REP(), printNF_COMPLETE_REP(), printPACKED_SIGNAL(), SignalLoggerManager::printSignalHeader(), SimulatedBlock::progError(), Ndbcntr::sendNdbSttor(), Ndbcntr::Missra::sendNextREAD_CONFIG_REQ(), Ndbcntr::Missra::sendNextSTTOR(), SimulatedBlock::sendSignal(), Filename::set(), SimulatedBlock::SimulatedBlock(), and Pgman::update_lsn().
Here is the caller graph for this function:

| BlockNumber getBlockNo | ( | const char * | blockName | ) |
getBlockNo
NOTES: Very slow
RETURNS: BlockNo or 0 if none found
Definition at line 142 of file DebuggerNames.cpp.
References localBlockNames, MIN_BLOCK_NO, NO_OF_BLOCKS, and strcmp().
Referenced by MgmtSrvr::getBlockNumber(), and SignalLoggerManager::log().
00142 { 00143 for(int i = 0; i<NO_OF_BLOCKS; i++) 00144 if(localBlockNames[i] != 0 && strcmp(localBlockNames[i], blockName) == 0) 00145 return i + MIN_BLOCK_NO; 00146 return 0; 00147 }
Here is the call graph for this function:

Here is the caller graph for this function:

| GlobalSignalNumber getGsn | ( | const char * | signalName | ) |
getGsn
NOTES: Very slow
RETURNS: Gsn or 0 if none found
Definition at line 125 of file DebuggerNames.cpp.
| const char* getSignalName | ( | GlobalSignalNumber | gsn, | |
| const char * | defualtValue = "Unknown" | |||
| ) |
getSignalName
NOTES: Very quick
RETURNS: Signal name or 0 if none found
Referenced by Dbdih::checkCopyTab(), execute(), printSIGNAL_DROPPED_REP(), SignalLoggerManager::printSignalHeader(), and SimulatedBlock::sendSignal().
Here is the caller graph for this function:

1.4.7

