Home
last modified time | relevance | path

Searched refs:fl (Results 1 – 4 of 4) sorted by relevance

/developtools/profiler/host/smartperf/trace_streamer/src/protos/types/plugins/ftrace_data/
Dfilelock.proto23 uint64 fl = 1; field
36 uint64 fl = 1; field
49 uint64 fl = 1; field
74 uint64 fl = 1; field
87 uint64 fl = 1; field
/developtools/profiler/protos/types/plugins/ftrace_data/default/
Dfilelock.proto23 uint64 fl = 1; field
36 uint64 fl = 1; field
49 uint64 fl = 1; field
74 uint64 fl = 1; field
87 uint64 fl = 1; field
/developtools/profiler/device/plugins/ftrace_plugin/tools/device_kernel_version/default/event_formatters/
Dftrace_filelock_event_formatter.cpp34 …msg.fl(), ((unsigned int)((msg.s_dev()) >> 20)), ((unsigned int)((msg.s_dev()) & ((1U << 20) - 1))… in __anondcb90c7f0302()
56 …msg.fl(), ((unsigned int)((msg.s_dev()) >> 20)), ((unsigned int)((msg.s_dev()) & ((1U << 20) - 1))… in __anondcb90c7f0502()
79 …msg.fl(), ((unsigned int)((msg.s_dev()) >> 20)), ((unsigned int)((msg.s_dev()) & ((1U << 20) - 1))… in __anondcb90c7f0702()
123 …msg.fl(), ((unsigned int)((msg.s_dev()) >> 20)), ((unsigned int)((msg.s_dev()) & ((1U << 20) - 1))… in __anondcb90c7f0b02()
146 …msg.fl(), ((unsigned int)((msg.s_dev()) >> 20)), ((unsigned int)((msg.s_dev()) & ((1U << 20) - 1))… in __anondcb90c7f0d02()
/developtools/hdc/src/common/
Dbase.cpp807 struct flock fl; in ProgramMutex() local
808 fl.l_type = F_WRLCK; in ProgramMutex()
809 fl.l_start = 0; in ProgramMutex()
810 fl.l_whence = SEEK_SET; in ProgramMutex()
811 fl.l_len = 0; in ProgramMutex()
812 int retChild = fcntl(fd, F_SETLK, &fl); in ProgramMutex()