Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

52
votes
7answers
32k views

How do you find out the caller function in JavaScript?

function main() { Hello(); } function Hello() { // How do you find out the caller function is 'main'? } Is there a way to find out the call stack at all?
12
votes
9answers
10k views

How to get JavaScript caller function line number? How to get JavaScript caller source URL?

I am using the following for getting the JavaScript caller function name: var callerFunc = arguments.callee.caller.toString(); callerFuncName = (callerFunc.substring(callerFunc.indexOf("function") + ...
10
votes
2answers
131 views

In Perl, what is the most reliable way to determine a coderef's package?

I have a number of higher order utility functions that take in a code reference and apply that code to some data. Some of these functions require localizing variables during the execution of the ...
7
votes
10answers
3k views

How can I find all the methods that call a given method in Java?

I need to get a list of all caller methods for a method of interest for me in Java. Is there a tool that can help me with this? Edit: I forgot to mention that I need to do this from a program. I'm ...
5
votes
3answers
173 views

c++ what happens if callee deletes caller?

is the behaviour in a c++ app defined if a callee function deletes the object in which the caller (member) function is defined? will the rest of the caller function body still be executed? will it run ...
4
votes
2answers
441 views

Pythonize Me: how to manage caller context variables in Python? (Python/Django)

I'm trying to refactor a fairly hefty view function in Django. There are too many variables floating around and it's a huge function. Ideally, I want to modularize the view into logical functions. ...
4
votes
3answers
2k views

XCode find caller functions

how do i find in XCode all caller functions of a specific function? Thanks!x
4
votes
1answer
2k views

Objective C find caller of method

Is there a way to determine the line of code a certain method was called from? I
3
votes
4answers
289 views

Is there a way to get the name of the caller function within the callee? [closed]

Possible Duplicate: Javascript how do you find the caller function? Hi, I'm experimenting with javascript/jQuery a bit this morning and was trying to capture the caller name of the ...
3
votes
1answer
676 views

Caller ID on Android - How to Suppress/Delay Default incoming call screen?

We are developing Caller ID application and till now we are able to replace default incoming call screen with our own layout/caller ID screen following ...
3
votes
1answer
228 views

Identify Calling Application in Android NDK

I have a native android library (.so) I am bundling with some application. In the native code I want to verify the signer/package name of the calling application. The reason is, currently anyone can ...
3
votes
4answers
338 views

How can I read Caller ID information in a Cocoa app?

Specifically, I have the Apple USB modem that says it supports Caller ID and I want my app to be able to know when a call comes in and whose calling. In the future I may add dialer capabilities, ...
2
votes
4answers
106 views

Tool to list callers of a function in C?

Background: In a particular project there are about couple of thousand functions in more than hundred files. The functions are divided to reside in two banks of code memory - fast_mem and slow_mem. ...
2
votes
4answers
1k views

android Outbound caller id - on/off

I wan to hide/show my caller id from my activity programmatically. I tried to find it in the android documentation but without the luck. Maybe you have any ideas? Thanks, marqs
2
votes
1answer
572 views

getting the “this” that a function's caller was called with in JavaScript

Is it possible to get the this that a function's caller was called with in JavaScript without passing this to the arguments in a way which supports IE as well as Firefox/Chrome et al? For example: ...
2
votes
2answers
812 views

Callee save with the caller passing the used registers?

In compiler design, why instead of having a caller or callee register saving arrangement, couldn't the caller pass its list of used registers (that it would push in case of a caller saving ...
1
vote
1answer
63 views

how to detect caller instance in SoapUI groovy script?

A SoapUI project can run random script upon load. Load Script is invoked with log and project variables. In my shared lib I have method - addAsserts() that traverses the whole project and adds schema ...
1
vote
1answer
68 views

Log caller application stack trace together with each sql query

I have run into problem with hunting the roots of some sql queries in my project. To troubleshoot it i wanted to log application caller stack together with each query fired. I had googled no out of ...
1
vote
1answer
44 views

Is it possible to retrieve the object instance performing a method call with AspectJ?

Let's imagine the following aspect: aspect FaultHandler { pointcut services(Server s): target(s) && call(public * *(..)); before(Server s): services(s) { // How to retrieve the ...
1
vote
0answers
76 views

Setting up a trap-line for caller ID unmasking [closed]

i'm in a position in which i need to know who is calling me, but the prices for 800 numbers are way too much per month. Is there any way, with any hardware dependencies and any PBX like asterisk or ...
1
vote
3answers
68 views

What do you mean by the caller of a method in Java?

I am confused about what a caller of a method menans in Java. Can someone clarify that with an example?
1
vote
2answers
274 views

Get caller of trigger in SQL Server

Can you advice me how I can retrieve caller ID or Name which executed a trigger? For example I want to know which SP executes a trigger or maybe trigger called by updates from management studio? I ...
1
vote
1answer
80 views

How inform the caller about the failure reason

I have a method which is supposed to do something and the return value is a boolean (success/failure). If the method fails, there are a few reasons causing the failure which the caller (user ...
1
vote
3answers
775 views

Is it possible to declare associative array in the function caller?

I want to declare associative array in the argument of function in - is it possible?? this code it's not working.. <a href="javascript:functionName(new ...
1
vote
3answers
331 views

How to identify the caller of function in Javascript?

I have a function, say f(args), that is being called from many places in my code. When args is undefined f() throws an exception. I would like to identify who called f() with the undefined ...
1
vote
2answers
496 views

PayPal's CallerServices Works on localhost but not server

My PayPal Direct script works perfect on my machine. Both nUnit tests and via a website on localhost. However this first line of code fails on my server and another server. (both full trust) ...
1
vote
2answers
1k views

MIPS function inside a function

I am trying to have the function vbsme call another function called sad... is the following procedure correct about saving the registers and return address?? the caller is supposed to save register ...
1
vote
4answers
1k views

Get the name of caller (or method) that created the WCF Service instance?

as simple as i can: i have a WCF service with a private constructor. if i'm not wrong, constructors must be parameterless in WCF and the parameter i need is the caller's name (or caller's method ...
1
vote
2answers
91 views

Can I find out if a particular attribute was present on the calling function?

Is there a way to find out if the calling function had attributes set on it? [RunOnPlatformB] int blah() { return boo(); } int boo() { // can i find out if RunOnPlatformB was set on my ...
1
vote
1answer
1k views

How can my javascript determine if it was called by WScript or a browser?

I am trying to write a javascript program that can be called from either WScript or a browser (embedded in html). Many javascript functions are independent of the type of caller, but not the ...
0
votes
2answers
58 views

ios sdk, how to get the object that called the method

I have a button that calls a method. I need to access that button inside the method. I don't know how you can access the caller of a method. If anyone knows please help thanks,
0
votes
1answer
76 views

arguments.callee.caller… how to get 'this' reference of a caller object?

I have a configuration object which may container scope property and may not and I pass it to my function. This function creates some callback functions and applies 'scope' property to them. I want to ...
0
votes
1answer
48 views

AS3: Is it possible to access the creator of a class instance?

What I want to do (and I have high doubts about the possibility of this) is access the creator of a class from within the constructor of that class (without parsing a reference to it). As an example, ...
0
votes
2answers
80 views

Return catched exeption inside a class method to the caller

I am making a class for using in a winforms application in VC# My question is how to return a catched exception to the caller out of the class? Take this as an example: Public Class test { ...
0
votes
1answer
101 views

javascript caller onproperty change

I have a form element who's disabled property is being changed somewhere and I cannot seem to find where it is by looking through the code and disabling code which makes changes to the disabled ...
0
votes
1answer
251 views

js callee.caller as object instead of function

I have an OOP project in JS and I want to find the owner object of a the caller.callee Example: myObj.someFunc is called by yourObj.someFunc I want to get a reference to yourObj from within ...
0
votes
5answers
122 views

Who is calling my javascript method?

I'm trying to understand what is the "this" referencing inside my method, the method is declared like: (corrected as the answers asked for, but still not working) Myclass = function() { ...
0
votes
2answers
398 views

How to get my Caller Id name in code?

I'm trying to retrieve my Caller Id name associated with my number on my phone to use it in a field in my app. I'm having trouble finding it in the SDK docs. I can get my number from the ...
0
votes
2answers
142 views

PHP: How to set a variable in the caller scope, like the extract() function

I know that directly setting a variable in the scope of caller is probably not a good idea. However, the PHP extract() function does exactly that! I would like to write my over version of extract() ...
0
votes
1answer
123 views

Get controller method caller (3rd party webservice)

Is it possible to retrieve the URL of a 3rd party webservice calling my controller method? Things like Request.Current.Url refer to my own URL (/someController/someAction/). The 3rd party webservice ...
0
votes
4answers
505 views

Get vargs' class type if varg is set to null in Java

How can you get the data type of a variable argument in Java if the varg is set to null? I use the getClass to retrieve the type. Is there any other way? public void method(String name, Object ... ...
0
votes
2answers
78 views

Free Plug-in to show caller-functions in vb.net?

very often i see code written from others, and when browsing over a function i want to see where this function is called from. Even when i debug my own code, i'd find it a useful feature:P In c++ ...
-1
votes
2answers
44 views

accessing the caller data type in a member function (C++)

I want to do something like this code: myType a; a->foo(); void foo() { cout << a->bar(); } void bar() { cout << a->bar2(); } void bar2() { cout << a->bar3(); ...
-3
votes
4answers
596 views

Caller id faker [closed]

I want to develop an android application to fake my mobile number to outgoing call. How to do this in android? I havent seen any api/control available to do this? Does android allow this? Is it legal ...