Home | History | Annotate | Download | only in strace

Lines Matching defs:info

38 	struct loop_info info;
41 if (umove_or_printaddr(tcp, addr, &info))
44 tprintf("{number=%d", info.lo_number);
48 (unsigned long) info.lo_device,
49 info.lo_inode,
50 (unsigned long) info.lo_rdevice);
53 tprintf(", offset=%#x", info.lo_offset);
55 if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) {
57 printxval(loop_crypt_type_options, info.lo_encrypt_type,
59 tprintf(", encrypt_key_size=%d", info.lo_encrypt_key_size);
63 printflags(loop_flags_options, info.lo_flags, "LO_FLAGS_???");
66 print_quoted_string(info.lo_name, LO_NAME_SIZE,
69 if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) {
71 print_quoted_string((void *) info.lo_encrypt_key,
78 info.lo_init[0], info.lo_init[1],
79 info.reserved[0], info.reserved[1],
80 info.reserved[2], info.reserved[3]);