Lines Matching full:details
34 this string details;
41 this->details = "";
61 /* details = "head" or "tail" */
62 this->details = (int)arg3 == 0 ? "tail" : "head";
68 /* details = "<curprio> -> <arg2>" */
69 this->details = strjoin(lltostr(this->curprio),
76 /* details = "CPU<arg0> queue <arg1>" */
77 this->details = strjoin(strjoin("CPU", lltostr((int)arg0)),
84 /* details += " pid <pid> -- <proc args of pid>" */
85 this->details = strjoin(this->details, this->details == "" ? "" : " ");
86 this->details = strjoin(this->details, strjoin(
94 ############################################################ EVENT DETAILS
99 * Print scheduling details
101 printf("%s %s", probename, this->details);