OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:scripting_context
(Results
1 - 8
of
8
) sorted by null
/external/linux-tools-perf/scripts/perl/Perf-Trace-Util/
Context.xs
33
struct
scripting_context
* context
37
struct
scripting_context
* context
41
struct
scripting_context
* context
Context.c
55
struct
scripting_context
* context = INT2PTR(struct
scripting_context
*,SvIV(ST(0)));
78
struct
scripting_context
* context = INT2PTR(struct
scripting_context
*,SvIV(ST(0)));
101
struct
scripting_context
* context = INT2PTR(struct
scripting_context
*,SvIV(ST(0)));
/external/linux-tools-perf/scripts/python/Perf-Trace-Util/
Context.c
30
static struct
scripting_context
*
scripting_context
;
local
37
scripting_context
= PyCObject_AsVoidPtr(context);
38
retval = common_pc(
scripting_context
);
46
static struct
scripting_context
*
scripting_context
;
local
53
scripting_context
= PyCObject_AsVoidPtr(context);
54
retval = common_flags(
scripting_context
);
62
static struct
scripting_context
*
scripting_context
;
local
[
all
...]
/external/linux-tools-perf/util/
trace-event-scripting.c
32
struct
scripting_context
*
scripting_context
;
variable in typeref:struct:scripting_context
91
scripting_context
= malloc(sizeof(struct
scripting_context
));
152
scripting_context
= malloc(sizeof(struct
scripting_context
));
trace-event.h
298
struct
scripting_context
{
struct
302
int common_pc(struct
scripting_context
*context);
303
int common_flags(struct
scripting_context
*context);
304
int common_lock_depth(struct
scripting_context
*context);
trace-event-parse.c
[
all
...]
/external/linux-tools-perf/util/scripting-engines/
trace-event-perl.c
58
extern struct
scripting_context
*
scripting_context
;
281
scripting_context
->event_data = data;
288
XPUSHs(sv_2mortal(newSViv(PTR2IV(
scripting_context
))));
322
XPUSHs(sv_2mortal(newSViv(PTR2IV(
scripting_context
))));
trace-event-python.c
44
extern struct
scripting_context
*
scripting_context
;
252
scripting_context
->event_data = data;
254
context = PyCObject_FromVoidPtr(
scripting_context
, NULL);
Completed in 150 milliseconds