Questions tagged [call-flow]

A call flow, or call graph, is a representation of the calling relationships between subroutines in a program.

10 questions
33
votes
1 answer

Creating Dependency Graphs in Python

I have inherited a huge codebase that I need to make some small changes into. I was wondering if there are utilities that would parse python code and give dependencies between functions, as in if I make changes to a function I want to be sure that I…
anijhaw
  • 7,690
  • 7
  • 32
  • 36
10
votes
2 answers

Practical differences between control flow graph and call (flow?) graph?

Wikipedia has a definition for a control flow graph. I've also heard terminology thrown around referring to 'call (flow?) graph', but can't find any relevant resources. What is the relationship between the two?
ChaimKut
  • 2,715
  • 2
  • 34
  • 59
3
votes
2 answers

Generate a call graph for a java program - Eclipse

Is there any sort of support in Eclipse whereby I can programatically generate a static call graph for a single method in a class, at build time? I would like to be able to determine all of the methods that may be potentially called from a given…
Joeblackdev
  • 6,967
  • 23
  • 64
  • 103
3
votes
3 answers

Tool for generating a call flow graph [C C++ solaris linux]

I'm quite fond of IDA, but I'm working in Solaris on this project. I do have a linux machine, and if nothing is in the same league as IDA then I'll convince management to purchase a license for it. Barring that, I'm looking for alternative…
Brian Vandenberg
  • 3,611
  • 2
  • 33
  • 49
3
votes
1 answer

How to create call graph for c/c++ code in eclipse?

I have read on internet that cdt is basically used for generating call graphs for c/c++ code in eclipse. I have installed eclipse juna's latest version along with the MinGW and cygwin to compile and run c/c++ code. My question is do I have to…
user1575601
  • 317
  • 6
  • 16
1
vote
1 answer

Twilio Queue management issue / best practice

We are setting up a call center using Twilio. At the end of the greetings and menus, our users are redirected to a queue waiting for the next available agent. We would like the system to: - Call automatically the next available agent. This is to…
1
vote
2 answers

RTP SSRC: How to know call direction

I am using jNetPcap to decode rtp from tcpdumps. Currently I use the SIP Invite Message and the source IP (and also checking via source ips..) to detect the directions (forward, reverse) from the call.. this is working but not really how it is…
Stefan
  • 2,555
  • 2
  • 30
  • 60
0
votes
1 answer

WebAssembly: Reconstructing the stack from scratch

By transforming .wasm source files or interacting with a suitable debugger with Javascript it should be possible to serialize the full Wasm execution state (mainly the stack, call frames, local variables etc.). I wonder if it is possible to…
2080
  • 731
  • 7
  • 24
0
votes
2 answers

Schema and call flow in Voltdb

what is the format of schema when we create a new table using Voltdb? I'm a newbie. I have researched for a while and read the explanation in this https://docs.voltdb.com/UsingVoltDB/ChapDesignSchema.php Please give me more detal about the schema…
theasker228
  • 115
  • 1
  • 2
  • 9
-2
votes
1 answer

How to read Visio Process Flow

Is there any way to read the process flow of Visio flow. if we have Visio document like the below Can I read the process like From Begin to Process 1 Then From Process 1 to Decision 1. If the Decision 1 is Yes then Process 3 else Process 2 . From…