Lines Matching defs:count
38 /* Null agent count since agent discovery is not supported */
123 unsigned int count = 0U;
126 while (protocol_list[count] != 0U) {
127 count++;
131 return count;
141 unsigned int count = 0U;
151 count = count_protocols_in_list(list);
153 if (count > a2p->skip) {
154 count = MIN((uint32_t)(count - a2p->skip),
157 count = 0U;
160 p2a.num_protocols = count;
163 memcpy(msg->out + sizeof(p2a), list + a2p->skip, count);
164 msg->out_size_out = sizeof(p2a) + round_up(count, sizeof(uint32_t));