跟踪钩子可以应用于任何函数的入口或出口(当前对于系统调用只支持出口探测点)。
Trace hooks can be applied at the entry or exit of any function (currently exit probe point is supported for system calls only).
如果前缀是E,那么这个地址就是一个函数的入口地址(也就是说,您正在调用这个函数)。
If the prefix is an e, the address is a function entry address (that is, this function was called).
如果您想确保malloc正在被使用,那么您应该通过向函数的入口点添加write调用来进行测试。
If you want to be sure that your malloc is being used, you should test it by adding calls to write at the entry points of your functions.
您有很多选择,但是为了简便起见,可以将这个地址简单地写入一个文件,要注意哪个地址是函数的入口地址,哪个地址是函数的出口地址(参见清单2)。
You have many options, but for the sake of simplicity, just write the addresses to a file, noting which addresses are function entry and which are exit (see Listing 2).
brsl代表“branch relative and setlink”,用来分支到函数的入口点并将链接寄存器(LR)设置为返回地址的下一个指令。
BRSL stands for "branch relative and set link." This branches to the function entry point and sets the link register (LR) to the next instruction for the return address.
更为复杂的曲率将类似于一个函数,它输入一个入口点并返回几个局部最低点中的其中之一。
A more complicated curvature would be like a function that inputs an entry point and returns one of several local lowest points.
在每个入口点中,有一套可以使用的函数。
Within each of the entry points, there are again a set of functions that can be serviced.
这个函数是第二个用例的入口点:向购物车中添加item。
This function is the entry point for the second use case: adding an Item to the shopping cart.
因此,与大多数其他系统不同,Android应用没有一个单一的入口(比如说,没有main函数)。
Therefore, unlike applications on most other systems, Android applications don't have a single entry point (there's no main function, for example).
包括调用所有链接到的动态链接库(DLL)的入口点函数,给出一个值,指出这个进程正在解除那个DLL的链接。
This includes calling the entry-point function of all attached dynamic-link libraries (DLLs) with a value indicating that the process is detaching from the DLL.
因此,开始你可以定义一个main函数,它是程序的入口点。
Therefore, you begin by defining the main function, which is the entry point to the program.
其他未使用的入口点(如果有的话)自动映射到空函数,因此这里不需要使用Adapter类。
The other unused entry points, if any, are automatically mapped to empty functions, thus there is no need to use Adapter classes.
probe元素代表函数中的任意跟踪点,除了入口和退出跟踪点。
The probe element represents any trace point in the function other than an entry or an exit trace point.
清单5中的代码片段是xml2json转换器的入口函数。
The code snippet shown in Listing 5 is the entry function into the xml2json converter.
没有使用 Listener接口,而是使用该类定义的匹配要注意的事件处理程序入口点的特性(例如actionPerformed)设置给Jython函数。
No Listener interface is used; instead attributes that match the interesting event handler entry points defined by the class (for example, actionPerformed) are set to Jython functions.
当探测类型为入口时,可以探测传递给函数的参数,这要求在vue脚本的开头或通过头文件定义函数原型。
Tracing of arguments passed to function is feasible when probe type is entry and requires function prototype to be defined at the beginning of Vue script or through header file.
针对用户编写的代码的入口或出口的用户函数跟踪探针(或uft)。
User Function Tracing probes (or uft) for entry of exit of user written code.
清单5给出了一个Aspect j源文件的例子,它用来对方法的入口和出口函数记录日志。
Listing 5 shows an AspectJ source file used to enable logging on method entries and exits.
如果探查类型是入口,就可以探查传递给函数的参数,这要求在vue脚本的开头或通过头文件定义函数的原型。
Tracing of arguments passed to the function is feasible when the probe type is entry and requires that the function prototype be defined at the beginning of the Vue script or through a header file.
根据现场旋风除尘器的运行情况,用双目标函数加权的方法,确定了除尘器入口速度,并用PHOENICS程序对流场进行了计算和分析。
According to the operation condition, the entrance velocity of precipitator is confirmed by double object function weighting, and the fluid field is calculated by PHOENICS program.
这个编译指令抑制入口代码的产生,有益于内嵌汇编函数。
This pragma suppresses the generation of entry code and is useful for inline assembler functions.
接着用此返流函数计算了入口和出口流速分布改变所引起的捕集效率的改变。
Then the reentrainment function is applied to determine the collection efficiency response to the variation in gas velocity distributionsacross the precipitator entrance and exit.
COM确实也是这样,且要求所有在Dll里实现的对象(也称作是进程内服务)来通过DllGetClassObject函数来导出入口点。
COM does exactly this, and requires all objects implemented in DLLs (also called in-process servers) to export the entry point through the DllGetClassObject function.
创建调用跟踪报告,其中列出您的应用程序函数每个入口点和出口点的计时信息,以及您的函数对其他函数的每次调用的计时信息。
Create a call trace report that lists timing information for each entry and exit point to your application's functions and each call to other functions by your function.
或许是你的一个全局变量的初始化代码里有些问题,或者是一个在你的入口点函数中,申明的变量,导致程序崩溃。
There may be something in the deinitialization code for one of your global variables, or one of the variables declared in your entrypoint function, that is causing the crash.
在加载更多的程序集并转化IL为机器指令时,CLR的加载器有一点额外的工作要完成,那就是调整函数入口地址。
The CLR loader has a little more work to do to load many assemblies and turn IL into machine instructions, particularly resolving function addresses.
有一个不好的地方就是要么是给错误的函数(或函数入口标签之前)结束之后。
A good place is either is after end of the function (or before the function's entry label) that gives the error.
由于加载入口点已编译为MSIL的DLL时存在一些潜在问题,因此强烈建议不要将DLL入口点函数编译为MSIL。
Because of potential problems with loading a DLL whose entry point has been compiled to MSIL, you are strongly discouraged from compiling a DLL entry point function to MSIL.
记住纯抽象基类只是提供了函数入口点的表,入口点是由编译器分配的。
Remember that pure abstract base classes provide little more than a table of function entry points, and the entry points are allocated by the compiler of the object.
记住纯抽象基类只是提供了函数入口点的表,入口点是由编译器分配的。
Remember that pure abstract base classes provide little more than a table of function entry points, and the entry points are allocated by the compiler of the object.
应用推荐