Lines Matching refs:str

64 	const char *str;  in idop_enum()  local
67 case POP_DIFF: str = "POP_DIFF"; break; in idop_enum()
68 case POP_AND: str = "POP_AND"; break; in idop_enum()
69 case POP_OR: str = "POP_OR"; break; in idop_enum()
70 case POP_XOR: str = "POP_XOR"; break; in idop_enum()
73 str = (const char *)pri->code_buf; in idop_enum()
77 return (str); in idop_enum()
83 const char *str; in idtype_enum() local
86 case P_PID: str = "P_PID"; break; in idtype_enum()
87 case P_PPID: str = "P_PPID"; break; in idtype_enum()
88 case P_PGID: str = "P_PGID"; break; in idtype_enum()
89 case P_SID: str = "P_SID"; break; in idtype_enum()
90 case P_CID: str = "P_CID"; break; in idtype_enum()
91 case P_UID: str = "P_UID"; break; in idtype_enum()
92 case P_GID: str = "P_GID"; break; in idtype_enum()
93 case P_ALL: str = "P_ALL"; break; in idtype_enum()
94 case P_LWPID: str = "P_LWPID"; break; in idtype_enum()
95 case P_TASKID: str = "P_TASKID"; break; in idtype_enum()
96 case P_PROJID: str = "P_PROJID"; break; in idtype_enum()
97 case P_ZONEID: str = "P_ZONEID"; break; in idtype_enum()
98 case P_CTID: str = "P_CTID"; break; in idtype_enum()
101 str = (const char *)pri->code_buf; in idtype_enum()
105 return (str); in idtype_enum()
111 char *str = pri->code_buf; in woptions() local
119 *str = '\0'; in woptions()
121 (void) strcat(str, "|WEXITED"); in woptions()
123 (void) strcat(str, "|WTRAPPED"); in woptions()
125 (void) strcat(str, "|WSTOPPED"); in woptions()
127 (void) strcat(str, "|WCONTINUED"); in woptions()
129 (void) strcat(str, "|WNOHANG"); in woptions()
131 (void) strcat(str, "|WNOWAIT"); in woptions()
133 return ((const char *)(str+1)); in woptions()