You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
454 B
29 lines
454 B
self int rec;
|
|
self uint64_t st;
|
|
|
|
pid$1:libpEpEngine:encrypt_message:entry
|
|
{
|
|
self->rec = 1;
|
|
self->st = timestamp;
|
|
}
|
|
|
|
pid$1:libpEpEngine:encrypt_message:return
|
|
{
|
|
self->rec = 0;
|
|
printf("%d", timestamp - self->st);
|
|
}
|
|
|
|
pid$1:libgpgme::entry,
|
|
pid$1:libpEpEngine::entry
|
|
/self->rec == 1/
|
|
{
|
|
printf("%d", timestamp - self->st);
|
|
}
|
|
|
|
pid$1:libgpgme::return,
|
|
pid$1:libpEpEngine::return
|
|
/self->rec == 1/
|
|
{
|
|
printf("%d", timestamp - self->st);
|
|
}
|
|
|
|
|