Lines Matching refs:sep

34 	bool is_set, char *sep, const char *set_name, const char *unset_name)
37 seq_putc(m, *sep);
39 *sep = '|';
41 seq_putc(m, *sep);
43 *sep = '|';
48 bool is_set, char *sep, const char *set_name)
50 __seq_print_rq_state_bit(m, is_set, sep, set_name, NULL);
57 char sep = ' ';
63 seq_print_rq_state_bit(m, s & RQ_IN_ACT_LOG, &sep, "in-AL");
64 seq_print_rq_state_bit(m, s & RQ_POSTPONED, &sep, "postponed");
65 seq_print_rq_state_bit(m, s & RQ_COMPLETION_SUSP, &sep, "suspended");
66 sep = ' ';
67 seq_print_rq_state_bit(m, s & RQ_LOCAL_PENDING, &sep, "pending");
68 seq_print_rq_state_bit(m, s & RQ_LOCAL_COMPLETED, &sep, "completed");
69 seq_print_rq_state_bit(m, s & RQ_LOCAL_ABORTED, &sep, "aborted");
70 seq_print_rq_state_bit(m, s & RQ_LOCAL_OK, &sep, "ok");
71 if (sep == ' ')
76 sep = ' ';
77 seq_print_rq_state_bit(m, s & RQ_NET_PENDING, &sep, "pending");
78 seq_print_rq_state_bit(m, s & RQ_NET_QUEUED, &sep, "queued");
79 seq_print_rq_state_bit(m, s & RQ_NET_SENT, &sep, "sent");
80 seq_print_rq_state_bit(m, s & RQ_NET_DONE, &sep, "done");
81 seq_print_rq_state_bit(m, s & RQ_NET_SIS, &sep, "sis");
82 seq_print_rq_state_bit(m, s & RQ_NET_OK, &sep, "ok");
83 if (sep == ' ')
87 sep = ' ';
88 seq_print_rq_state_bit(m, s & RQ_EXP_RECEIVE_ACK, &sep, "B");
89 seq_print_rq_state_bit(m, s & RQ_EXP_WRITE_ACK, &sep, "C");
90 seq_print_rq_state_bit(m, s & RQ_EXP_BARR_ACK, &sep, "barr");
91 if (sep == ' ')
233 char sep = ' ';
235 __seq_print_rq_state_bit(m, f & EE_SUBMITTED, &sep, "submitted", "preparing");
236 __seq_print_rq_state_bit(m, f & EE_APPLICATION, &sep, "application", "internal");
237 seq_print_rq_state_bit(m, f & EE_CALL_AL_COMPLETE_IO, &sep, "in-AL");
238 seq_print_rq_state_bit(m, f & EE_SEND_WRITE_ACK, &sep, "C");
239 seq_print_rq_state_bit(m, f & EE_MAY_SET_IN_SYNC, &sep, "set-in-sync");
240 seq_print_rq_state_bit(m, f & EE_TRIM, &sep, "trim");
241 seq_print_rq_state_bit(m, f & EE_ZEROOUT, &sep, "zero-out");
242 seq_print_rq_state_bit(m, f & EE_WRITE_SAME, &sep, "write-same");