Lines Matching refs:fl
43 print_struct_flock64(const struct_kernel_flock64 *fl, const int getlk) in print_struct_flock64() argument
46 printxval(lockfcmds, (unsigned short) fl->l_type, "F_???"); in print_struct_flock64()
48 printxval(whence_codes, (unsigned short) fl->l_whence, "SEEK_???"); in print_struct_flock64()
50 (int64_t) fl->l_start, (int64_t) fl->l_len); in print_struct_flock64()
52 tprintf(", l_pid=%lu", (unsigned long) fl->l_pid); in print_struct_flock64()
59 struct_kernel_flock64 fl; in printflock64() local
61 if (fetch_struct_flock64(tcp, addr, &fl)) in printflock64()
62 print_struct_flock64(&fl, getlk); in printflock64()
68 struct_kernel_flock64 fl; in printflock() local
70 if (fetch_struct_flock(tcp, addr, &fl)) in printflock()
71 print_struct_flock64(&fl, getlk); in printflock()