Lines Matching full:this

21 [ "$CUSTOM_TEST" ] || EVENT_TEST='this->devinfo.dev_name != ""'
26 this bufinfo_t bufinfo;
27 this devinfo_t devinfo;
28 this int b_flags;
29 this long bio_length;
30 this string bio_cmd;
31 this string bio_flags;
32 this string device_entry;
33 this string device_if;
34 this string device_type;
35 this string flow;
37 inline string append_bio_flag[int flags, int flag] = this->bio_flags =
38 strjoin(this->bio_flags,
39 strjoin(this->bio_flags == "" ? "" : (flags & flag) == flag ? "|" : "",
49 this->flow = probefunc == "done" ? "<-" : "->";
54 this->bufinfo = xlate <bufinfo_t> ((struct bio *)args[0]);
55 this->bio_cmd = bio_cmd_string[(int)this->bufinfo.b_cmd];
56 this->b_flags = (int)this->bufinfo.b_flags;
57 this->bio_flags = bio_flag_string[this->b_flags & BIO_ERROR];
58 this->bio_flags = strjoin(this->bio_flags, this->bufinfo.b_error ?
59 strjoin(this->bio_flags == "" ?
61 strjoin("#", lltostr(this->bufinfo.b_error))) :
63 append_bio_flag[this->b_flags, BIO_DONE];
64 append_bio_flag[this->b_flags, BIO_ONQUEUE];
65 append_bio_flag[this->b_flags, BIO_ORDERED];
66 append_bio_flag[this->b_flags, BIO_UNMAPPED];
67 append_bio_flag[this->b_flags, BIO_TRANSIENT_MAPPING];
68 append_bio_flag[this->b_flags, BIO_VLIST];
69 this->bio_flags = this->bio_flags == "" ? "-" : this->bio_flags;
70 this->bio_length = (long)this->bufinfo.b_bcount;
75 this->devinfo = xlate <devinfo_t> ((struct devstat *)args[1]);
76 this->device_type = device_type[(int)this->devinfo.dev_type];
77 this->device_if = device_if[(int)this->devinfo.dev_type];
78 this->device_entry = strjoin(this->devinfo.dev_name,
79 lltostr(this->devinfo.dev_minor));
93 this->flow,
94 this->device_type,
95 this->device_if,
96 this->device_entry,
97 this->bio_cmd,
98 this->bio_flags,
99 this->bio_length,
100 this->bio_length == 1 ? "" : "s");