nested functions search


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting nested functions search
# 1  
Old 03-05-2009
Bug nested functions search

I want to write a shell script which traverses a cpp file.

Suppose there is function fncn_name6 .. which is called by fncn_name5
which in turn called by fncn_name4 and so on .. in a single cpp class.

ie

fncn_name1
{
fncn_name2
{
fncn_name3
}
{
fncn_name4
}
}

so fncn_name1 is calling function for fncn_name2, fncn_name2 for fncn_name 3 and so on ..

I need to get this flow ... which fncn calls whom....

Please help me wid ur suggestions
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Nested search in a file and replace the inner search

Hi Team, I am new to unix, please help me in this. I have a file named properties. The content of the file is : ##Mobile props east.url=https://qa.east.corp.com/prop/end west.url=https://qa.west.corp.com/prop/end south.url=https://qa.south.corp.com/prop/end... (2 Replies)
Discussion started by: tolearn
2 Replies

2. Shell Programming and Scripting

How to execute functions or initiate functions as command line parameters for below requirement?

I have 7 functions those need to be executed as command line inputs, I tried with below code it’s not executing function. If I run the ./script 2 then fun2 should execute , how to initiate that function I tried case and if else also, how to initiate function from command line if then... (8 Replies)
Discussion started by: saku
8 Replies

3. Shell Programming and Scripting

Nested if else

Hi, i m trying to create script which logic is like below. if ; then x=`cat /tmp/testoutput.log | grep STOP | wc -l` y=`cat /tmp/testoutput.log | grep RUN | wc -l` if ; then echo "process stop" if ; then echo "process running " else echo "file not found" fi ----------------... (2 Replies)
Discussion started by: tapia
2 Replies

4. Shell Programming and Scripting

Nested case

Hi there, I have nested case in my script. I am asking user, want to continue? if user press y/Y then my inner case should continue, rather than that my code start from beginning. I would like to continue my inner case until user press n or N. Is any one tell me how can I do? Thanking You,... (2 Replies)
Discussion started by: kasparov
2 Replies

5. Shell Programming and Scripting

Nested If condition

Hi I have a requirement to create a 2 folder based on there existance if then cd $var_name if then cd $var_name3 mv -fi *.* $var_TargetPath/$var_name/$var_name3 else mkdir -p "$var_name3" chmod 755 "$var_name3" mv -fi *.* $var_TargetPath/$var_name/$var_name3 else mkdir... (7 Replies)
Discussion started by: magesh_bala
7 Replies

6. Shell Programming and Scripting

Awk Script: Nested search using different patter

Hi Friends. Please have a look at dummy file. I need to extract from this file: 1. Counts of event= 2. the 2nd coulmn is unique call id of this transaction. Based on that, i have to search for txstatus= . Note: Values of event, calltype and txstatus can be anything. I want to print... (1 Reply)
Discussion started by: itsmesanju
1 Replies

7. Shell Programming and Scripting

PHP: Search Multi-Dimensional(nested) array and export values of currenly worked on array.

Hi All, I'm writing a nagios check that will see if our ldap servers are in sync... I got the status data into a nested array, I would like to search key of each array and if "OK" is NOT present, echo other key=>values in the current array to a variable so...eg...let take the single array... (1 Reply)
Discussion started by: zeekblack
1 Replies

8. Shell Programming and Scripting

Bash: Nested functions and including other scripts

Hello. I have the following problem with bash code: function fl1_load_modules_and_get_list() ........... for module in $FL_MODULES_TO_PROCESS do source "${FL_MODULE_DIR}/${module}/module.sh" done ........... } function fl1_handle_install { local... (12 Replies)
Discussion started by: FractalizeR
12 Replies

9. UNIX for Advanced & Expert Users

vi search & replace functions

I'm trying to do a global search and replace in vi. I am trying to replace a string, call it "BOB" with a carriage return and can't seem to find a reference to it. Command syntax s%/BOB/???/g What would I substitute the "???" with? (7 Replies)
Discussion started by: barnettdk
7 Replies
Login or Register to Ask a Question
zipios::GZIPOutputStream(3)				     Library Functions Manual				       zipios::GZIPOutputStream(3)

NAME
zipios::GZIPOutputStream - SYNOPSIS
#include <gzipoutputstream.h> Public Member Functions GZIPOutputStream (std::ostream &os) GZIPOutputStream constructor. GZIPOutputStream (const std::string &filename) GZIPOutputStream constructor. void setFilename (const string &filename) void setComment (const string &comment) void close () Calls finish and closes the stream. void finish () Finishes the stream. virtual ~GZIPOutputStream () Destructor. Detailed Description GZIPOutputStream is an ostream that writes the output to a gz file. The interface approximates the interface of the Java GZIPOutputStream. Definition at line 17 of file gzipoutputstream.h. Constructor &; Destructor Documentation zipios::GZIPOutputStream::GZIPOutputStream (std::ostream &os) [explicit] GZIPOutputStream constructor. Parameters: os ostream to which the compressed zip archive is written. Definition at line 13 of file gzipoutputstream.cpp. zipios::GZIPOutputStream::GZIPOutputStream (const std::string &filename) [explicit] GZIPOutputStream constructor. filename to write the gzip archive to. Definition at line 22 of file gzipoutputstream.cpp. zipios::GZIPOutputStream::~GZIPOutputStream () [virtual] Destructor. Definition at line 51 of file gzipoutputstream.cpp. Member Function Documentation void zipios::GZIPOutputStream::close () Calls finish and closes the stream. Definition at line 39 of file gzipoutputstream.cpp. void zipios::GZIPOutputStream::finish () Finishes the stream. Definition at line 46 of file gzipoutputstream.cpp. Author Generated automatically by Doxygen for Zipios++ from the source code. Zipios++ Mon Oct 10 2011 zipios::GZIPOutputStream(3)