Lines Matching defs:ul
88 unsigned long ul;
128 ul = strtoul(optarg, &ep, 10);
129 if (*optarg == '\0' || *ep != '\0' || ul == 0)
132 server_limit = ul;
148 ul = strtoul(optarg, &ep, 0);
150 || ul > 0xffff || L2CAP_PSM_INVALID(ul))
153 l2cap_psm = (uint16_t)ul;
158 for (ul = 0; ul < __arraycount(services); ul++) {
159 if (strcasecmp(optarg, services[ul].type) == 0)
163 if (ul == __arraycount(services))
167 service_type = services[ul].type;
168 service_name = services[ul].name;
169 service_desc = services[ul].desc;
172 service_class = services[ul].class;