OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pt_info
(Results
1 - 5
of
5
) sorted by null
/system/core/libsync/
sync_test.c
53
struct sync_pt_info *
pt_info
= NULL;
local
56
while ((
pt_info
= sync_pt_info(info,
pt_info
))) {
57
int ts_sec =
pt_info
->timestamp_ns / 1000000000LL;
58
int ts_usec = (
pt_info
->timestamp_ns % 1000000000LL) / 1000LL;
59
printf(" pt %s %s %d %d.%06d",
pt_info
->obj_name,
60
pt_info
->driver_name,
pt_info
->status,
62
if (!strcmp(
pt_info
->driver_name, "sw_sync"))
63
printf(" val=%d\n", *(uint32_t *)
pt_info
->driver_data)
[
all
...]
sync.c
75
itr = (struct sync_pt_info *) info->
pt_info
;
/bionic/libc/kernel/common/linux/
sync.h
44
__u8
pt_info
[0];
member in struct:sync_fence_info_data
/system/core/include/sync/
sync.h
32
uint8_t
pt_info
[0];
member in struct:sync_fence_info_data
/external/kernel-headers/original/linux/
sync.h
374
* including
pt_info
.
377
* @
pt_info
: a sync_pt_info struct for every sync_pt in the fence
384
__u8
pt_info
[0];
member in struct:sync_fence_info_data
408
* Takes a struct sync_fence_info_data with extra space allocated for
pt_info
.
411
*
pt_info
.
413
*
pt_info
is a buffer containing sync_pt_infos for every sync_pt in the fence.
Completed in 984 milliseconds